diff --git a/grammar.js b/grammar.js index 2034d450..e9023e1a 100644 --- a/grammar.js +++ b/grammar.js @@ -63,7 +63,6 @@ module.exports = grammar({ $.expression, $.primary_expression, $.pattern, - $.parameter, ], externals: $ => [ @@ -123,6 +122,7 @@ module.exports = grammar({ $.import_from_statement, $.print_statement, $.assert_statement, + $.assignment, $.expression_statement, $.return_statement, $.delete_statement, @@ -215,7 +215,6 @@ module.exports = grammar({ expression_statement: $ => choice( $.expression, seq(commaSep1($.expression), optional(',')), - $.assignment, $.augmented_assignment, $.yield, ), @@ -409,8 +408,14 @@ module.exports = grammar({ optional('async'), 'def', field('name', $.identifier), + $.function_definition_scope, + ), + + function_definition_scope: $ => seq( field('type_parameters', optional($.type_parameter)), - field('parameters', $.parameters), + '(', + field('parameters', optional($.parameters)), + ')', optional( seq( '->', @@ -422,12 +427,36 @@ module.exports = grammar({ ), parameters: $ => seq( - '(', - optional($._parameters), - ')', + commaSep1(choice( + $.parameter, + alias($._lambda_parameter, $.parameter), + $.keyword_separator, + $.positional_separator, + )), + optional(','), ), - lambda_parameters: $ => $._parameters, + parameter: $ => prec(PREC.typed_parameter, seq( + optional(choice('*', '**')), + field('name', $.identifier), + optional(seq( + ":", + field('type', $.expression), + )), + optional(seq( + "=", + field('value', $.expression), + )), + )), + + _lambda_parameter: $ => seq( + optional(choice('*', '**')), + field('name', $.identifier), + optional(seq( + "=", + field('value', $.expression), + )), + ), list_splat: $ => seq( '*', @@ -470,6 +499,9 @@ module.exports = grammar({ class_definition: $ => seq( 'class', field('name', $.identifier), + $.class_definition_scope, + ), + class_definition_scope: $ => seq( field('type_parameters', optional($.type_parameter)), field('superclasses', optional($.argument_list)), ':', @@ -545,7 +577,13 @@ module.exports = grammar({ ), )), - dotted_name: $ => prec(1, sep1($.identifier, '.')), + dotted_name: $ => prec(1, seq( + $.identifier, + repeat(seq( + '.', + alias($.identifier, $.member_identifier), + )), + )), // Match cases @@ -573,7 +611,7 @@ module.exports = grammar({ '_', )), - _as_pattern: $ => seq($.case_pattern, 'as', $.identifier), + _as_pattern: $ => seq($.case_pattern, 'as', field('alias', $.identifier)), union_pattern: $ => prec.right(seq($._simple_pattern, repeat1(prec.left(seq('|', $._simple_pattern))))), @@ -633,28 +671,11 @@ module.exports = grammar({ // Patterns - _parameters: $ => seq( - commaSep1($.parameter), - optional(','), - ), - _patterns: $ => seq( commaSep1($.pattern), optional(','), ), - parameter: $ => choice( - $.identifier, - $.typed_parameter, - $.default_parameter, - $.typed_default_parameter, - $.list_splat_pattern, - $.tuple_pattern, - $.keyword_separator, - $.positional_separator, - $.dictionary_splat_pattern, - ), - pattern: $ => choice( $.identifier, $.keyword_identifier, @@ -677,20 +698,6 @@ module.exports = grammar({ ']', ), - default_parameter: $ => seq( - field('name', choice($.identifier, $.tuple_pattern)), - '=', - field('value', $.expression), - ), - - typed_default_parameter: $ => prec(PREC.typed_parameter, seq( - field('name', $.identifier), - ':', - field('type', $.type), - '=', - field('value', $.expression), - )), - list_splat_pattern: $ => seq( '*', choice($.identifier, $.keyword_identifier, $.subscript, $.attribute), @@ -832,14 +839,14 @@ module.exports = grammar({ lambda: $ => prec(PREC.lambda, seq( 'lambda', - field('parameters', optional($.lambda_parameters)), + field('parameters', optional($.parameters)), ':', field('body', $.expression), )), lambda_within_for_in_clause: $ => seq( 'lambda', - field('parameters', optional($.lambda_parameters)), + field('parameters', optional($.parameters)), ':', field('body', $._expression_within_for_in_clause), ), @@ -904,7 +911,7 @@ module.exports = grammar({ attribute: $ => prec(PREC.call, seq( field('object', $.primary_expression), '.', - field('attribute', $.identifier), + field('attribute', alias($.identifier, $.member_identifier)), )), subscript: $ => prec(PREC.call, seq( @@ -932,16 +939,6 @@ module.exports = grammar({ )), )), - typed_parameter: $ => prec(PREC.typed_parameter, seq( - choice( - $.identifier, - $.list_splat_pattern, - $.dictionary_splat_pattern, - ), - ':', - field('type', $.type), - )), - type: $ => choice( prec(1, $.expression), $.splat_type, @@ -960,7 +957,7 @@ module.exports = grammar({ )), union_type: $ => prec.left(seq($.type, '|', $.type)), constrained_type: $ => prec.right(seq($.type, ':', $.type)), - member_type: $ => seq($.type, '.', $.identifier), + member_type: $ => seq($.type, '.', alias($.identifier, $.member_identifier)), keyword_argument: $ => seq( field('name', choice($.identifier, $.keyword_identifier)), diff --git a/queries/locals.scm b/queries/locals.scm new file mode 100644 index 00000000..a58779b6 --- /dev/null +++ b/queries/locals.scm @@ -0,0 +1,25 @@ +;; Scopes + +[(module) + (class_definition_scope) + (function_definition_scope) + (lambda)] @local.scope + +;; Definitions + +; TODO: Type parameters, patterns in assignment and match statements + +(import_statement (dotted_name . _ @local.definition)) +(import_from_statement name: (dotted_name . _ @local.definition)) +(aliased_import alias: _ @local.definition) +(class_definition name: _ @local.definition) +(type_alias_statement left: (type . (identifier) @local.definition)) +(function_definition name: _ @local.definition) +(parameter name: _ @local.definition) +(as_pattern alias: _ @local.definition) +(named_expression name: (identifier) @local.definition) +(assignment left: (identifier) @local.definition) + +;; References + +(identifier) @local.reference diff --git a/src/grammar.json b/src/grammar.json index c56c0f17..998e7d4c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -92,6 +92,10 @@ "type": "SYMBOL", "name": "assert_statement" }, + { + "type": "SYMBOL", + "name": "assignment" + }, { "type": "SYMBOL", "name": "expression_statement" @@ -591,10 +595,6 @@ } ] }, - { - "type": "SYMBOL", - "name": "assignment" - }, { "type": "SYMBOL", "name": "augmented_assignment" @@ -1615,6 +1615,15 @@ "name": "identifier" } }, + { + "type": "SYMBOL", + "name": "function_definition_scope" + } + ] + }, + "function_definition_scope": { + "type": "SEQ", + "members": [ { "type": "FIELD", "name": "type_parameters", @@ -1631,14 +1640,30 @@ ] } }, + { + "type": "STRING", + "value": "(" + }, { "type": "FIELD", "name": "parameters", "content": { - "type": "SYMBOL", - "name": "parameters" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameters" + }, + { + "type": "BLANK" + } + ] } }, + { + "type": "STRING", + "value": ")" + }, { "type": "CHOICE", "members": [ @@ -1682,15 +1707,194 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lambda_parameter" + }, + "named": true, + "value": "parameter" + }, + { + "type": "SYMBOL", + "name": "keyword_separator" + }, + { + "type": "SYMBOL", + "name": "positional_separator" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_lambda_parameter" + }, + "named": true, + "value": "parameter" + }, + { + "type": "SYMBOL", + "name": "keyword_separator" + }, + { + "type": "SYMBOL", + "name": "positional_separator" + } + ] + } + ] + } + } + ] }, { "type": "CHOICE", "members": [ { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "parameter": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "**" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { "type": "SYMBOL", - "name": "_parameters" + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_lambda_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "**" + } + ] }, { "type": "BLANK" @@ -1698,15 +1902,40 @@ ] }, { - "type": "STRING", - "value": ")" + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, - "lambda_parameters": { - "type": "SYMBOL", - "name": "_parameters" - }, "list_splat": { "type": "SEQ", "members": [ @@ -1917,6 +2146,15 @@ "name": "identifier" } }, + { + "type": "SYMBOL", + "name": "class_definition_scope" + } + ] + }, + "class_definition_scope": { + "type": "SEQ", + "members": [ { "type": "FIELD", "name": "type_parameters", @@ -2331,8 +2569,13 @@ "value": "." }, { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "member_identifier" } ] } @@ -2483,8 +2726,12 @@ "value": "as" }, { - "type": "SYMBOL", - "name": "identifier" + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "identifier" + } } ] }, @@ -2932,48 +3179,6 @@ ] } }, - "_parameters": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "parameter" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, "_patterns": { "type": "SEQ", "members": [ @@ -3016,47 +3221,6 @@ } ] }, - "parameter": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "typed_parameter" - }, - { - "type": "SYMBOL", - "name": "default_parameter" - }, - { - "type": "SYMBOL", - "name": "typed_default_parameter" - }, - { - "type": "SYMBOL", - "name": "list_splat_pattern" - }, - { - "type": "SYMBOL", - "name": "tuple_pattern" - }, - { - "type": "SYMBOL", - "name": "keyword_separator" - }, - { - "type": "SYMBOL", - "name": "positional_separator" - }, - { - "type": "SYMBOL", - "name": "dictionary_splat_pattern" - } - ] - }, "pattern": { "type": "CHOICE", "members": [ @@ -3140,81 +3304,6 @@ } ] }, - "default_parameter": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "tuple_pattern" - } - ] - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "expression" - } - } - ] - }, - "typed_default_parameter": { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "type" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "expression" - } - } - ] - } - }, "list_splat_pattern": { "type": "SEQ", "members": [ @@ -4170,7 +4259,7 @@ "members": [ { "type": "SYMBOL", - "name": "lambda_parameters" + "name": "parameters" }, { "type": "BLANK" @@ -4208,7 +4297,7 @@ "members": [ { "type": "SYMBOL", - "name": "lambda_parameters" + "name": "parameters" }, { "type": "BLANK" @@ -4551,8 +4640,13 @@ "type": "FIELD", "name": "attribute", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "member_identifier" } } ] @@ -4746,44 +4840,6 @@ ] } }, - "typed_parameter": { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "list_splat_pattern" - }, - { - "type": "SYMBOL", - "name": "dictionary_splat_pattern" - } - ] - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "type" - } - } - ] - } - }, "type": { "type": "CHOICE", "members": [ @@ -4928,8 +4984,13 @@ "value": "." }, { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "member_identifier" } ] }, @@ -6334,7 +6395,7 @@ "_compound_statement", "expression", "primary_expression", - "pattern", - "parameter" - ] -} + "pattern" + ], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 18d43b49..7de35418 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -49,6 +49,10 @@ "type": "assert_statement", "named": true }, + { + "type": "assignment", + "named": true + }, { "type": "break_statement", "named": true @@ -149,48 +153,6 @@ } ] }, - { - "type": "parameter", - "named": true, - "subtypes": [ - { - "type": "default_parameter", - "named": true - }, - { - "type": "dictionary_splat_pattern", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "keyword_separator", - "named": true - }, - { - "type": "list_splat_pattern", - "named": true - }, - { - "type": "positional_separator", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - }, - { - "type": "typed_default_parameter", - "named": true - }, - { - "type": "typed_parameter", - "named": true - } - ] - }, { "type": "pattern", "named": true, @@ -390,17 +352,21 @@ "fields": { "alias": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "as_pattern_target", "named": true + }, + { + "type": "identifier", + "named": true } ] } }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -410,10 +376,6 @@ { "type": "expression", "named": true - }, - { - "type": "identifier", - "named": true } ] } @@ -502,7 +464,7 @@ "required": true, "types": [ { - "type": "identifier", + "type": "member_identifier", "named": true } ] @@ -965,22 +927,38 @@ "type": "class_definition", "named": true, "fields": { - "body": { + "name": { "multiple": false, "required": true, "types": [ { - "type": "block", + "type": "identifier", "named": true } ] - }, - "name": { + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "class_definition_scope", + "named": true + } + ] + } + }, + { + "type": "class_definition_scope", + "named": true, + "fields": { + "body": { "multiple": false, "required": true, "types": [ { - "type": "identifier", + "type": "block", "named": true } ] @@ -1206,36 +1184,6 @@ ] } }, - { - "type": "default_parameter", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - } - }, { "type": "delete_statement", "named": true, @@ -1420,38 +1368,19 @@ } }, { - "type": "dictionary_splat_pattern", + "type": "dotted_name", "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ - { - "type": "attribute", - "named": true - }, { "type": "identifier", "named": true }, { - "type": "subscript", - "named": true - } - ] - } - }, - { - "type": "dotted_name", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", + "type": "member_identifier", "named": true } ] @@ -1607,10 +1536,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "assignment", - "named": true - }, { "type": "augmented_assignment", "named": true @@ -1796,29 +1721,45 @@ "type": "function_definition", "named": true, "fields": { - "body": { + "name": { "multiple": false, "required": true, "types": [ { - "type": "block", + "type": "identifier", "named": true } ] - }, - "name": { + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "function_definition_scope", + "named": true + } + ] + } + }, + { + "type": "function_definition_scope", + "named": true, + "fields": { + "body": { "multiple": false, "required": true, "types": [ { - "type": "identifier", + "type": "block", "named": true } ] }, "parameters": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "parameters", @@ -2234,28 +2175,13 @@ "required": false, "types": [ { - "type": "lambda_parameters", + "type": "parameters", "named": true } ] } } }, - { - "type": "lambda_parameters", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "parameter", - "named": true - } - ] - } - }, { "type": "list", "named": true, @@ -2417,7 +2343,7 @@ "required": true, "types": [ { - "type": "identifier", + "type": "member_identifier", "named": true }, { @@ -2535,17 +2461,61 @@ } } }, + { + "type": "parameter", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, { "type": "parameters", "named": true, "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ + { + "type": "keyword_separator", + "named": true + }, { "type": "parameter", "named": true + }, + { + "type": "positional_separator", + "named": true } ] } @@ -3053,76 +3023,6 @@ ] } }, - { - "type": "typed_default_parameter", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - } - }, - { - "type": "typed_parameter", - "named": true, - "fields": { - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "dictionary_splat_pattern", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "list_splat_pattern", - "named": true - } - ] - } - }, { "type": "unary_operator", "named": true, @@ -3574,7 +3474,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "continue", @@ -3674,12 +3575,17 @@ }, { "type": "line_continuation", - "named": true + "named": true, + "extra": true }, { "type": "match", "named": false }, + { + "type": "member_identifier", + "named": true + }, { "type": "none", "named": true diff --git a/src/parser.c b/src/parser.c index 3bdb5bb6..6ac123b0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,19 +1,23 @@ +/* Automatically @generated by tree-sitter v0.25.6 */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 2809 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 2790 #define LARGE_STATE_COUNT 190 -#define SYMBOL_COUNT 273 -#define ALIAS_COUNT 2 +#define SYMBOL_COUNT 270 +#define ALIAS_COUNT 3 #define TOKEN_COUNT 108 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 32 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 142 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define MAX_RESERVED_WORD_SET_SIZE 0 +#define PRODUCTION_ID_COUNT 150 +#define SUPERTYPE_COUNT 3 enum ts_symbol_identifiers { sym_identifier = 1, @@ -55,11 +59,11 @@ enum ts_symbol_identifiers { anon_sym_def = 37, anon_sym_DASH_GT = 38, anon_sym_STAR_STAR = 39, - anon_sym_global = 40, - anon_sym_nonlocal = 41, - anon_sym_exec = 42, - anon_sym_type = 43, - anon_sym_EQ = 44, + anon_sym_EQ = 40, + anon_sym_global = 41, + anon_sym_nonlocal = 42, + anon_sym_exec = 43, + anon_sym_type = 44, anon_sym_class = 45, anon_sym_LBRACK = 46, anon_sym_RBRACK = 47, @@ -162,134 +166,132 @@ enum ts_symbol_identifiers { sym_with_clause = 144, sym_with_item = 145, sym_function_definition = 146, - sym_parameters = 147, - sym_lambda_parameters = 148, - sym_list_splat = 149, - sym_dictionary_splat = 150, - sym_global_statement = 151, - sym_nonlocal_statement = 152, - sym_exec_statement = 153, - sym_type_alias_statement = 154, - sym_class_definition = 155, - sym_type_parameter = 156, - sym_parenthesized_list_splat = 157, - sym_argument_list = 158, - sym_decorated_definition = 159, - sym_decorator = 160, - sym_block = 161, - sym_expression_list = 162, - sym_dotted_name = 163, - sym_case_pattern = 164, - sym__simple_pattern = 165, - sym__as_pattern = 166, - sym_union_pattern = 167, - sym__list_pattern = 168, - sym__tuple_pattern = 169, - sym_dict_pattern = 170, - sym__key_value_pattern = 171, - sym_keyword_pattern = 172, - sym_splat_pattern = 173, - sym_class_pattern = 174, - sym_complex_pattern = 175, - sym__parameters = 176, - sym__patterns = 177, - sym_parameter = 178, - sym_pattern = 179, - sym_tuple_pattern = 180, - sym_list_pattern = 181, - sym_default_parameter = 182, - sym_typed_default_parameter = 183, - sym_list_splat_pattern = 184, - sym_dictionary_splat_pattern = 185, - sym_as_pattern = 186, - sym__expression_within_for_in_clause = 187, - sym_expression = 188, - sym_primary_expression = 189, - sym_not_operator = 190, - sym_boolean_operator = 191, - sym_binary_operator = 192, - sym_unary_operator = 193, - sym__not_in = 194, - sym__is_not = 195, - sym_comparison_operator = 196, - sym_lambda = 197, - sym_lambda_within_for_in_clause = 198, - sym_assignment = 199, - sym_augmented_assignment = 200, - sym_pattern_list = 201, - sym__right_hand_side = 202, - sym_yield = 203, - sym_attribute = 204, - sym_subscript = 205, - sym_slice = 206, - sym_call = 207, - sym_typed_parameter = 208, - sym_type = 209, - sym_splat_type = 210, - sym_generic_type = 211, - sym_union_type = 212, - sym_constrained_type = 213, - sym_member_type = 214, - sym_keyword_argument = 215, - sym_list = 216, - sym_set = 217, - sym_tuple = 218, - sym_dictionary = 219, - sym_pair = 220, - sym_list_comprehension = 221, - sym_dictionary_comprehension = 222, - sym_set_comprehension = 223, - sym_generator_expression = 224, - sym__comprehension_clauses = 225, - sym_parenthesized_expression = 226, - sym__collection_elements = 227, - sym_for_in_clause = 228, - sym_if_clause = 229, - sym_conditional_expression = 230, - sym_concatenated_string = 231, - sym_string = 232, - sym_string_content = 233, - sym_interpolation = 234, - sym__f_expression = 235, - sym__not_escape_sequence = 236, - sym_format_specifier = 237, - sym_await = 238, - sym_positional_separator = 239, - sym_keyword_separator = 240, - aux_sym_module_repeat1 = 241, - aux_sym__simple_statements_repeat1 = 242, - aux_sym_import_prefix_repeat1 = 243, - aux_sym__import_list_repeat1 = 244, - aux_sym_print_statement_repeat1 = 245, - aux_sym_assert_statement_repeat1 = 246, - aux_sym_if_statement_repeat1 = 247, - aux_sym_match_statement_repeat1 = 248, - aux_sym__match_block_repeat1 = 249, - aux_sym_case_clause_repeat1 = 250, - aux_sym_try_statement_repeat1 = 251, - aux_sym_try_statement_repeat2 = 252, - aux_sym_with_clause_repeat1 = 253, - aux_sym_global_statement_repeat1 = 254, - aux_sym_type_parameter_repeat1 = 255, - aux_sym_argument_list_repeat1 = 256, - aux_sym_decorated_definition_repeat1 = 257, - aux_sym_dotted_name_repeat1 = 258, - aux_sym_union_pattern_repeat1 = 259, - aux_sym_dict_pattern_repeat1 = 260, - aux_sym__parameters_repeat1 = 261, - aux_sym__patterns_repeat1 = 262, - aux_sym_comparison_operator_repeat1 = 263, - aux_sym_subscript_repeat1 = 264, - aux_sym_dictionary_repeat1 = 265, - aux_sym__comprehension_clauses_repeat1 = 266, - aux_sym__collection_elements_repeat1 = 267, - aux_sym_for_in_clause_repeat1 = 268, - aux_sym_concatenated_string_repeat1 = 269, - aux_sym_string_repeat1 = 270, - aux_sym_string_content_repeat1 = 271, - aux_sym_format_specifier_repeat1 = 272, - alias_sym_as_pattern_target = 273, - alias_sym_format_expression = 274, + sym_function_definition_scope = 147, + sym_parameters = 148, + sym_parameter = 149, + sym__lambda_parameter = 150, + sym_list_splat = 151, + sym_dictionary_splat = 152, + sym_global_statement = 153, + sym_nonlocal_statement = 154, + sym_exec_statement = 155, + sym_type_alias_statement = 156, + sym_class_definition = 157, + sym_class_definition_scope = 158, + sym_type_parameter = 159, + sym_parenthesized_list_splat = 160, + sym_argument_list = 161, + sym_decorated_definition = 162, + sym_decorator = 163, + sym_block = 164, + sym_expression_list = 165, + sym_dotted_name = 166, + sym_case_pattern = 167, + sym__simple_pattern = 168, + sym__as_pattern = 169, + sym_union_pattern = 170, + sym__list_pattern = 171, + sym__tuple_pattern = 172, + sym_dict_pattern = 173, + sym__key_value_pattern = 174, + sym_keyword_pattern = 175, + sym_splat_pattern = 176, + sym_class_pattern = 177, + sym_complex_pattern = 178, + sym__patterns = 179, + sym_pattern = 180, + sym_tuple_pattern = 181, + sym_list_pattern = 182, + sym_list_splat_pattern = 183, + sym_as_pattern = 184, + sym__expression_within_for_in_clause = 185, + sym_expression = 186, + sym_primary_expression = 187, + sym_not_operator = 188, + sym_boolean_operator = 189, + sym_binary_operator = 190, + sym_unary_operator = 191, + sym__not_in = 192, + sym__is_not = 193, + sym_comparison_operator = 194, + sym_lambda = 195, + sym_lambda_within_for_in_clause = 196, + sym_assignment = 197, + sym_augmented_assignment = 198, + sym_pattern_list = 199, + sym__right_hand_side = 200, + sym_yield = 201, + sym_attribute = 202, + sym_subscript = 203, + sym_slice = 204, + sym_call = 205, + sym_type = 206, + sym_splat_type = 207, + sym_generic_type = 208, + sym_union_type = 209, + sym_constrained_type = 210, + sym_member_type = 211, + sym_keyword_argument = 212, + sym_list = 213, + sym_set = 214, + sym_tuple = 215, + sym_dictionary = 216, + sym_pair = 217, + sym_list_comprehension = 218, + sym_dictionary_comprehension = 219, + sym_set_comprehension = 220, + sym_generator_expression = 221, + sym__comprehension_clauses = 222, + sym_parenthesized_expression = 223, + sym__collection_elements = 224, + sym_for_in_clause = 225, + sym_if_clause = 226, + sym_conditional_expression = 227, + sym_concatenated_string = 228, + sym_string = 229, + sym_string_content = 230, + sym_interpolation = 231, + sym__f_expression = 232, + sym__not_escape_sequence = 233, + sym_format_specifier = 234, + sym_await = 235, + sym_positional_separator = 236, + sym_keyword_separator = 237, + aux_sym_module_repeat1 = 238, + aux_sym__simple_statements_repeat1 = 239, + aux_sym_import_prefix_repeat1 = 240, + aux_sym__import_list_repeat1 = 241, + aux_sym_print_statement_repeat1 = 242, + aux_sym_assert_statement_repeat1 = 243, + aux_sym_if_statement_repeat1 = 244, + aux_sym_match_statement_repeat1 = 245, + aux_sym__match_block_repeat1 = 246, + aux_sym_case_clause_repeat1 = 247, + aux_sym_try_statement_repeat1 = 248, + aux_sym_try_statement_repeat2 = 249, + aux_sym_with_clause_repeat1 = 250, + aux_sym_parameters_repeat1 = 251, + aux_sym_global_statement_repeat1 = 252, + aux_sym_type_parameter_repeat1 = 253, + aux_sym_argument_list_repeat1 = 254, + aux_sym_decorated_definition_repeat1 = 255, + aux_sym_dotted_name_repeat1 = 256, + aux_sym_union_pattern_repeat1 = 257, + aux_sym_dict_pattern_repeat1 = 258, + aux_sym__patterns_repeat1 = 259, + aux_sym_comparison_operator_repeat1 = 260, + aux_sym_subscript_repeat1 = 261, + aux_sym_dictionary_repeat1 = 262, + aux_sym__comprehension_clauses_repeat1 = 263, + aux_sym__collection_elements_repeat1 = 264, + aux_sym_for_in_clause_repeat1 = 265, + aux_sym_concatenated_string_repeat1 = 266, + aux_sym_string_repeat1 = 267, + aux_sym_string_content_repeat1 = 268, + aux_sym_format_specifier_repeat1 = 269, + alias_sym_as_pattern_target = 270, + alias_sym_format_expression = 271, + alias_sym_member_identifier = 272, }; static const char * const ts_symbol_names[] = { @@ -333,11 +335,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_def] = "def", [anon_sym_DASH_GT] = "->", [anon_sym_STAR_STAR] = "**", + [anon_sym_EQ] = "=", [anon_sym_global] = "global", [anon_sym_nonlocal] = "nonlocal", [anon_sym_exec] = "exec", [anon_sym_type] = "type", - [anon_sym_EQ] = "=", [anon_sym_class] = "class", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", @@ -440,8 +442,10 @@ static const char * const ts_symbol_names[] = { [sym_with_clause] = "with_clause", [sym_with_item] = "with_item", [sym_function_definition] = "function_definition", + [sym_function_definition_scope] = "function_definition_scope", [sym_parameters] = "parameters", - [sym_lambda_parameters] = "lambda_parameters", + [sym_parameter] = "parameter", + [sym__lambda_parameter] = "parameter", [sym_list_splat] = "list_splat", [sym_dictionary_splat] = "dictionary_splat", [sym_global_statement] = "global_statement", @@ -449,6 +453,7 @@ static const char * const ts_symbol_names[] = { [sym_exec_statement] = "exec_statement", [sym_type_alias_statement] = "type_alias_statement", [sym_class_definition] = "class_definition", + [sym_class_definition_scope] = "class_definition_scope", [sym_type_parameter] = "type_parameter", [sym_parenthesized_list_splat] = "parenthesized_list_splat", [sym_argument_list] = "argument_list", @@ -469,16 +474,11 @@ static const char * const ts_symbol_names[] = { [sym_splat_pattern] = "splat_pattern", [sym_class_pattern] = "class_pattern", [sym_complex_pattern] = "complex_pattern", - [sym__parameters] = "_parameters", [sym__patterns] = "_patterns", - [sym_parameter] = "parameter", [sym_pattern] = "pattern", [sym_tuple_pattern] = "tuple_pattern", [sym_list_pattern] = "list_pattern", - [sym_default_parameter] = "default_parameter", - [sym_typed_default_parameter] = "typed_default_parameter", [sym_list_splat_pattern] = "list_splat_pattern", - [sym_dictionary_splat_pattern] = "dictionary_splat_pattern", [sym_as_pattern] = "as_pattern", [sym__expression_within_for_in_clause] = "_expression_within_for_in_clause", [sym_expression] = "expression", @@ -501,7 +501,6 @@ static const char * const ts_symbol_names[] = { [sym_subscript] = "subscript", [sym_slice] = "slice", [sym_call] = "call", - [sym_typed_parameter] = "typed_parameter", [sym_type] = "type", [sym_splat_type] = "splat_type", [sym_generic_type] = "generic_type", @@ -547,6 +546,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_try_statement_repeat1] = "try_statement_repeat1", [aux_sym_try_statement_repeat2] = "try_statement_repeat2", [aux_sym_with_clause_repeat1] = "with_clause_repeat1", + [aux_sym_parameters_repeat1] = "parameters_repeat1", [aux_sym_global_statement_repeat1] = "global_statement_repeat1", [aux_sym_type_parameter_repeat1] = "type_parameter_repeat1", [aux_sym_argument_list_repeat1] = "argument_list_repeat1", @@ -554,7 +554,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_dotted_name_repeat1] = "dotted_name_repeat1", [aux_sym_union_pattern_repeat1] = "union_pattern_repeat1", [aux_sym_dict_pattern_repeat1] = "dict_pattern_repeat1", - [aux_sym__parameters_repeat1] = "_parameters_repeat1", [aux_sym__patterns_repeat1] = "_patterns_repeat1", [aux_sym_comparison_operator_repeat1] = "comparison_operator_repeat1", [aux_sym_subscript_repeat1] = "subscript_repeat1", @@ -568,6 +567,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", [alias_sym_as_pattern_target] = "as_pattern_target", [alias_sym_format_expression] = "format_expression", + [alias_sym_member_identifier] = "member_identifier", }; static const TSSymbol ts_symbol_map[] = { @@ -611,11 +611,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_def] = anon_sym_def, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_EQ] = anon_sym_EQ, [anon_sym_global] = anon_sym_global, [anon_sym_nonlocal] = anon_sym_nonlocal, [anon_sym_exec] = anon_sym_exec, [anon_sym_type] = anon_sym_type, - [anon_sym_EQ] = anon_sym_EQ, [anon_sym_class] = anon_sym_class, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, @@ -718,8 +718,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_with_clause] = sym_with_clause, [sym_with_item] = sym_with_item, [sym_function_definition] = sym_function_definition, + [sym_function_definition_scope] = sym_function_definition_scope, [sym_parameters] = sym_parameters, - [sym_lambda_parameters] = sym_lambda_parameters, + [sym_parameter] = sym_parameter, + [sym__lambda_parameter] = sym_parameter, [sym_list_splat] = sym_list_splat, [sym_dictionary_splat] = sym_dictionary_splat, [sym_global_statement] = sym_global_statement, @@ -727,6 +729,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_exec_statement] = sym_exec_statement, [sym_type_alias_statement] = sym_type_alias_statement, [sym_class_definition] = sym_class_definition, + [sym_class_definition_scope] = sym_class_definition_scope, [sym_type_parameter] = sym_type_parameter, [sym_parenthesized_list_splat] = sym_parenthesized_list_splat, [sym_argument_list] = sym_argument_list, @@ -747,16 +750,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_splat_pattern] = sym_splat_pattern, [sym_class_pattern] = sym_class_pattern, [sym_complex_pattern] = sym_complex_pattern, - [sym__parameters] = sym__parameters, [sym__patterns] = sym__patterns, - [sym_parameter] = sym_parameter, [sym_pattern] = sym_pattern, [sym_tuple_pattern] = sym_tuple_pattern, [sym_list_pattern] = sym_list_pattern, - [sym_default_parameter] = sym_default_parameter, - [sym_typed_default_parameter] = sym_typed_default_parameter, [sym_list_splat_pattern] = sym_list_splat_pattern, - [sym_dictionary_splat_pattern] = sym_dictionary_splat_pattern, [sym_as_pattern] = sym_as_pattern, [sym__expression_within_for_in_clause] = sym__expression_within_for_in_clause, [sym_expression] = sym_expression, @@ -779,7 +777,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_subscript] = sym_subscript, [sym_slice] = sym_slice, [sym_call] = sym_call, - [sym_typed_parameter] = sym_typed_parameter, [sym_type] = sym_type, [sym_splat_type] = sym_splat_type, [sym_generic_type] = sym_generic_type, @@ -825,6 +822,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, [aux_sym_try_statement_repeat2] = aux_sym_try_statement_repeat2, [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, + [aux_sym_parameters_repeat1] = aux_sym_parameters_repeat1, [aux_sym_global_statement_repeat1] = aux_sym_global_statement_repeat1, [aux_sym_type_parameter_repeat1] = aux_sym_type_parameter_repeat1, [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, @@ -832,7 +830,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_dotted_name_repeat1] = aux_sym_dotted_name_repeat1, [aux_sym_union_pattern_repeat1] = aux_sym_union_pattern_repeat1, [aux_sym_dict_pattern_repeat1] = aux_sym_dict_pattern_repeat1, - [aux_sym__parameters_repeat1] = aux_sym__parameters_repeat1, [aux_sym__patterns_repeat1] = aux_sym__patterns_repeat1, [aux_sym_comparison_operator_repeat1] = aux_sym_comparison_operator_repeat1, [aux_sym_subscript_repeat1] = aux_sym_subscript_repeat1, @@ -846,6 +843,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, [alias_sym_as_pattern_target] = alias_sym_as_pattern_target, [alias_sym_format_expression] = alias_sym_format_expression, + [alias_sym_member_identifier] = alias_sym_member_identifier, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -1009,6 +1007,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_global] = { .visible = true, .named = false, @@ -1025,10 +1027,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, [anon_sym_class] = { .visible = true, .named = false, @@ -1437,11 +1435,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_function_definition_scope] = { + .visible = true, + .named = true, + }, [sym_parameters] = { .visible = true, .named = true, }, - [sym_lambda_parameters] = { + [sym_parameter] = { + .visible = true, + .named = true, + }, + [sym__lambda_parameter] = { .visible = true, .named = true, }, @@ -1473,6 +1479,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_class_definition_scope] = { + .visible = true, + .named = true, + }, [sym_type_parameter] = { .visible = true, .named = true, @@ -1553,19 +1563,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__parameters] = { - .visible = false, - .named = true, - }, [sym__patterns] = { .visible = false, .named = true, }, - [sym_parameter] = { - .visible = false, - .named = true, - .supertype = true, - }, [sym_pattern] = { .visible = false, .named = true, @@ -1579,22 +1580,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_default_parameter] = { - .visible = true, - .named = true, - }, - [sym_typed_default_parameter] = { - .visible = true, - .named = true, - }, [sym_list_splat_pattern] = { .visible = true, .named = true, }, - [sym_dictionary_splat_pattern] = { - .visible = true, - .named = true, - }, [sym_as_pattern] = { .visible = true, .named = true, @@ -1685,10 +1674,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_typed_parameter] = { - .visible = true, - .named = true, - }, [sym_type] = { .visible = true, .named = true, @@ -1869,6 +1854,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_parameters_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_global_statement_repeat1] = { .visible = false, .named = false, @@ -1897,10 +1886,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__parameters_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym__patterns_repeat1] = { .visible = false, .named = false, @@ -1953,6 +1938,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [alias_sym_member_identifier] = { + .visible = true, + .named = true, + }, }; enum ts_field_identifiers { @@ -2026,7 +2015,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 0, .length = 1}, [4] = {.index = 1, .length = 1}, [6] = {.index = 2, .length = 1}, @@ -2034,132 +2023,138 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [8] = {.index = 4, .length = 1}, [9] = {.index = 5, .length = 2}, [10] = {.index = 7, .length = 2}, - [11] = {.index = 9, .length = 1}, - [12] = {.index = 10, .length = 1}, - [13] = {.index = 11, .length = 2}, - [14] = {.index = 13, .length = 1}, - [15] = {.index = 14, .length = 2}, - [16] = {.index = 16, .length = 1}, - [17] = {.index = 17, .length = 1}, - [18] = {.index = 18, .length = 2}, - [19] = {.index = 20, .length = 2}, - [20] = {.index = 22, .length = 2}, - [21] = {.index = 24, .length = 3}, - [22] = {.index = 27, .length = 1}, - [23] = {.index = 28, .length = 2}, + [11] = {.index = 9, .length = 2}, + [12] = {.index = 11, .length = 1}, + [13] = {.index = 12, .length = 1}, + [14] = {.index = 13, .length = 2}, + [15] = {.index = 15, .length = 1}, + [16] = {.index = 16, .length = 2}, + [17] = {.index = 18, .length = 1}, + [18] = {.index = 19, .length = 1}, + [19] = {.index = 20, .length = 1}, + [20] = {.index = 21, .length = 2}, + [21] = {.index = 23, .length = 2}, + [22] = {.index = 25, .length = 2}, + [23] = {.index = 27, .length = 3}, [24] = {.index = 30, .length = 1}, [25] = {.index = 31, .length = 2}, [26] = {.index = 33, .length = 1}, - [27] = {.index = 34, .length = 1}, - [28] = {.index = 35, .length = 2}, - [29] = {.index = 37, .length = 2}, - [30] = {.index = 39, .length = 1}, - [31] = {.index = 40, .length = 2}, - [32] = {.index = 42, .length = 1}, - [34] = {.index = 43, .length = 1}, - [35] = {.index = 44, .length = 2}, - [36] = {.index = 46, .length = 1}, - [37] = {.index = 47, .length = 2}, - [38] = {.index = 49, .length = 1}, - [39] = {.index = 50, .length = 3}, - [40] = {.index = 53, .length = 2}, - [41] = {.index = 55, .length = 2}, - [42] = {.index = 17, .length = 1}, + [27] = {.index = 34, .length = 2}, + [28] = {.index = 36, .length = 1}, + [30] = {.index = 37, .length = 2}, + [31] = {.index = 39, .length = 2}, + [32] = {.index = 41, .length = 1}, + [33] = {.index = 42, .length = 2}, + [34] = {.index = 44, .length = 1}, + [36] = {.index = 45, .length = 1}, + [37] = {.index = 46, .length = 2}, + [38] = {.index = 48, .length = 1}, + [39] = {.index = 49, .length = 2}, + [40] = {.index = 51, .length = 1}, + [41] = {.index = 52, .length = 3}, + [42] = {.index = 55, .length = 2}, [43] = {.index = 57, .length = 1}, [44] = {.index = 58, .length = 2}, - [45] = {.index = 60, .length = 2}, - [46] = {.index = 62, .length = 2}, - [47] = {.index = 64, .length = 1}, - [48] = {.index = 65, .length = 2}, - [49] = {.index = 67, .length = 2}, - [51] = {.index = 69, .length = 2}, - [52] = {.index = 71, .length = 2}, - [53] = {.index = 73, .length = 1}, - [54] = {.index = 74, .length = 3}, - [55] = {.index = 77, .length = 3}, - [56] = {.index = 80, .length = 3}, - [57] = {.index = 83, .length = 3}, - [58] = {.index = 86, .length = 4}, - [59] = {.index = 90, .length = 1}, - [60] = {.index = 91, .length = 3}, - [61] = {.index = 94, .length = 3}, - [62] = {.index = 97, .length = 2}, - [63] = {.index = 99, .length = 2}, - [64] = {.index = 101, .length = 3}, - [65] = {.index = 104, .length = 3}, - [66] = {.index = 107, .length = 3}, - [67] = {.index = 110, .length = 3}, - [68] = {.index = 113, .length = 3}, - [69] = {.index = 18, .length = 2}, - [70] = {.index = 116, .length = 1}, - [71] = {.index = 117, .length = 3}, - [72] = {.index = 120, .length = 2}, - [73] = {.index = 122, .length = 2}, - [74] = {.index = 124, .length = 2}, - [75] = {.index = 126, .length = 3}, - [76] = {.index = 129, .length = 1}, - [77] = {.index = 130, .length = 2}, - [78] = {.index = 132, .length = 4}, - [79] = {.index = 136, .length = 2}, - [80] = {.index = 138, .length = 4}, - [81] = {.index = 142, .length = 4}, - [82] = {.index = 146, .length = 1}, - [83] = {.index = 147, .length = 4}, - [84] = {.index = 151, .length = 2}, - [85] = {.index = 153, .length = 3}, - [86] = {.index = 156, .length = 3}, - [87] = {.index = 159, .length = 4}, - [89] = {.index = 163, .length = 4}, - [90] = {.index = 167, .length = 4}, - [91] = {.index = 171, .length = 4}, - [92] = {.index = 175, .length = 4}, - [93] = {.index = 179, .length = 4}, - [94] = {.index = 183, .length = 3}, - [95] = {.index = 186, .length = 3}, - [96] = {.index = 189, .length = 2}, - [97] = {.index = 191, .length = 3}, - [98] = {.index = 194, .length = 5}, - [99] = {.index = 199, .length = 3}, - [100] = {.index = 202, .length = 4}, - [101] = {.index = 206, .length = 4}, - [102] = {.index = 210, .length = 4}, - [103] = {.index = 214, .length = 4}, - [104] = {.index = 218, .length = 1}, - [106] = {.index = 219, .length = 4}, - [107] = {.index = 223, .length = 5}, - [108] = {.index = 228, .length = 5}, - [109] = {.index = 233, .length = 3}, - [110] = {.index = 236, .length = 2}, - [111] = {.index = 238, .length = 1}, - [112] = {.index = 239, .length = 4}, - [113] = {.index = 243, .length = 4}, - [114] = {.index = 247, .length = 4}, - [115] = {.index = 251, .length = 5}, - [116] = {.index = 256, .length = 5}, - [117] = {.index = 218, .length = 1}, - [118] = {.index = 261, .length = 5}, - [119] = {.index = 266, .length = 5}, - [120] = {.index = 271, .length = 4}, - [121] = {.index = 275, .length = 4}, - [122] = {.index = 279, .length = 2}, - [123] = {.index = 281, .length = 1}, - [124] = {.index = 282, .length = 2}, - [125] = {.index = 284, .length = 2}, - [126] = {.index = 286, .length = 5}, - [127] = {.index = 291, .length = 5}, - [128] = {.index = 296, .length = 5}, - [129] = {.index = 301, .length = 2}, - [131] = {.index = 303, .length = 6}, - [132] = {.index = 309, .length = 2}, - [133] = {.index = 311, .length = 2}, - [134] = {.index = 313, .length = 3}, - [135] = {.index = 316, .length = 1}, - [136] = {.index = 317, .length = 6}, - [137] = {.index = 301, .length = 2}, - [138] = {.index = 323, .length = 3}, - [139] = {.index = 326, .length = 2}, - [140] = {.index = 328, .length = 2}, - [141] = {.index = 330, .length = 3}, + [45] = {.index = 20, .length = 1}, + [46] = {.index = 60, .length = 1}, + [48] = {.index = 61, .length = 2}, + [49] = {.index = 45, .length = 1}, + [50] = {.index = 63, .length = 2}, + [51] = {.index = 65, .length = 2}, + [52] = {.index = 67, .length = 2}, + [53] = {.index = 69, .length = 2}, + [54] = {.index = 71, .length = 2}, + [56] = {.index = 73, .length = 2}, + [57] = {.index = 75, .length = 2}, + [58] = {.index = 77, .length = 1}, + [59] = {.index = 78, .length = 3}, + [60] = {.index = 81, .length = 3}, + [61] = {.index = 84, .length = 3}, + [62] = {.index = 87, .length = 3}, + [63] = {.index = 90, .length = 4}, + [64] = {.index = 94, .length = 1}, + [65] = {.index = 95, .length = 3}, + [66] = {.index = 98, .length = 3}, + [67] = {.index = 101, .length = 2}, + [68] = {.index = 103, .length = 2}, + [69] = {.index = 105, .length = 2}, + [70] = {.index = 107, .length = 2}, + [71] = {.index = 109, .length = 2}, + [72] = {.index = 111, .length = 2}, + [73] = {.index = 113, .length = 2}, + [74] = {.index = 115, .length = 3}, + [75] = {.index = 21, .length = 2}, + [76] = {.index = 118, .length = 1}, + [77] = {.index = 119, .length = 3}, + [78] = {.index = 122, .length = 2}, + [79] = {.index = 124, .length = 2}, + [80] = {.index = 126, .length = 2}, + [81] = {.index = 128, .length = 3}, + [82] = {.index = 131, .length = 1}, + [83] = {.index = 132, .length = 2}, + [84] = {.index = 134, .length = 4}, + [85] = {.index = 138, .length = 2}, + [86] = {.index = 140, .length = 4}, + [87] = {.index = 144, .length = 4}, + [88] = {.index = 148, .length = 1}, + [89] = {.index = 149, .length = 1}, + [90] = {.index = 150, .length = 4}, + [91] = {.index = 154, .length = 2}, + [92] = {.index = 156, .length = 3}, + [93] = {.index = 159, .length = 4}, + [95] = {.index = 163, .length = 3}, + [96] = {.index = 166, .length = 3}, + [97] = {.index = 169, .length = 3}, + [98] = {.index = 172, .length = 3}, + [99] = {.index = 175, .length = 3}, + [100] = {.index = 178, .length = 2}, + [101] = {.index = 180, .length = 3}, + [102] = {.index = 183, .length = 5}, + [103] = {.index = 188, .length = 3}, + [104] = {.index = 191, .length = 4}, + [105] = {.index = 195, .length = 4}, + [106] = {.index = 199, .length = 1}, + [108] = {.index = 200, .length = 2}, + [109] = {.index = 202, .length = 2}, + [110] = {.index = 204, .length = 4}, + [111] = {.index = 208, .length = 3}, + [112] = {.index = 211, .length = 3}, + [113] = {.index = 214, .length = 2}, + [114] = {.index = 30, .length = 1}, + [115] = {.index = 216, .length = 1}, + [116] = {.index = 217, .length = 4}, + [117] = {.index = 221, .length = 4}, + [118] = {.index = 225, .length = 5}, + [119] = {.index = 199, .length = 1}, + [120] = {.index = 230, .length = 2}, + [121] = {.index = 232, .length = 3}, + [122] = {.index = 235, .length = 3}, + [123] = {.index = 238, .length = 3}, + [124] = {.index = 241, .length = 4}, + [125] = {.index = 245, .length = 4}, + [126] = {.index = 249, .length = 2}, + [127] = {.index = 251, .length = 1}, + [128] = {.index = 252, .length = 2}, + [129] = {.index = 254, .length = 2}, + [130] = {.index = 256, .length = 5}, + [131] = {.index = 261, .length = 2}, + [133] = {.index = 263, .length = 3}, + [134] = {.index = 266, .length = 3}, + [135] = {.index = 269, .length = 3}, + [136] = {.index = 272, .length = 4}, + [137] = {.index = 276, .length = 2}, + [138] = {.index = 278, .length = 2}, + [139] = {.index = 280, .length = 3}, + [140] = {.index = 283, .length = 1}, + [141] = {.index = 261, .length = 2}, + [142] = {.index = 284, .length = 4}, + [143] = {.index = 288, .length = 4}, + [144] = {.index = 292, .length = 4}, + [145] = {.index = 296, .length = 3}, + [146] = {.index = 299, .length = 2}, + [147] = {.index = 301, .length = 2}, + [148] = {.index = 303, .length = 5}, + [149] = {.index = 308, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2177,226 +2172,229 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_argument, 1}, {field_operator, 0}, [7] = + {field_name, 0, .inherited = true}, + {field_value, 0, .inherited = true}, + [9] = {field_arguments, 1}, {field_function, 0}, - [9] = + [11] = {field_operators, 1, .inherited = true}, - [10] = + [12] = {field_definition, 1}, - [11] = + [13] = {field_name, 0}, {field_name, 1, .inherited = true}, - [13] = + [15] = {field_argument, 2, .inherited = true}, - [14] = + [16] = {field_argument, 1}, {field_argument, 2, .inherited = true}, - [16] = + [18] = {field_cause, 2}, - [17] = + [19] = + {field_name, 1}, + [20] = {field_body, 2}, - [18] = + [21] = {field_name, 0}, {field_value, 2}, - [20] = + [23] = {field_left, 0}, {field_type, 2}, - [22] = + [25] = {field_left, 0}, {field_right, 2}, - [24] = + [27] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [27] = + [30] = {field_alias, 2}, - [28] = + [31] = {field_attribute, 2}, {field_object, 0}, - [30] = + [33] = {field_operators, 0}, - [31] = + [34] = {field_operators, 0, .inherited = true}, {field_operators, 1, .inherited = true}, - [33] = + [36] = {field_expression, 1}, - [34] = - {field_name, 1}, - [35] = + [37] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [37] = + [39] = {field_alias, 2}, {field_name, 0}, - [39] = + [41] = {field_name, 3, .inherited = true}, - [40] = + [42] = {field_module_name, 1}, {field_name, 3, .inherited = true}, - [42] = + [44] = {field_module_name, 1}, - [43] = + [45] = {field_body, 1}, - [44] = + [46] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [46] = + [48] = {field_cause, 3}, - [47] = + [49] = {field_condition, 1}, {field_consequence, 3}, - [49] = + [51] = {field_subject, 1}, - [50] = + [52] = {field_alternative, 3, .inherited = true}, {field_body, 3}, {field_subject, 1}, - [53] = + [55] = {field_subject, 0, .inherited = true}, {field_subject, 1, .inherited = true}, - [55] = + [57] = + {field_name, 2}, + [58] = {field_body, 3}, {field_condition, 1}, - [57] = + [60] = {field_body, 3}, - [58] = + [61] = {field_left, 1}, {field_right, 3}, - [60] = - {field_body, 3}, - {field_name, 1}, - [62] = + [63] = {field_key, 0}, {field_value, 2}, - [64] = - {field_type, 2}, [65] = + {field_name, 0}, + {field_type, 2}, + [67] = {field_body, 3}, {field_parameters, 1}, - [67] = + [69] = + {field_name, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [71] = {field_subscript, 2}, {field_value, 0}, - [69] = + [73] = {field_expression, 1}, {field_type_conversion, 2}, - [71] = + [75] = {field_expression, 1}, {field_format_specifier, 2}, - [73] = + [77] = {field_alternative, 0}, - [74] = + [78] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 3}, - [77] = + [81] = {field_alternative, 4, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, - [80] = + [84] = {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [83] = + [87] = {field_alternative, 4, .inherited = true}, {field_body, 4}, {field_subject, 1}, - [86] = + [90] = {field_alternative, 4, .inherited = true}, {field_body, 4}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [90] = + [94] = {field_body, 4}, - [91] = + [95] = {field_alternative, 4}, {field_body, 3}, {field_condition, 1}, - [94] = + [98] = {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [97] = + [101] = {field_body, 2}, {field_body, 3}, - [99] = + [103] = {field_body, 3}, {field_body, 4}, - [101] = - {field_body, 4}, - {field_name, 1}, - {field_parameters, 2}, - [104] = - {field_body, 3}, - {field_body, 4}, - {field_name, 1}, + [105] = + {field_body, 1}, + {field_body, 2}, [107] = - {field_body, 4}, - {field_name, 1}, - {field_type_parameters, 2}, - [110] = - {field_body, 4}, + {field_body, 2}, + {field_type_parameters, 0}, + [109] = + {field_body, 2}, + {field_superclasses, 0}, + [111] = {field_name, 1}, - {field_superclasses, 2}, + {field_type, 3}, [113] = + {field_name, 1}, + {field_value, 3}, + [115] = {field_left, 0}, {field_right, 4}, {field_type, 2}, - [116] = + [118] = {field_subscript, 1}, - [117] = + [119] = {field_subscript, 2}, {field_subscript, 3, .inherited = true}, {field_value, 0}, - [120] = + [122] = {field_subscript, 0, .inherited = true}, {field_subscript, 1, .inherited = true}, - [122] = + [124] = {field_expression, 1}, {field_type_conversion, 3}, - [124] = + [126] = {field_expression, 1}, {field_format_specifier, 3}, - [126] = + [128] = {field_expression, 1}, {field_format_specifier, 3}, {field_type_conversion, 2}, - [129] = + [131] = {field_name, 4, .inherited = true}, - [130] = + [132] = {field_module_name, 1}, {field_name, 4, .inherited = true}, - [132] = + [134] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [136] = + [138] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [138] = + [140] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [142] = + [144] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [146] = + [148] = + {field_alias, 0, .inherited = true}, + [149] = {field_alternative, 1, .inherited = true}, - [147] = + [150] = {field_alternative, 5, .inherited = true}, {field_body, 5}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [151] = + [154] = {field_body, 4}, {field_body, 5}, - [153] = - {field_body, 5}, - {field_name, 2}, - {field_parameters, 3}, [156] = {field_body, 5}, {field_left, 1}, @@ -2407,221 +2405,200 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 4}, {field_condition, 1}, [163] = - {field_body, 4}, - {field_body, 5}, - {field_name, 1}, - {field_parameters, 2}, - [167] = - {field_body, 5}, - {field_name, 1}, - {field_parameters, 3}, - {field_type_parameters, 2}, - [171] = - {field_body, 4}, - {field_body, 5}, - {field_name, 1}, - {field_type_parameters, 2}, - [175] = - {field_body, 5}, - {field_name, 1}, - {field_superclasses, 3}, - {field_type_parameters, 2}, - [179] = - {field_body, 4}, - {field_body, 5}, - {field_name, 1}, - {field_superclasses, 2}, - [183] = + {field_body, 2}, + {field_body, 3}, + {field_type_parameters, 0}, + [166] = + {field_body, 3}, + {field_superclasses, 1}, + {field_type_parameters, 0}, + [169] = + {field_body, 2}, + {field_body, 3}, + {field_superclasses, 0}, + [172] = {field_name, 0}, {field_type, 2}, {field_value, 4}, - [186] = + [175] = {field_expression, 1}, {field_format_specifier, 4}, {field_type_conversion, 3}, - [189] = + [178] = {field_left, 2}, {field_right, 4}, - [191] = + [180] = {field_left, 1}, {field_right, 3}, {field_right, 4}, - [194] = + [183] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [199] = + [188] = {field_body, 6}, {field_left, 2}, {field_right, 4}, - [202] = - {field_body, 5}, - {field_body, 6}, - {field_name, 2}, - {field_parameters, 3}, - [206] = - {field_body, 6}, - {field_name, 2}, - {field_parameters, 4}, - {field_type_parameters, 3}, - [210] = + [191] = {field_alternative, 6}, {field_body, 5}, {field_left, 1}, {field_right, 3}, - [214] = + [195] = {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [218] = + [199] = {field_value, 1}, - [219] = - {field_body, 6}, - {field_name, 1}, - {field_parameters, 2}, - {field_return_type, 4}, - [223] = - {field_body, 5}, - {field_body, 6}, - {field_name, 1}, - {field_parameters, 3}, - {field_type_parameters, 2}, - [228] = - {field_body, 5}, - {field_body, 6}, + [200] = + {field_body, 4}, + {field_parameters, 1}, + [202] = + {field_body, 4}, + {field_type_parameters, 0}, + [204] = + {field_body, 3}, + {field_body, 4}, + {field_superclasses, 1}, + {field_type_parameters, 0}, + [208] = {field_name, 1}, - {field_superclasses, 3}, - {field_type_parameters, 2}, - [233] = + {field_type, 3}, + {field_value, 5}, + [211] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [236] = + [214] = {field_key, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [238] = + [216] = {field_consequence, 3}, - [239] = + [217] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [243] = + [221] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [247] = - {field_body, 7}, - {field_name, 2}, - {field_parameters, 3}, - {field_return_type, 5}, - [251] = - {field_body, 6}, - {field_body, 7}, - {field_name, 2}, - {field_parameters, 4}, - {field_type_parameters, 3}, - [256] = + [225] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [261] = - {field_body, 6}, - {field_body, 7}, - {field_name, 1}, + [230] = + {field_body, 5}, + {field_return_type, 3}, + [232] = + {field_body, 4}, + {field_body, 5}, + {field_parameters, 1}, + [235] = + {field_body, 4}, + {field_body, 5}, + {field_type_parameters, 0}, + [238] = + {field_body, 5}, {field_parameters, 2}, - {field_return_type, 4}, - [266] = - {field_body, 7}, - {field_name, 1}, - {field_parameters, 3}, - {field_return_type, 5}, - {field_type_parameters, 2}, - [271] = + {field_type_parameters, 0}, + [241] = {field_key, 1, .inherited = true}, {field_key, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [275] = + [245] = {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [279] = + [249] = {field_key, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [281] = + [251] = {field_consequence, 4}, - [282] = + [252] = {field_consequence, 3}, {field_consequence, 4}, - [284] = + [254] = {field_consequence, 4}, {field_guard, 2}, - [286] = + [256] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [291] = - {field_body, 7}, - {field_body, 8}, - {field_name, 2}, - {field_parameters, 3}, - {field_return_type, 5}, - [296] = - {field_body, 8}, - {field_name, 2}, - {field_parameters, 4}, - {field_return_type, 6}, - {field_type_parameters, 3}, - [301] = + [261] = {field_alias, 3}, {field_value, 1}, - [303] = - {field_body, 7}, - {field_body, 8}, - {field_name, 1}, - {field_parameters, 3}, - {field_return_type, 5}, - {field_type_parameters, 2}, - [309] = + [263] = + {field_body, 5}, + {field_body, 6}, + {field_return_type, 3}, + [266] = + {field_body, 6}, + {field_parameters, 1}, + {field_return_type, 4}, + [269] = + {field_body, 6}, + {field_return_type, 4}, + {field_type_parameters, 0}, + [272] = + {field_body, 5}, + {field_body, 6}, + {field_parameters, 2}, + {field_type_parameters, 0}, + [276] = {field_consequence, 4}, {field_consequence, 5}, - [311] = + [278] = {field_consequence, 5}, {field_guard, 3}, - [313] = + [280] = {field_consequence, 4}, {field_consequence, 5}, {field_guard, 2}, - [316] = + [283] = {field_consequence, 5}, - [317] = - {field_body, 8}, - {field_body, 9}, - {field_name, 2}, - {field_parameters, 4}, - {field_return_type, 6}, - {field_type_parameters, 3}, - [323] = + [284] = + {field_body, 6}, + {field_body, 7}, + {field_parameters, 1}, + {field_return_type, 4}, + [288] = + {field_body, 6}, + {field_body, 7}, + {field_return_type, 4}, + {field_type_parameters, 0}, + [292] = + {field_body, 7}, + {field_parameters, 2}, + {field_return_type, 5}, + {field_type_parameters, 0}, + [296] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, - [326] = + [299] = {field_consequence, 5}, {field_consequence, 6}, - [328] = + [301] = {field_consequence, 6}, {field_guard, 4}, - [330] = + [303] = + {field_body, 7}, + {field_body, 8}, + {field_parameters, 2}, + {field_return_type, 5}, + {field_type_parameters, 0}, + [308] = {field_consequence, 6}, {field_consequence, 7}, {field_guard, 4}, @@ -2638,38 +2615,41 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = { [1] = sym_identifier, }, - [22] = { + [24] = { [2] = alias_sym_as_pattern_target, }, - [33] = { + [25] = { + [2] = alias_sym_member_identifier, + }, + [29] = { + [1] = alias_sym_member_identifier, + }, + [35] = { [1] = sym_parenthesized_expression, }, - [37] = { + [39] = { [3] = sym_block, }, - [41] = { + [44] = { [3] = sym_block, }, - [42] = { + [45] = { [2] = sym_block, }, - [43] = { - [3] = sym_block, - }, - [45] = { + [46] = { [3] = sym_block, }, - [50] = { - [0] = alias_sym_format_expression, + [47] = { + [2] = alias_sym_member_identifier, }, - [54] = { - [3] = sym_block, + [49] = { + [1] = sym_block, }, [55] = { - [3] = sym_block, + [0] = alias_sym_format_expression, }, [59] = { - [4] = sym_block, + [3] = sym_block, }, [60] = { [3] = sym_block, @@ -2677,85 +2657,88 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [64] = { [4] = sym_block, }, - [66] = { - [4] = sym_block, + [65] = { + [3] = sym_block, }, - [67] = { - [4] = sym_block, + [70] = { + [2] = sym_block, }, - [69] = { + [71] = { + [2] = sym_block, + }, + [75] = { [0] = sym_identifier, }, - [78] = { + [84] = { [3] = sym_block, }, - [85] = { - [5] = sym_block, - }, - [86] = { + [92] = { [5] = sym_block, }, - [88] = { + [94] = { [2] = sym_block, }, - [90] = { - [5] = sym_block, - }, - [92] = { - [5] = sym_block, - }, - [99] = { - [6] = sym_block, + [96] = { + [3] = sym_block, }, - [101] = { + [103] = { [6] = sym_block, }, - [102] = { + [104] = { [5] = sym_block, }, - [104] = { + [106] = { [3] = sym_block, }, - [105] = { + [107] = { [3] = sym_block, }, - [106] = { - [6] = sym_block, + [108] = { + [4] = sym_block, + }, + [109] = { + [4] = sym_block, }, - [111] = { + [115] = { [3] = sym_block, }, - [112] = { + [116] = { [6] = sym_block, }, - [114] = { - [7] = sym_block, - }, - [119] = { - [7] = sym_block, + [120] = { + [5] = sym_block, }, [123] = { - [4] = sym_block, + [5] = sym_block, }, - [125] = { + [127] = { [4] = sym_block, }, - [128] = { - [8] = sym_block, - }, [129] = { - [5] = sym_block, + [4] = sym_block, }, - [130] = { + [131] = { [5] = sym_block, }, - [133] = { + [132] = { [5] = sym_block, }, + [134] = { + [6] = sym_block, + }, [135] = { + [6] = sym_block, + }, + [138] = { [5] = sym_block, }, [140] = { + [5] = sym_block, + }, + [144] = { + [7] = sym_block, + }, + [147] = { [6] = sym_block, }, }; @@ -2795,8 +2778,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 15, - [16] = 2, + [15] = 2, + [16] = 16, [17] = 17, [18] = 18, [19] = 19, @@ -2814,40 +2797,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [31] = 31, [32] = 32, [33] = 33, - [34] = 34, - [35] = 3, - [36] = 4, - [37] = 5, - [38] = 6, - [39] = 7, - [40] = 8, - [41] = 9, - [42] = 10, - [43] = 11, - [44] = 12, - [45] = 13, - [46] = 14, - [47] = 15, - [48] = 34, - [49] = 17, - [50] = 18, - [51] = 19, - [52] = 20, + [34] = 33, + [35] = 35, + [36] = 3, + [37] = 4, + [38] = 5, + [39] = 6, + [40] = 7, + [41] = 8, + [42] = 9, + [43] = 10, + [44] = 11, + [45] = 12, + [46] = 13, + [47] = 14, + [48] = 35, + [49] = 16, + [50] = 17, + [51] = 18, + [52] = 19, [53] = 21, [54] = 22, - [55] = 24, - [56] = 25, - [57] = 28, - [58] = 29, - [59] = 59, + [55] = 25, + [56] = 26, + [57] = 27, + [58] = 28, + [59] = 31, [60] = 30, - [61] = 59, + [61] = 61, [62] = 62, [63] = 63, [64] = 64, [65] = 62, - [66] = 62, - [67] = 63, + [66] = 63, + [67] = 62, [68] = 62, [69] = 62, [70] = 62, @@ -2859,9 +2842,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [76] = 76, [77] = 75, [78] = 78, - [79] = 78, - [80] = 80, - [81] = 80, + [79] = 79, + [80] = 78, + [81] = 79, [82] = 76, [83] = 83, [84] = 83, @@ -2878,638 +2861,638 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 95, [96] = 96, [97] = 97, - [98] = 98, + [98] = 97, [99] = 99, [100] = 100, [101] = 101, - [102] = 102, + [102] = 95, [103] = 103, [104] = 104, [105] = 105, - [106] = 97, + [106] = 88, [107] = 107, - [108] = 92, - [109] = 96, - [110] = 88, - [111] = 95, - [112] = 99, - [113] = 113, - [114] = 114, - [115] = 90, - [116] = 116, - [117] = 98, - [118] = 91, - [119] = 119, - [120] = 102, - [121] = 121, - [122] = 113, - [123] = 103, - [124] = 121, - [125] = 93, + [108] = 89, + [109] = 109, + [110] = 99, + [111] = 111, + [112] = 90, + [113] = 104, + [114] = 87, + [115] = 115, + [116] = 91, + [117] = 100, + [118] = 118, + [119] = 111, + [120] = 103, + [121] = 92, + [122] = 122, + [123] = 118, + [124] = 124, + [125] = 125, [126] = 126, - [127] = 104, - [128] = 94, - [129] = 100, - [130] = 87, - [131] = 107, - [132] = 126, - [133] = 114, - [134] = 134, - [135] = 135, - [136] = 89, + [127] = 124, + [128] = 105, + [129] = 129, + [130] = 93, + [131] = 96, + [132] = 132, + [133] = 129, + [134] = 94, + [135] = 101, + [136] = 115, [137] = 137, [138] = 138, [139] = 138, [140] = 137, [141] = 138, [142] = 137, - [143] = 138, - [144] = 137, + [143] = 137, + [144] = 138, [145] = 137, [146] = 138, - [147] = 137, - [148] = 138, - [149] = 137, - [150] = 138, - [151] = 137, - [152] = 138, + [147] = 138, + [148] = 137, + [149] = 138, + [150] = 137, + [151] = 138, + [152] = 137, [153] = 153, [154] = 154, [155] = 154, [156] = 156, [157] = 157, - [158] = 154, - [159] = 156, + [158] = 156, + [159] = 157, [160] = 156, [161] = 161, - [162] = 157, - [163] = 157, - [164] = 164, - [165] = 157, - [166] = 164, - [167] = 167, - [168] = 156, - [169] = 157, - [170] = 157, - [171] = 161, - [172] = 167, - [173] = 161, - [174] = 154, - [175] = 157, - [176] = 161, - [177] = 154, - [178] = 156, - [179] = 164, - [180] = 180, - [181] = 161, - [182] = 156, - [183] = 157, + [162] = 154, + [163] = 161, + [164] = 157, + [165] = 165, + [166] = 157, + [167] = 157, + [168] = 168, + [169] = 168, + [170] = 154, + [171] = 156, + [172] = 157, + [173] = 157, + [174] = 174, + [175] = 161, + [176] = 157, + [177] = 156, + [178] = 154, + [179] = 161, + [180] = 161, + [181] = 156, + [182] = 165, + [183] = 168, [184] = 161, [185] = 161, [186] = 161, - [187] = 180, + [187] = 174, [188] = 156, [189] = 189, [190] = 190, [191] = 191, - [192] = 192, - [193] = 190, - [194] = 190, + [192] = 190, + [193] = 193, + [194] = 194, [195] = 191, - [196] = 192, - [197] = 190, + [196] = 193, + [197] = 194, [198] = 198, - [199] = 198, - [200] = 191, - [201] = 192, - [202] = 190, - [203] = 191, - [204] = 192, - [205] = 190, - [206] = 192, - [207] = 191, - [208] = 192, + [199] = 199, + [200] = 200, + [201] = 190, + [202] = 193, + [203] = 190, + [204] = 193, + [205] = 194, + [206] = 190, + [207] = 193, + [208] = 194, [209] = 190, - [210] = 191, - [211] = 191, - [212] = 212, - [213] = 191, - [214] = 192, + [210] = 193, + [211] = 194, + [212] = 190, + [213] = 193, + [214] = 194, [215] = 190, - [216] = 192, - [217] = 217, - [218] = 218, - [219] = 191, - [220] = 192, - [221] = 192, - [222] = 192, + [216] = 193, + [217] = 194, + [218] = 190, + [219] = 193, + [220] = 193, + [221] = 193, + [222] = 194, [223] = 223, [224] = 224, [225] = 225, - [226] = 226, - [227] = 226, + [226] = 225, + [227] = 227, [228] = 228, [229] = 228, - [230] = 228, - [231] = 228, - [232] = 225, - [233] = 226, - [234] = 226, + [230] = 225, + [231] = 227, + [232] = 228, + [233] = 233, + [234] = 234, [235] = 235, [236] = 236, - [237] = 237, - [238] = 235, + [237] = 233, + [238] = 238, [239] = 239, - [240] = 240, + [240] = 238, [241] = 241, - [242] = 237, + [242] = 223, [243] = 243, - [244] = 244, - [245] = 245, - [246] = 244, - [247] = 244, + [244] = 234, + [245] = 238, + [246] = 238, + [247] = 239, [248] = 248, - [249] = 224, - [250] = 244, - [251] = 251, - [252] = 244, + [249] = 249, + [250] = 238, + [251] = 224, + [252] = 238, [253] = 253, - [254] = 237, + [254] = 254, [255] = 255, - [256] = 244, - [257] = 236, - [258] = 237, - [259] = 244, - [260] = 260, - [261] = 235, - [262] = 262, + [256] = 238, + [257] = 233, + [258] = 258, + [259] = 238, + [260] = 239, + [261] = 258, + [262] = 258, [263] = 235, - [264] = 244, - [265] = 255, - [266] = 255, - [267] = 255, - [268] = 223, - [269] = 240, - [270] = 253, - [271] = 248, + [264] = 241, + [265] = 254, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 269, + [271] = 271, [272] = 272, [273] = 273, - [274] = 274, - [275] = 275, - [276] = 273, - [277] = 274, - [278] = 278, - [279] = 279, - [280] = 275, - [281] = 281, - [282] = 275, - [283] = 281, - [284] = 284, - [285] = 273, - [286] = 274, - [287] = 281, - [288] = 278, - [289] = 278, - [290] = 279, - [291] = 275, - [292] = 281, - [293] = 279, - [294] = 273, - [295] = 284, - [296] = 284, - [297] = 273, - [298] = 278, - [299] = 279, - [300] = 278, - [301] = 279, - [302] = 275, - [303] = 281, - [304] = 281, - [305] = 284, - [306] = 273, - [307] = 284, - [308] = 273, - [309] = 274, - [310] = 284, - [311] = 278, - [312] = 279, - [313] = 275, - [314] = 281, + [274] = 271, + [275] = 266, + [276] = 268, + [277] = 272, + [278] = 267, + [279] = 268, + [280] = 272, + [281] = 273, + [282] = 273, + [283] = 269, + [284] = 271, + [285] = 272, + [286] = 273, + [287] = 272, + [288] = 273, + [289] = 267, + [290] = 266, + [291] = 267, + [292] = 268, + [293] = 269, + [294] = 271, + [295] = 272, + [296] = 273, + [297] = 266, + [298] = 267, + [299] = 266, + [300] = 266, + [301] = 267, + [302] = 267, + [303] = 268, + [304] = 269, + [305] = 271, + [306] = 272, + [307] = 273, + [308] = 267, + [309] = 268, + [310] = 269, + [311] = 271, + [312] = 269, + [313] = 271, + [314] = 272, [315] = 273, - [316] = 274, - [317] = 274, - [318] = 278, - [319] = 279, - [320] = 284, - [321] = 278, - [322] = 279, - [323] = 275, - [324] = 281, - [325] = 284, - [326] = 275, - [327] = 327, - [328] = 327, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 330, + [316] = 269, + [317] = 271, + [318] = 266, + [319] = 266, + [320] = 320, + [321] = 321, + [322] = 174, + [323] = 321, + [324] = 324, + [325] = 325, + [326] = 320, + [327] = 325, + [328] = 328, + [329] = 328, + [330] = 320, + [331] = 321, + [332] = 328, [333] = 333, [334] = 334, - [335] = 335, - [336] = 330, + [335] = 334, + [336] = 336, [337] = 337, - [338] = 331, - [339] = 327, - [340] = 340, - [341] = 337, - [342] = 337, - [343] = 331, - [344] = 329, - [345] = 334, - [346] = 329, - [347] = 180, - [348] = 334, - [349] = 349, - [350] = 245, - [351] = 351, - [352] = 352, - [353] = 351, - [354] = 351, - [355] = 352, - [356] = 352, - [357] = 351, - [358] = 352, - [359] = 351, - [360] = 351, - [361] = 352, - [362] = 362, - [363] = 245, - [364] = 349, - [365] = 351, - [366] = 352, - [367] = 245, - [368] = 352, - [369] = 351, - [370] = 352, - [371] = 349, - [372] = 156, + [338] = 334, + [339] = 333, + [340] = 325, + [341] = 333, + [342] = 342, + [343] = 343, + [344] = 249, + [345] = 345, + [346] = 342, + [347] = 249, + [348] = 345, + [349] = 342, + [350] = 342, + [351] = 343, + [352] = 342, + [353] = 345, + [354] = 354, + [355] = 249, + [356] = 342, + [357] = 345, + [358] = 345, + [359] = 345, + [360] = 342, + [361] = 345, + [362] = 342, + [363] = 343, + [364] = 345, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 367, + [370] = 367, + [371] = 371, + [372] = 368, [373] = 373, - [374] = 374, - [375] = 373, - [376] = 376, - [377] = 377, - [378] = 373, - [379] = 377, - [380] = 333, - [381] = 373, - [382] = 374, - [383] = 377, - [384] = 374, - [385] = 377, - [386] = 373, - [387] = 377, - [388] = 374, - [389] = 374, - [390] = 377, - [391] = 373, - [392] = 373, - [393] = 374, - [394] = 377, - [395] = 373, - [396] = 373, - [397] = 340, - [398] = 374, - [399] = 399, - [400] = 374, - [401] = 374, + [374] = 367, + [375] = 365, + [376] = 368, + [377] = 365, + [378] = 336, + [379] = 367, + [380] = 368, + [381] = 365, + [382] = 368, + [383] = 365, + [384] = 367, + [385] = 367, + [386] = 365, + [387] = 365, + [388] = 368, + [389] = 367, + [390] = 365, + [391] = 368, + [392] = 367, + [393] = 365, + [394] = 368, + [395] = 368, + [396] = 396, + [397] = 324, + [398] = 367, + [399] = 365, + [400] = 368, + [401] = 174, [402] = 402, [403] = 403, - [404] = 377, - [405] = 373, - [406] = 374, + [404] = 404, + [405] = 405, + [406] = 406, [407] = 407, - [408] = 377, - [409] = 377, + [408] = 408, + [409] = 336, [410] = 410, [411] = 411, [412] = 412, - [413] = 333, + [413] = 336, [414] = 414, - [415] = 340, - [416] = 156, - [417] = 180, - [418] = 333, - [419] = 340, - [420] = 420, - [421] = 421, + [415] = 174, + [416] = 324, + [417] = 407, + [418] = 418, + [419] = 412, + [420] = 174, + [421] = 407, [422] = 422, - [423] = 410, - [424] = 424, - [425] = 414, + [423] = 423, + [424] = 423, + [425] = 422, [426] = 426, [427] = 427, - [428] = 424, + [428] = 428, [429] = 429, [430] = 430, - [431] = 431, + [431] = 402, [432] = 432, - [433] = 430, - [434] = 434, - [435] = 435, - [436] = 407, - [437] = 434, - [438] = 414, - [439] = 180, - [440] = 440, - [441] = 441, - [442] = 424, - [443] = 430, - [444] = 441, - [445] = 435, - [446] = 446, - [447] = 447, - [448] = 435, - [449] = 180, + [433] = 423, + [434] = 402, + [435] = 406, + [436] = 402, + [437] = 402, + [438] = 402, + [439] = 402, + [440] = 402, + [441] = 402, + [442] = 402, + [443] = 324, + [444] = 444, + [445] = 411, + [446] = 444, + [447] = 412, + [448] = 422, + [449] = 406, [450] = 450, [451] = 451, - [452] = 421, - [453] = 421, - [454] = 421, - [455] = 421, - [456] = 421, - [457] = 421, - [458] = 421, - [459] = 421, - [460] = 421, - [461] = 441, + [452] = 452, + [453] = 452, + [454] = 454, + [455] = 455, + [456] = 336, + [457] = 324, + [458] = 458, + [459] = 458, + [460] = 460, + [461] = 460, [462] = 462, [463] = 463, - [464] = 333, - [465] = 340, - [466] = 466, - [467] = 467, - [468] = 466, - [469] = 469, + [464] = 464, + [465] = 451, + [466] = 462, + [467] = 454, + [468] = 464, + [469] = 463, [470] = 470, [471] = 471, [472] = 472, - [473] = 467, - [474] = 463, + [473] = 473, + [474] = 474, [475] = 475, - [476] = 471, - [477] = 462, - [478] = 469, - [479] = 475, - [480] = 470, - [481] = 481, + [476] = 476, + [477] = 475, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 474, [482] = 482, [483] = 483, [484] = 484, - [485] = 485, - [486] = 486, + [485] = 471, + [486] = 473, [487] = 487, - [488] = 488, - [489] = 489, - [490] = 486, - [491] = 482, - [492] = 483, - [493] = 485, - [494] = 487, - [495] = 495, - [496] = 488, - [497] = 489, - [498] = 486, - [499] = 482, - [500] = 483, - [501] = 485, - [502] = 487, + [488] = 475, + [489] = 483, + [490] = 490, + [491] = 484, + [492] = 471, + [493] = 480, + [494] = 474, + [495] = 483, + [496] = 484, + [497] = 471, + [498] = 498, + [499] = 473, + [500] = 475, + [501] = 475, + [502] = 502, [503] = 503, - [504] = 488, - [505] = 489, - [506] = 486, - [507] = 482, - [508] = 483, - [509] = 485, - [510] = 487, - [511] = 482, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 481, - [517] = 517, - [518] = 518, - [519] = 519, + [504] = 480, + [505] = 474, + [506] = 483, + [507] = 484, + [508] = 471, + [509] = 473, + [510] = 475, + [511] = 480, + [512] = 474, + [513] = 483, + [514] = 484, + [515] = 471, + [516] = 473, + [517] = 475, + [518] = 480, + [519] = 474, [520] = 483, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 513, - [526] = 515, + [521] = 484, + [522] = 471, + [523] = 473, + [524] = 475, + [525] = 525, + [526] = 526, [527] = 527, [528] = 528, - [529] = 483, + [529] = 529, [530] = 530, - [531] = 485, - [532] = 486, - [533] = 487, + [531] = 531, + [532] = 532, + [533] = 533, [534] = 534, - [535] = 488, - [536] = 489, - [537] = 537, + [535] = 533, + [536] = 534, + [537] = 473, [538] = 538, - [539] = 539, - [540] = 486, + [539] = 476, + [540] = 540, [541] = 541, - [542] = 542, - [543] = 523, - [544] = 512, - [545] = 513, - [546] = 482, - [547] = 517, - [548] = 519, - [549] = 485, - [550] = 483, + [542] = 472, + [543] = 540, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 472, + [549] = 549, + [550] = 544, [551] = 551, - [552] = 486, - [553] = 482, - [554] = 485, - [555] = 542, - [556] = 523, - [557] = 512, - [558] = 513, + [552] = 472, + [553] = 553, + [554] = 482, + [555] = 526, + [556] = 528, + [557] = 498, + [558] = 470, [559] = 559, - [560] = 519, - [561] = 519, - [562] = 562, - [563] = 512, - [564] = 512, - [565] = 513, + [560] = 560, + [561] = 551, + [562] = 472, + [563] = 526, + [564] = 528, + [565] = 529, [566] = 566, - [567] = 514, - [568] = 512, - [569] = 513, - [570] = 487, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 488, - [575] = 542, - [576] = 489, - [577] = 486, - [578] = 482, - [579] = 483, - [580] = 512, - [581] = 488, - [582] = 487, - [583] = 523, - [584] = 542, - [585] = 512, - [586] = 485, - [587] = 489, - [588] = 572, - [589] = 573, - [590] = 487, - [591] = 551, - [592] = 488, - [593] = 551, - [594] = 594, - [595] = 551, - [596] = 551, - [597] = 551, - [598] = 489, - [599] = 551, - [600] = 551, - [601] = 488, - [602] = 559, - [603] = 518, - [604] = 489, - [605] = 571, - [606] = 594, - [607] = 495, - [608] = 503, - [609] = 527, - [610] = 523, + [567] = 470, + [568] = 526, + [569] = 530, + [570] = 532, + [571] = 473, + [572] = 526, + [573] = 528, + [574] = 545, + [575] = 526, + [576] = 528, + [577] = 526, + [578] = 578, + [579] = 480, + [580] = 470, + [581] = 526, + [582] = 490, + [583] = 551, + [584] = 584, + [585] = 480, + [586] = 490, + [587] = 480, + [588] = 490, + [589] = 551, + [590] = 490, + [591] = 490, + [592] = 474, + [593] = 490, + [594] = 490, + [595] = 483, + [596] = 484, + [597] = 471, + [598] = 527, + [599] = 474, + [600] = 584, + [601] = 483, + [602] = 484, + [603] = 541, + [604] = 503, + [605] = 528, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, [611] = 611, [612] = 612, [613] = 613, [614] = 614, - [615] = 615, - [616] = 616, - [617] = 612, - [618] = 615, - [619] = 619, - [620] = 620, - [621] = 621, - [622] = 619, - [623] = 620, - [624] = 621, - [625] = 614, + [615] = 608, + [616] = 607, + [617] = 613, + [618] = 618, + [619] = 611, + [620] = 612, + [621] = 609, + [622] = 610, + [623] = 614, + [624] = 624, + [625] = 625, [626] = 626, - [627] = 626, - [628] = 613, + [627] = 627, + [628] = 628, [629] = 629, [630] = 630, - [631] = 631, + [631] = 630, [632] = 632, - [633] = 630, + [633] = 633, [634] = 634, [635] = 635, [636] = 636, [637] = 637, - [638] = 629, + [638] = 638, [639] = 639, - [640] = 640, + [640] = 636, [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 640, - [646] = 641, - [647] = 644, + [642] = 641, + [643] = 638, + [644] = 628, + [645] = 645, + [646] = 646, + [647] = 647, [648] = 648, [649] = 649, [650] = 650, [651] = 651, - [652] = 224, + [652] = 651, [653] = 653, [654] = 654, - [655] = 653, - [656] = 656, - [657] = 656, - [658] = 656, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 650, - [663] = 654, - [664] = 654, - [665] = 665, - [666] = 653, - [667] = 659, - [668] = 659, - [669] = 661, - [670] = 654, + [655] = 650, + [656] = 645, + [657] = 647, + [658] = 646, + [659] = 654, + [660] = 224, + [661] = 647, + [662] = 646, + [663] = 649, + [664] = 649, + [665] = 648, + [666] = 649, + [667] = 667, + [668] = 668, + [669] = 646, + [670] = 223, [671] = 671, - [672] = 653, - [673] = 673, - [674] = 659, + [672] = 672, + [673] = 651, + [674] = 674, [675] = 675, - [676] = 676, - [677] = 650, - [678] = 675, - [679] = 679, - [680] = 660, - [681] = 679, - [682] = 650, - [683] = 650, - [684] = 651, - [685] = 223, - [686] = 676, - [687] = 673, - [688] = 653, - [689] = 659, - [690] = 665, - [691] = 659, - [692] = 656, - [693] = 656, - [694] = 654, - [695] = 654, - [696] = 653, - [697] = 656, - [698] = 671, + [676] = 651, + [677] = 653, + [678] = 649, + [679] = 651, + [680] = 653, + [681] = 647, + [682] = 647, + [683] = 668, + [684] = 646, + [685] = 653, + [686] = 653, + [687] = 671, + [688] = 649, + [689] = 651, + [690] = 653, + [691] = 647, + [692] = 646, + [693] = 672, + [694] = 674, + [695] = 675, + [696] = 667, + [697] = 697, + [698] = 698, [699] = 699, - [700] = 650, - [701] = 699, + [700] = 700, + [701] = 701, [702] = 702, - [703] = 703, - [704] = 704, - [705] = 703, - [706] = 706, - [707] = 704, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 709, - [712] = 708, + [703] = 697, + [704] = 700, + [705] = 705, + [706] = 699, + [707] = 707, + [708] = 701, + [709] = 707, + [710] = 705, + [711] = 698, + [712] = 712, [713] = 713, - [714] = 706, - [715] = 715, - [716] = 702, - [717] = 713, - [718] = 715, + [714] = 702, + [715] = 712, + [716] = 716, + [717] = 716, + [718] = 713, [719] = 719, [720] = 720, [721] = 720, [722] = 719, - [723] = 710, + [723] = 723, [724] = 724, - [725] = 724, + [725] = 725, [726] = 726, [727] = 727, - [728] = 727, - [729] = 726, + [728] = 728, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, @@ -3518,35 +3501,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [735] = 735, [736] = 736, [737] = 737, - [738] = 735, + [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, [743] = 743, [744] = 744, - [745] = 740, - [746] = 743, + [745] = 745, + [746] = 223, [747] = 747, [748] = 748, [749] = 749, [750] = 750, - [751] = 744, + [751] = 751, [752] = 752, [753] = 753, [754] = 754, [755] = 755, [756] = 756, [757] = 757, - [758] = 747, - [759] = 748, - [760] = 749, - [761] = 750, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, [762] = 762, [763] = 763, - [764] = 752, + [764] = 723, [765] = 765, - [766] = 731, + [766] = 766, [767] = 767, [768] = 768, [769] = 769, @@ -3554,2044 +3537,2082 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [771] = 771, [772] = 772, [773] = 773, - [774] = 732, - [775] = 733, + [774] = 774, + [775] = 724, [776] = 776, - [777] = 777, + [777] = 725, [778] = 778, - [779] = 779, + [779] = 726, [780] = 780, [781] = 781, - [782] = 765, - [783] = 783, - [784] = 784, + [782] = 782, + [783] = 728, + [784] = 727, [785] = 785, - [786] = 767, - [787] = 787, - [788] = 788, - [789] = 768, - [790] = 770, + [786] = 733, + [787] = 734, + [788] = 735, + [789] = 736, + [790] = 743, [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 742, - [796] = 796, - [797] = 772, - [798] = 773, + [792] = 731, + [793] = 737, + [794] = 738, + [795] = 739, + [796] = 740, + [797] = 741, + [798] = 742, [799] = 799, - [800] = 800, + [800] = 762, [801] = 801, - [802] = 780, - [803] = 803, - [804] = 804, - [805] = 777, - [806] = 778, - [807] = 807, - [808] = 223, - [809] = 756, - [810] = 769, - [811] = 776, - [812] = 730, - [813] = 803, - [814] = 792, - [815] = 800, - [816] = 807, - [817] = 753, - [818] = 781, - [819] = 793, - [820] = 784, - [821] = 791, - [822] = 794, - [823] = 823, - [824] = 824, - [825] = 736, - [826] = 734, - [827] = 762, + [802] = 744, + [803] = 745, + [804] = 785, + [805] = 747, + [806] = 748, + [807] = 799, + [808] = 791, + [809] = 749, + [810] = 750, + [811] = 811, + [812] = 751, + [813] = 753, + [814] = 729, + [815] = 754, + [816] = 811, + [817] = 756, + [818] = 757, + [819] = 758, + [820] = 759, + [821] = 760, + [822] = 822, + [823] = 732, + [824] = 761, + [825] = 763, + [826] = 765, + [827] = 766, [828] = 828, - [829] = 801, - [830] = 779, - [831] = 824, - [832] = 737, - [833] = 763, - [834] = 785, - [835] = 788, - [836] = 741, - [837] = 804, - [838] = 739, - [839] = 823, - [840] = 840, - [841] = 840, - [842] = 771, - [843] = 754, - [844] = 783, - [845] = 757, - [846] = 755, - [847] = 787, - [848] = 796, - [849] = 799, - [850] = 840, - [851] = 771, - [852] = 828, - [853] = 224, - [854] = 854, - [855] = 854, - [856] = 854, - [857] = 854, - [858] = 854, - [859] = 854, - [860] = 860, - [861] = 860, - [862] = 862, - [863] = 862, - [864] = 862, - [865] = 862, - [866] = 862, - [867] = 862, - [868] = 862, - [869] = 862, + [829] = 767, + [830] = 768, + [831] = 769, + [832] = 770, + [833] = 772, + [834] = 773, + [835] = 774, + [836] = 776, + [837] = 778, + [838] = 780, + [839] = 781, + [840] = 771, + [841] = 841, + [842] = 782, + [843] = 752, + [844] = 224, + [845] = 755, + [846] = 801, + [847] = 841, + [848] = 801, + [849] = 841, + [850] = 828, + [851] = 822, + [852] = 730, + [853] = 853, + [854] = 853, + [855] = 853, + [856] = 853, + [857] = 853, + [858] = 853, + [859] = 859, + [860] = 859, + [861] = 859, + [862] = 859, + [863] = 859, + [864] = 859, + [865] = 859, + [866] = 859, + [867] = 867, + [868] = 868, + [869] = 869, [870] = 870, [871] = 871, [872] = 872, - [873] = 873, + [873] = 868, [874] = 874, [875] = 875, [876] = 876, - [877] = 877, - [878] = 872, - [879] = 879, - [880] = 873, - [881] = 881, - [882] = 874, - [883] = 879, - [884] = 872, - [885] = 879, - [886] = 873, - [887] = 873, - [888] = 881, - [889] = 889, - [890] = 890, - [891] = 881, - [892] = 871, - [893] = 875, - [894] = 874, - [895] = 875, - [896] = 890, - [897] = 876, - [898] = 871, - [899] = 890, - [900] = 879, - [901] = 877, - [902] = 872, - [903] = 871, - [904] = 876, - [905] = 877, - [906] = 874, - [907] = 872, - [908] = 879, - [909] = 873, - [910] = 890, - [911] = 875, - [912] = 890, - [913] = 890, - [914] = 914, - [915] = 890, - [916] = 873, - [917] = 871, - [918] = 875, - [919] = 879, - [920] = 881, - [921] = 872, - [922] = 879, - [923] = 881, - [924] = 877, - [925] = 889, - [926] = 914, + [877] = 870, + [878] = 871, + [879] = 869, + [880] = 880, + [881] = 872, + [882] = 868, + [883] = 874, + [884] = 875, + [885] = 885, + [886] = 886, + [887] = 868, + [888] = 880, + [889] = 885, + [890] = 874, + [891] = 875, + [892] = 885, + [893] = 885, + [894] = 871, + [895] = 876, + [896] = 867, + [897] = 869, + [898] = 870, + [899] = 880, + [900] = 871, + [901] = 876, + [902] = 870, + [903] = 869, + [904] = 885, + [905] = 872, + [906] = 869, + [907] = 880, + [908] = 871, + [909] = 880, + [910] = 872, + [911] = 876, + [912] = 872, + [913] = 876, + [914] = 874, + [915] = 886, + [916] = 870, + [917] = 880, + [918] = 886, + [919] = 875, + [920] = 885, + [921] = 870, + [922] = 871, + [923] = 869, + [924] = 868, + [925] = 880, + [926] = 876, [927] = 870, - [928] = 870, - [929] = 881, - [930] = 890, - [931] = 871, - [932] = 876, - [933] = 871, - [934] = 872, - [935] = 873, - [936] = 881, - [937] = 874, - [938] = 890, - [939] = 875, - [940] = 871, - [941] = 874, - [942] = 875, - [943] = 874, - [944] = 875, - [945] = 876, - [946] = 877, - [947] = 914, + [928] = 885, + [929] = 871, + [930] = 872, + [931] = 872, + [932] = 869, + [933] = 880, + [934] = 869, + [935] = 869, + [936] = 886, + [937] = 867, + [938] = 868, + [939] = 874, + [940] = 868, + [941] = 876, + [942] = 870, + [943] = 871, + [944] = 874, + [945] = 875, + [946] = 874, + [947] = 867, [948] = 872, - [949] = 879, - [950] = 914, - [951] = 873, - [952] = 914, - [953] = 881, - [954] = 876, - [955] = 877, - [956] = 877, - [957] = 876, - [958] = 890, - [959] = 890, - [960] = 890, - [961] = 877, - [962] = 890, - [963] = 874, - [964] = 870, - [965] = 876, - [966] = 966, - [967] = 870, - [968] = 870, - [969] = 969, - [970] = 970, - [971] = 870, - [972] = 870, - [973] = 973, + [949] = 868, + [950] = 874, + [951] = 875, + [952] = 869, + [953] = 869, + [954] = 869, + [955] = 875, + [956] = 885, + [957] = 875, + [958] = 876, + [959] = 869, + [960] = 960, + [961] = 867, + [962] = 962, + [963] = 963, + [964] = 867, + [965] = 867, + [966] = 963, + [967] = 963, + [968] = 968, + [969] = 962, + [970] = 960, + [971] = 971, + [972] = 962, + [973] = 960, [974] = 974, [975] = 975, [976] = 976, - [977] = 969, - [978] = 970, - [979] = 966, - [980] = 969, - [981] = 970, - [982] = 966, - [983] = 969, - [984] = 970, - [985] = 966, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 870, - [993] = 973, - [994] = 970, - [995] = 966, - [996] = 996, + [977] = 977, + [978] = 963, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 867, + [983] = 867, + [984] = 984, + [985] = 962, + [986] = 960, + [987] = 976, + [988] = 960, + [989] = 968, + [990] = 968, + [991] = 960, + [992] = 992, + [993] = 968, + [994] = 971, + [995] = 981, + [996] = 971, [997] = 997, - [998] = 975, - [999] = 976, - [1000] = 1000, + [998] = 963, + [999] = 999, + [1000] = 971, [1001] = 1001, - [1002] = 986, - [1003] = 987, - [1004] = 988, - [1005] = 973, - [1006] = 989, - [1007] = 990, - [1008] = 991, - [1009] = 974, - [1010] = 975, - [1011] = 976, - [1012] = 1012, - [1013] = 975, - [1014] = 976, - [1015] = 1015, - [1016] = 648, - [1017] = 974, - [1018] = 987, - [1019] = 988, - [1020] = 966, - [1021] = 989, - [1022] = 990, - [1023] = 991, - [1024] = 974, - [1025] = 969, - [1026] = 1026, - [1027] = 642, - [1028] = 649, - [1029] = 634, - [1030] = 636, - [1031] = 635, - [1032] = 637, - [1033] = 870, - [1034] = 969, - [1035] = 970, - [1036] = 966, - [1037] = 870, - [1038] = 986, - [1039] = 987, - [1040] = 988, - [1041] = 973, - [1042] = 989, - [1043] = 990, - [1044] = 969, - [1045] = 991, - [1046] = 970, - [1047] = 870, - [1048] = 986, - [1049] = 1049, - [1050] = 1050, - [1051] = 1026, - [1052] = 975, - [1053] = 976, - [1054] = 1015, - [1055] = 989, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 648, - [1060] = 986, - [1061] = 987, - [1062] = 988, - [1063] = 973, - [1064] = 989, - [1065] = 1001, - [1066] = 1000, - [1067] = 1012, - [1068] = 1026, - [1069] = 990, - [1070] = 991, - [1071] = 988, - [1072] = 974, - [1073] = 1073, - [1074] = 1015, - [1075] = 642, - [1076] = 649, - [1077] = 634, - [1078] = 636, - [1079] = 635, - [1080] = 637, - [1081] = 1081, - [1082] = 616, + [1002] = 974, + [1003] = 975, + [1004] = 976, + [1005] = 977, + [1006] = 984, + [1007] = 634, + [1008] = 974, + [1009] = 975, + [1010] = 976, + [1011] = 975, + [1012] = 984, + [1013] = 963, + [1014] = 980, + [1015] = 979, + [1016] = 981, + [1017] = 979, + [1018] = 633, + [1019] = 635, + [1020] = 624, + [1021] = 984, + [1022] = 867, + [1023] = 977, + [1024] = 962, + [1025] = 629, + [1026] = 625, + [1027] = 626, + [1028] = 962, + [1029] = 867, + [1030] = 867, + [1031] = 980, + [1032] = 981, + [1033] = 980, + [1034] = 979, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 974, + [1039] = 977, + [1040] = 962, + [1041] = 980, + [1042] = 997, + [1043] = 981, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 963, + [1049] = 979, + [1050] = 999, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1035, + [1056] = 960, + [1057] = 627, + [1058] = 976, + [1059] = 963, + [1060] = 971, + [1061] = 968, + [1062] = 977, + [1063] = 1001, + [1064] = 984, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 992, + [1071] = 992, + [1072] = 609, + [1073] = 979, + [1074] = 610, + [1075] = 1075, + [1076] = 1076, + [1077] = 637, + [1078] = 1078, + [1079] = 639, + [1080] = 1035, + [1081] = 997, + [1082] = 634, [1083] = 1083, [1084] = 1084, - [1085] = 639, - [1086] = 996, - [1087] = 997, - [1088] = 990, - [1089] = 1089, - [1090] = 991, - [1091] = 1091, - [1092] = 1092, + [1085] = 974, + [1086] = 1086, + [1087] = 962, + [1088] = 981, + [1089] = 1036, + [1090] = 1037, + [1091] = 974, + [1092] = 633, [1093] = 1093, - [1094] = 1001, - [1095] = 1095, - [1096] = 975, - [1097] = 976, - [1098] = 1098, - [1099] = 1015, - [1100] = 986, - [1101] = 973, - [1102] = 988, - [1103] = 973, - [1104] = 989, - [1105] = 990, - [1106] = 991, - [1107] = 974, + [1094] = 968, + [1095] = 960, + [1096] = 999, + [1097] = 1097, + [1098] = 635, + [1099] = 624, + [1100] = 629, + [1101] = 971, + [1102] = 625, + [1103] = 626, + [1104] = 975, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, [1108] = 1108, - [1109] = 1109, - [1110] = 969, - [1111] = 1000, - [1112] = 1012, - [1113] = 1026, + [1109] = 975, + [1110] = 976, + [1111] = 977, + [1112] = 1051, + [1113] = 1113, [1114] = 1114, - [1115] = 1115, - [1116] = 970, - [1117] = 966, + [1115] = 618, + [1116] = 1116, + [1117] = 980, [1118] = 1118, - [1119] = 1119, - [1120] = 1120, + [1119] = 992, + [1120] = 997, [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 974, + [1122] = 999, + [1123] = 1054, + [1124] = 1035, + [1125] = 1001, [1126] = 1126, - [1127] = 986, + [1127] = 984, [1128] = 1128, - [1129] = 612, - [1130] = 621, - [1131] = 631, - [1132] = 1001, - [1133] = 987, - [1134] = 1134, - [1135] = 1135, - [1136] = 996, - [1137] = 997, - [1138] = 975, - [1139] = 976, - [1140] = 632, - [1141] = 1056, - [1142] = 1057, - [1143] = 1143, - [1144] = 1000, - [1145] = 1145, - [1146] = 1012, - [1147] = 1147, - [1148] = 987, - [1149] = 621, - [1150] = 1114, - [1151] = 1115, - [1152] = 1081, - [1153] = 640, - [1154] = 641, - [1155] = 644, - [1156] = 631, - [1157] = 632, - [1158] = 639, - [1159] = 1000, - [1160] = 1012, - [1161] = 1026, - [1162] = 630, - [1163] = 1073, - [1164] = 1083, - [1165] = 1143, - [1166] = 1089, - [1167] = 1145, - [1168] = 1056, - [1169] = 1057, - [1170] = 1058, - [1171] = 1084, - [1172] = 1049, - [1173] = 1095, - [1174] = 1118, - [1175] = 1119, - [1176] = 1120, - [1177] = 648, - [1178] = 1121, - [1179] = 642, - [1180] = 1147, - [1181] = 1091, - [1182] = 1093, - [1183] = 1098, - [1184] = 1108, - [1185] = 1109, - [1186] = 1126, - [1187] = 642, - [1188] = 1092, - [1189] = 1134, - [1190] = 1050, - [1191] = 649, - [1192] = 634, - [1193] = 636, - [1194] = 1114, - [1195] = 1115, - [1196] = 635, - [1197] = 637, - [1198] = 1081, - [1199] = 639, - [1200] = 1135, - [1201] = 616, - [1202] = 1073, - [1203] = 1083, - [1204] = 1089, - [1205] = 1084, - [1206] = 1049, - [1207] = 1095, - [1208] = 1143, - [1209] = 1145, - [1210] = 1118, - [1211] = 1119, - [1212] = 1120, - [1213] = 1121, - [1214] = 1001, - [1215] = 649, - [1216] = 1147, - [1217] = 1091, - [1218] = 1093, - [1219] = 1098, - [1220] = 1108, - [1221] = 1109, - [1222] = 1126, - [1223] = 1092, - [1224] = 1134, - [1225] = 1050, - [1226] = 1081, - [1227] = 1114, - [1228] = 1115, - [1229] = 1135, - [1230] = 634, - [1231] = 636, - [1232] = 1000, - [1233] = 1050, - [1234] = 1012, - [1235] = 1026, - [1236] = 1073, - [1237] = 1083, - [1238] = 996, - [1239] = 642, - [1240] = 649, - [1241] = 634, - [1242] = 636, - [1243] = 635, - [1244] = 637, - [1245] = 1089, - [1246] = 997, - [1247] = 1001, - [1248] = 639, - [1249] = 1135, - [1250] = 1084, - [1251] = 975, - [1252] = 976, - [1253] = 1015, - [1254] = 1143, - [1255] = 1145, - [1256] = 986, - [1257] = 987, - [1258] = 988, - [1259] = 973, - [1260] = 989, - [1261] = 990, - [1262] = 991, - [1263] = 974, - [1264] = 631, - [1265] = 632, - [1266] = 631, - [1267] = 632, - [1268] = 639, - [1269] = 639, - [1270] = 1049, - [1271] = 1095, - [1272] = 1118, - [1273] = 1119, - [1274] = 1120, - [1275] = 1121, - [1276] = 635, - [1277] = 616, - [1278] = 612, - [1279] = 621, - [1280] = 1001, - [1281] = 612, - [1282] = 637, - [1283] = 1000, - [1284] = 1012, - [1285] = 1026, - [1286] = 1015, - [1287] = 1147, - [1288] = 1091, - [1289] = 1015, - [1290] = 1093, - [1291] = 1098, - [1292] = 1058, - [1293] = 1134, - [1294] = 1108, - [1295] = 1109, + [1129] = 1129, + [1130] = 1001, + [1131] = 984, + [1132] = 1121, + [1133] = 637, + [1134] = 639, + [1135] = 625, + [1136] = 626, + [1137] = 627, + [1138] = 1126, + [1139] = 627, + [1140] = 1097, + [1141] = 627, + [1142] = 1084, + [1143] = 1121, + [1144] = 618, + [1145] = 1083, + [1146] = 1086, + [1147] = 1126, + [1148] = 1001, + [1149] = 1093, + [1150] = 641, + [1151] = 1128, + [1152] = 638, + [1153] = 1075, + [1154] = 628, + [1155] = 627, + [1156] = 1114, + [1157] = 1084, + [1158] = 1128, + [1159] = 1075, + [1160] = 1107, + [1161] = 1108, + [1162] = 1065, + [1163] = 1051, + [1164] = 1036, + [1165] = 1054, + [1166] = 1068, + [1167] = 1067, + [1168] = 1037, + [1169] = 1069, + [1170] = 609, + [1171] = 1045, + [1172] = 610, + [1173] = 1068, + [1174] = 636, + [1175] = 1083, + [1176] = 1086, + [1177] = 1083, + [1178] = 1093, + [1179] = 1078, + [1180] = 1066, + [1181] = 1052, + [1182] = 1105, + [1183] = 1106, + [1184] = 1044, + [1185] = 1129, + [1186] = 1065, + [1187] = 1113, + [1188] = 1116, + [1189] = 1118, + [1190] = 1067, + [1191] = 1069, + [1192] = 1086, + [1193] = 1097, + [1194] = 1121, + [1195] = 992, + [1196] = 997, + [1197] = 1045, + [1198] = 627, + [1199] = 1035, + [1200] = 1093, + [1201] = 999, + [1202] = 968, + [1203] = 639, + [1204] = 971, + [1205] = 1107, + [1206] = 1108, + [1207] = 637, + [1208] = 1114, + [1209] = 1114, + [1210] = 1128, + [1211] = 1035, + [1212] = 1078, + [1213] = 1065, + [1214] = 1067, + [1215] = 1069, + [1216] = 634, + [1217] = 974, + [1218] = 975, + [1219] = 976, + [1220] = 977, + [1221] = 984, + [1222] = 980, + [1223] = 981, + [1224] = 979, + [1225] = 634, + [1226] = 1045, + [1227] = 633, + [1228] = 1066, + [1229] = 635, + [1230] = 624, + [1231] = 629, + [1232] = 625, + [1233] = 626, + [1234] = 1052, + [1235] = 1105, + [1236] = 637, + [1237] = 639, + [1238] = 1084, + [1239] = 1106, + [1240] = 618, + [1241] = 1044, + [1242] = 968, + [1243] = 1001, + [1244] = 609, + [1245] = 610, + [1246] = 1129, + [1247] = 992, + [1248] = 971, + [1249] = 997, + [1250] = 999, + [1251] = 1078, + [1252] = 1113, + [1253] = 1066, + [1254] = 1052, + [1255] = 1105, + [1256] = 1106, + [1257] = 1116, + [1258] = 1118, + [1259] = 1044, + [1260] = 1129, + [1261] = 633, + [1262] = 1113, + [1263] = 1097, + [1264] = 1107, + [1265] = 1108, + [1266] = 1116, + [1267] = 1118, + [1268] = 1126, + [1269] = 974, + [1270] = 975, + [1271] = 976, + [1272] = 977, + [1273] = 635, + [1274] = 980, + [1275] = 981, + [1276] = 979, + [1277] = 624, + [1278] = 629, + [1279] = 1075, + [1280] = 1035, + [1281] = 637, + [1282] = 639, + [1283] = 1066, + [1284] = 1097, + [1285] = 625, + [1286] = 626, + [1287] = 1069, + [1288] = 1121, + [1289] = 1289, + [1290] = 634, + [1291] = 1291, + [1292] = 1114, + [1293] = 625, + [1294] = 1084, + [1295] = 1053, [1296] = 1126, - [1297] = 996, + [1297] = 992, [1298] = 997, - [1299] = 1092, - [1300] = 648, - [1301] = 648, - [1302] = 1049, - [1303] = 644, - [1304] = 631, - [1305] = 632, - [1306] = 1000, - [1307] = 1012, - [1308] = 1026, - [1309] = 1073, - [1310] = 1083, - [1311] = 1081, - [1312] = 1089, - [1313] = 1143, - [1314] = 1145, - [1315] = 1084, - [1316] = 1135, - [1317] = 1049, - [1318] = 1095, - [1319] = 1118, - [1320] = 1119, - [1321] = 1120, - [1322] = 631, - [1323] = 1121, - [1324] = 632, - [1325] = 1135, - [1326] = 630, - [1327] = 635, - [1328] = 1147, - [1329] = 1147, - [1330] = 1091, - [1331] = 1093, - [1332] = 1098, - [1333] = 1108, - [1334] = 1109, - [1335] = 1126, - [1336] = 1091, - [1337] = 1092, - [1338] = 1134, - [1339] = 1050, - [1340] = 1340, - [1341] = 1341, - [1342] = 1093, - [1343] = 1114, - [1344] = 1115, - [1345] = 1109, - [1346] = 1121, - [1347] = 1098, - [1348] = 1126, - [1349] = 1108, - [1350] = 1109, - [1351] = 1073, - [1352] = 637, - [1353] = 1083, - [1354] = 1126, - [1355] = 1108, - [1356] = 648, - [1357] = 1091, - [1358] = 1093, - [1359] = 1098, - [1360] = 1124, - [1361] = 642, - [1362] = 649, - [1363] = 634, - [1364] = 636, - [1365] = 635, - [1366] = 637, - [1367] = 1001, - [1368] = 639, - [1369] = 1015, - [1370] = 640, - [1371] = 641, - [1372] = 644, - [1373] = 1092, - [1374] = 639, - [1375] = 630, - [1376] = 1134, - [1377] = 1050, - [1378] = 1092, - [1379] = 1143, - [1380] = 1145, - [1381] = 643, - [1382] = 1134, - [1383] = 1114, - [1384] = 1115, - [1385] = 1115, - [1386] = 648, - [1387] = 1050, - [1388] = 1089, - [1389] = 1081, - [1390] = 1135, - [1391] = 640, - [1392] = 636, - [1393] = 641, - [1394] = 1118, - [1395] = 649, - [1396] = 644, - [1397] = 1084, - [1398] = 631, - [1399] = 632, - [1400] = 639, - [1401] = 1119, - [1402] = 639, - [1403] = 1120, - [1404] = 630, - [1405] = 1073, - [1406] = 1083, - [1407] = 1147, - [1408] = 1089, - [1409] = 1084, - [1410] = 634, - [1411] = 1049, - [1412] = 1143, - [1413] = 1095, - [1414] = 1145, - [1415] = 1095, - [1416] = 640, - [1417] = 642, - [1418] = 1081, - [1419] = 643, - [1420] = 1118, - [1421] = 1119, - [1422] = 1120, - [1423] = 641, - [1424] = 1121, - [1425] = 1122, - [1426] = 1123, - [1427] = 1114, - [1428] = 1121, - [1429] = 635, - [1430] = 637, - [1431] = 1073, - [1432] = 1083, - [1433] = 643, - [1434] = 1089, - [1435] = 639, - [1436] = 1143, - [1437] = 1145, - [1438] = 643, - [1439] = 1056, - [1440] = 1084, - [1441] = 1057, - [1442] = 1049, - [1443] = 1095, - [1444] = 1118, - [1445] = 1119, - [1446] = 1120, - [1447] = 634, - [1448] = 1056, - [1449] = 1057, - [1450] = 1058, - [1451] = 1135, - [1452] = 1058, - [1453] = 1147, - [1454] = 1091, - [1455] = 1056, - [1456] = 1093, - [1457] = 1098, - [1458] = 1108, - [1459] = 1109, - [1460] = 1126, - [1461] = 1057, - [1462] = 1081, - [1463] = 1058, - [1464] = 1092, - [1465] = 1134, - [1466] = 1050, - [1467] = 1114, - [1468] = 1115, - [1469] = 631, - [1470] = 632, - [1471] = 649, - [1472] = 648, - [1473] = 642, - [1474] = 636, - [1475] = 632, - [1476] = 648, - [1477] = 642, - [1478] = 649, - [1479] = 630, - [1480] = 639, - [1481] = 639, - [1482] = 639, - [1483] = 639, - [1484] = 644, - [1485] = 635, - [1486] = 634, - [1487] = 636, - [1488] = 1341, - [1489] = 640, - [1490] = 1340, - [1491] = 641, - [1492] = 637, - [1493] = 631, + [1299] = 999, + [1300] = 1001, + [1301] = 1128, + [1302] = 1075, + [1303] = 628, + [1304] = 627, + [1305] = 635, + [1306] = 1035, + [1307] = 632, + [1308] = 626, + [1309] = 1052, + [1310] = 1105, + [1311] = 634, + [1312] = 1045, + [1313] = 1107, + [1314] = 1108, + [1315] = 1065, + [1316] = 1067, + [1317] = 1069, + [1318] = 1106, + [1319] = 1046, + [1320] = 1128, + [1321] = 1045, + [1322] = 627, + [1323] = 624, + [1324] = 629, + [1325] = 641, + [1326] = 1084, + [1327] = 1078, + [1328] = 1044, + [1329] = 1036, + [1330] = 638, + [1331] = 628, + [1332] = 629, + [1333] = 1037, + [1334] = 1066, + [1335] = 1052, + [1336] = 1105, + [1337] = 1001, + [1338] = 636, + [1339] = 1113, + [1340] = 1116, + [1341] = 1106, + [1342] = 633, + [1343] = 1126, + [1344] = 1075, + [1345] = 1044, + [1346] = 641, + [1347] = 638, + [1348] = 628, + [1349] = 1083, + [1350] = 637, + [1351] = 639, + [1352] = 627, + [1353] = 992, + [1354] = 997, + [1355] = 633, + [1356] = 1078, + [1357] = 1129, + [1358] = 1118, + [1359] = 1086, + [1360] = 999, + [1361] = 636, + [1362] = 1083, + [1363] = 1086, + [1364] = 1065, + [1365] = 1113, + [1366] = 636, + [1367] = 1116, + [1368] = 1093, + [1369] = 1118, + [1370] = 1093, + [1371] = 635, + [1372] = 1097, + [1373] = 1121, + [1374] = 1067, + [1375] = 624, + [1376] = 1107, + [1377] = 641, + [1378] = 1108, + [1379] = 638, + [1380] = 1114, + [1381] = 1047, + [1382] = 1129, + [1383] = 1126, + [1384] = 629, + [1385] = 633, + [1386] = 637, + [1387] = 639, + [1388] = 625, + [1389] = 626, + [1390] = 1054, + [1391] = 1078, + [1392] = 1068, + [1393] = 1066, + [1394] = 1052, + [1395] = 1105, + [1396] = 1106, + [1397] = 1129, + [1398] = 1108, + [1399] = 1044, + [1400] = 1129, + [1401] = 1051, + [1402] = 1113, + [1403] = 1116, + [1404] = 1118, + [1405] = 1054, + [1406] = 1068, + [1407] = 1097, + [1408] = 1121, + [1409] = 1044, + [1410] = 627, + [1411] = 1126, + [1412] = 1121, + [1413] = 1084, + [1414] = 625, + [1415] = 634, + [1416] = 627, + [1417] = 1084, + [1418] = 1083, + [1419] = 632, + [1420] = 1086, + [1421] = 1051, + [1422] = 1051, + [1423] = 1054, + [1424] = 1068, + [1425] = 637, + [1426] = 1083, + [1427] = 1106, + [1428] = 626, + [1429] = 1114, + [1430] = 1093, + [1431] = 639, + [1432] = 1093, + [1433] = 629, + [1434] = 633, + [1435] = 1097, + [1436] = 1113, + [1437] = 1116, + [1438] = 1118, + [1439] = 1128, + [1440] = 635, + [1441] = 1114, + [1442] = 1075, + [1443] = 624, + [1444] = 1107, + [1445] = 1108, + [1446] = 1128, + [1447] = 1075, + [1448] = 1065, + [1449] = 1067, + [1450] = 1069, + [1451] = 634, + [1452] = 1045, + [1453] = 1065, + [1454] = 1067, + [1455] = 1069, + [1456] = 1045, + [1457] = 635, + [1458] = 624, + [1459] = 1107, + [1460] = 1078, + [1461] = 1066, + [1462] = 1052, + [1463] = 1105, + [1464] = 1086, + [1465] = 638, + [1466] = 1291, + [1467] = 635, + [1468] = 628, + [1469] = 637, + [1470] = 624, + [1471] = 639, + [1472] = 629, + [1473] = 627, + [1474] = 627, + [1475] = 636, + [1476] = 627, + [1477] = 627, + [1478] = 641, + [1479] = 625, + [1480] = 634, + [1481] = 632, + [1482] = 626, + [1483] = 633, + [1484] = 1289, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1487, + [1492] = 1492, + [1493] = 1493, [1494] = 1494, - [1495] = 1495, + [1495] = 1492, [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1498, - [1500] = 1496, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1497, - [1508] = 1498, - [1509] = 1501, - [1510] = 1496, - [1511] = 1501, - [1512] = 1503, - [1513] = 1504, - [1514] = 1502, - [1515] = 1503, - [1516] = 1504, - [1517] = 1502, - [1518] = 1505, - [1519] = 1506, - [1520] = 1497, - [1521] = 1498, - [1522] = 1505, - [1523] = 1506, - [1524] = 1505, - [1525] = 1496, - [1526] = 1501, - [1527] = 1497, - [1528] = 1502, - [1529] = 1503, - [1530] = 1504, - [1531] = 1506, + [1497] = 1489, + [1498] = 1487, + [1499] = 1493, + [1500] = 1500, + [1501] = 1488, + [1502] = 1490, + [1503] = 1488, + [1504] = 1494, + [1505] = 1492, + [1506] = 1489, + [1507] = 1494, + [1508] = 1500, + [1509] = 1488, + [1510] = 1493, + [1511] = 1496, + [1512] = 1489, + [1513] = 1500, + [1514] = 1496, + [1515] = 1492, + [1516] = 1493, + [1517] = 1490, + [1518] = 1490, + [1519] = 1496, + [1520] = 1494, + [1521] = 1500, + [1522] = 1487, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1523, + [1527] = 1523, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, + [1531] = 1530, [1532] = 1532, - [1533] = 1533, - [1534] = 1533, - [1535] = 1533, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1538, - [1541] = 1541, - [1542] = 1537, - [1543] = 1541, - [1544] = 1539, - [1545] = 1538, - [1546] = 1537, - [1547] = 1537, + [1533] = 1532, + [1534] = 1534, + [1535] = 1529, + [1536] = 1530, + [1537] = 1528, + [1538] = 1534, + [1539] = 1529, + [1540] = 1530, + [1541] = 1532, + [1542] = 1528, + [1543] = 1534, + [1544] = 1529, + [1545] = 1532, + [1546] = 1528, + [1547] = 1534, [1548] = 1548, - [1549] = 1548, - [1550] = 1541, - [1551] = 1548, - [1552] = 1548, - [1553] = 1539, - [1554] = 1538, - [1555] = 1539, - [1556] = 1541, - [1557] = 1557, - [1558] = 1558, - [1559] = 1559, - [1560] = 1558, - [1561] = 1558, - [1562] = 1559, - [1563] = 1559, - [1564] = 1564, - [1565] = 1559, - [1566] = 1558, - [1567] = 1567, - [1568] = 1567, - [1569] = 1564, - [1570] = 1567, - [1571] = 1567, - [1572] = 1564, - [1573] = 1564, - [1574] = 1564, - [1575] = 1567, - [1576] = 1564, - [1577] = 1567, - [1578] = 1564, - [1579] = 1567, - [1580] = 1567, + [1549] = 1549, + [1550] = 1550, + [1551] = 1551, + [1552] = 1549, + [1553] = 1551, + [1554] = 1549, + [1555] = 1551, + [1556] = 1556, + [1557] = 1549, + [1558] = 1551, + [1559] = 1550, + [1560] = 1556, + [1561] = 1556, + [1562] = 1550, + [1563] = 1550, + [1564] = 1556, + [1565] = 1550, + [1566] = 1556, + [1567] = 1556, + [1568] = 1550, + [1569] = 1291, + [1570] = 1556, + [1571] = 638, + [1572] = 1550, + [1573] = 1573, + [1574] = 628, + [1575] = 1575, + [1576] = 1289, + [1577] = 641, + [1578] = 636, + [1579] = 1556, + [1580] = 1550, [1581] = 1581, - [1582] = 1340, - [1583] = 1341, - [1584] = 640, - [1585] = 641, - [1586] = 644, - [1587] = 630, - [1588] = 1588, - [1589] = 1564, - [1590] = 1590, - [1591] = 632, - [1592] = 639, - [1593] = 631, - [1594] = 1594, - [1595] = 1595, + [1582] = 1582, + [1583] = 1583, + [1584] = 636, + [1585] = 638, + [1586] = 628, + [1587] = 636, + [1588] = 641, + [1589] = 638, + [1590] = 628, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1291, + [1595] = 636, [1596] = 1596, - [1597] = 1597, - [1598] = 640, - [1599] = 640, + [1597] = 1289, + [1598] = 641, + [1599] = 1583, [1600] = 641, - [1601] = 1340, - [1602] = 1341, - [1603] = 1596, - [1604] = 1597, - [1605] = 1594, - [1606] = 640, - [1607] = 641, - [1608] = 644, - [1609] = 630, - [1610] = 641, - [1611] = 631, - [1612] = 632, - [1613] = 644, - [1614] = 1614, - [1615] = 1341, + [1601] = 1289, + [1602] = 1291, + [1603] = 1583, + [1604] = 638, + [1605] = 1291, + [1606] = 1583, + [1607] = 1583, + [1608] = 1583, + [1609] = 628, + [1610] = 1583, + [1611] = 1583, + [1612] = 1583, + [1613] = 1583, + [1614] = 1289, + [1615] = 1581, [1616] = 1616, [1617] = 1617, - [1618] = 1340, - [1619] = 1341, - [1620] = 630, - [1621] = 644, - [1622] = 1616, - [1623] = 1616, - [1624] = 1616, - [1625] = 1616, - [1626] = 1616, - [1627] = 1616, + [1618] = 1591, + [1619] = 1593, + [1620] = 1616, + [1621] = 1592, + [1622] = 1596, + [1623] = 1582, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, [1628] = 1628, - [1629] = 1616, - [1630] = 639, - [1631] = 1616, - [1632] = 1616, - [1633] = 630, - [1634] = 1634, - [1635] = 1340, + [1629] = 1629, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 1633, + [1634] = 1633, + [1635] = 1633, [1636] = 1636, - [1637] = 1636, - [1638] = 1634, - [1639] = 1636, - [1640] = 1614, - [1641] = 1641, - [1642] = 1636, - [1643] = 1590, - [1644] = 1636, - [1645] = 1636, - [1646] = 1617, - [1647] = 1636, + [1637] = 1633, + [1638] = 1633, + [1639] = 1633, + [1640] = 1640, + [1641] = 1633, + [1642] = 1633, + [1643] = 1643, + [1644] = 1629, + [1645] = 1645, + [1646] = 1643, + [1647] = 1647, [1648] = 1648, - [1649] = 1648, - [1650] = 1628, - [1651] = 1651, - [1652] = 1651, - [1653] = 1595, - [1654] = 1636, - [1655] = 1648, - [1656] = 1656, - [1657] = 1657, - [1658] = 1657, - [1659] = 1659, - [1660] = 1660, - [1661] = 1659, - [1662] = 1662, - [1663] = 1663, - [1664] = 1662, - [1665] = 1665, - [1666] = 1666, - [1667] = 1665, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1665, - [1672] = 1672, - [1673] = 1665, - [1674] = 1665, - [1675] = 1665, - [1676] = 1676, + [1649] = 1645, + [1650] = 1647, + [1651] = 1643, + [1652] = 1647, + [1653] = 1648, + [1654] = 1645, + [1655] = 1643, + [1656] = 1647, + [1657] = 1648, + [1658] = 1645, + [1659] = 1648, + [1660] = 1640, + [1661] = 1647, + [1662] = 1648, + [1663] = 1648, + [1664] = 1643, + [1665] = 1645, + [1666] = 1643, + [1667] = 1645, + [1668] = 1648, + [1669] = 1645, + [1670] = 1632, + [1671] = 1643, + [1672] = 1647, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1674, [1677] = 1677, - [1678] = 1665, - [1679] = 1679, - [1680] = 1680, - [1681] = 1665, - [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, - [1686] = 1682, - [1687] = 1684, - [1688] = 1683, - [1689] = 1689, - [1690] = 1683, - [1691] = 1684, - [1692] = 1685, - [1693] = 1693, - [1694] = 1682, - [1695] = 1679, - [1696] = 1683, - [1697] = 1684, - [1698] = 1685, - [1699] = 1682, - [1700] = 1685, - [1701] = 1683, - [1702] = 1684, - [1703] = 1685, - [1704] = 1682, - [1705] = 1668, - [1706] = 1670, - [1707] = 1684, - [1708] = 1685, + [1678] = 1628, + [1679] = 1674, + [1680] = 1645, + [1681] = 1674, + [1682] = 1643, + [1683] = 1674, + [1684] = 1674, + [1685] = 1643, + [1686] = 1674, + [1687] = 1647, + [1688] = 1626, + [1689] = 1674, + [1690] = 1648, + [1691] = 1627, + [1692] = 1647, + [1693] = 1630, + [1694] = 1631, + [1695] = 1636, + [1696] = 1647, + [1697] = 1697, + [1698] = 1698, + [1699] = 1626, + [1700] = 1700, + [1701] = 1697, + [1702] = 1627, + [1703] = 1630, + [1704] = 1631, + [1705] = 1636, + [1706] = 1628, + [1707] = 1700, + [1708] = 1629, [1709] = 1709, - [1710] = 1682, - [1711] = 1683, - [1712] = 1684, - [1713] = 1685, - [1714] = 1682, - [1715] = 1683, - [1716] = 1684, - [1717] = 1685, - [1718] = 1682, - [1719] = 1683, - [1720] = 1684, - [1721] = 1721, - [1722] = 1677, - [1723] = 1721, - [1724] = 1680, - [1725] = 1721, - [1726] = 1676, - [1727] = 1721, - [1728] = 1721, - [1729] = 1672, - [1730] = 1721, - [1731] = 1721, - [1732] = 1721, - [1733] = 1666, - [1734] = 1669, - [1735] = 1683, - [1736] = 1668, - [1737] = 1737, - [1738] = 1679, - [1739] = 1676, + [1710] = 1700, + [1711] = 1700, + [1712] = 1700, + [1713] = 1700, + [1714] = 1640, + [1715] = 1700, + [1716] = 1716, + [1717] = 1717, + [1718] = 1697, + [1719] = 1719, + [1720] = 1700, + [1721] = 1632, + [1722] = 1719, + [1723] = 1698, + [1724] = 1630, + [1725] = 1636, + [1726] = 1631, + [1727] = 1636, + [1728] = 1728, + [1729] = 1729, + [1730] = 1628, + [1731] = 1629, + [1732] = 1640, + [1733] = 1632, + [1734] = 1629, + [1735] = 1735, + [1736] = 1736, + [1737] = 1626, + [1738] = 1735, + [1739] = 1736, [1740] = 1740, - [1741] = 1680, - [1742] = 1669, - [1743] = 1670, - [1744] = 1672, - [1745] = 1669, - [1746] = 1740, - [1747] = 1668, - [1748] = 1679, - [1749] = 1670, - [1750] = 1672, - [1751] = 1666, - [1752] = 1676, - [1753] = 1677, - [1754] = 1677, - [1755] = 1680, + [1741] = 1632, + [1742] = 1628, + [1743] = 1629, + [1744] = 1631, + [1745] = 1709, + [1746] = 1640, + [1747] = 1628, + [1748] = 1626, + [1749] = 1749, + [1750] = 1626, + [1751] = 1751, + [1752] = 1752, + [1753] = 1627, + [1754] = 1631, + [1755] = 1640, [1756] = 1756, - [1757] = 1666, - [1758] = 1758, - [1759] = 1672, - [1760] = 1679, - [1761] = 1668, - [1762] = 1762, - [1763] = 1680, - [1764] = 1666, - [1765] = 1680, - [1766] = 1677, - [1767] = 1740, - [1768] = 1679, - [1769] = 1769, + [1757] = 1749, + [1758] = 1636, + [1759] = 1751, + [1760] = 1760, + [1761] = 1761, + [1762] = 1632, + [1763] = 1630, + [1764] = 1627, + [1765] = 1630, + [1766] = 1627, + [1767] = 1767, + [1768] = 1768, + [1769] = 1631, [1770] = 1770, - [1771] = 1668, - [1772] = 1677, - [1773] = 1670, - [1774] = 1774, - [1775] = 1680, - [1776] = 1677, - [1777] = 1676, - [1778] = 1676, - [1779] = 1669, - [1780] = 1669, - [1781] = 1740, - [1782] = 1669, - [1783] = 1670, - [1784] = 1670, - [1785] = 1672, - [1786] = 1672, - [1787] = 1679, - [1788] = 1666, + [1771] = 1771, + [1772] = 1772, + [1773] = 1773, + [1774] = 1627, + [1775] = 1636, + [1776] = 1629, + [1777] = 1709, + [1778] = 1773, + [1779] = 1779, + [1780] = 1773, + [1781] = 1781, + [1782] = 1773, + [1783] = 1783, + [1784] = 1784, + [1785] = 1781, + [1786] = 1786, + [1787] = 1787, + [1788] = 1779, [1789] = 1789, - [1790] = 1790, - [1791] = 1668, - [1792] = 1666, - [1793] = 1676, - [1794] = 1774, - [1795] = 1795, + [1790] = 1773, + [1791] = 1772, + [1792] = 1773, + [1793] = 1632, + [1794] = 1794, + [1795] = 1729, [1796] = 1796, [1797] = 1797, [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1795, + [1799] = 1626, + [1800] = 1781, + [1801] = 1789, [1802] = 1802, - [1803] = 1803, - [1804] = 1680, - [1805] = 1805, + [1803] = 1728, + [1804] = 1773, + [1805] = 1628, [1806] = 1806, - [1807] = 1807, - [1808] = 1796, - [1809] = 1806, - [1810] = 1668, - [1811] = 1795, - [1812] = 1812, - [1813] = 1796, - [1814] = 1795, - [1815] = 1774, - [1816] = 1795, - [1817] = 1795, - [1818] = 1679, - [1819] = 1795, - [1820] = 1820, + [1807] = 1784, + [1808] = 1786, + [1809] = 1779, + [1810] = 1717, + [1811] = 1786, + [1812] = 1802, + [1813] = 1729, + [1814] = 1773, + [1815] = 1815, + [1816] = 1729, + [1817] = 1773, + [1818] = 1773, + [1819] = 1630, + [1820] = 1640, [1821] = 1821, - [1822] = 1822, - [1823] = 1821, + [1822] = 1632, + [1823] = 1823, [1824] = 1824, - [1825] = 1666, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, - [1829] = 1807, - [1830] = 1795, - [1831] = 1822, - [1832] = 1806, - [1833] = 1795, - [1834] = 1756, - [1835] = 1677, - [1836] = 1798, - [1837] = 1676, - [1838] = 1774, - [1839] = 1822, - [1840] = 1669, - [1841] = 1670, - [1842] = 1672, - [1843] = 1790, - [1844] = 1795, - [1845] = 1845, - [1846] = 1846, - [1847] = 1756, + [1825] = 1626, + [1826] = 1627, + [1827] = 1630, + [1828] = 1631, + [1829] = 1636, + [1830] = 1830, + [1831] = 1831, + [1832] = 1628, + [1833] = 1629, + [1834] = 1834, + [1835] = 1834, + [1836] = 1783, + [1837] = 1783, + [1838] = 1838, + [1839] = 1839, + [1840] = 1760, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1752, + [1845] = 1740, + [1846] = 1717, + [1847] = 1717, [1848] = 1848, - [1849] = 1849, + [1849] = 1760, [1850] = 1850, - [1851] = 1851, - [1852] = 1851, - [1853] = 1758, - [1854] = 1845, - [1855] = 1845, + [1851] = 1824, + [1852] = 1843, + [1853] = 1843, + [1854] = 1740, + [1855] = 1855, [1856] = 1856, - [1857] = 1851, - [1858] = 1820, - [1859] = 1789, - [1860] = 1846, - [1861] = 1861, - [1862] = 1862, - [1863] = 1756, - [1864] = 1864, - [1865] = 1865, - [1866] = 1762, + [1857] = 1857, + [1858] = 1824, + [1859] = 1830, + [1860] = 1831, + [1861] = 1843, + [1862] = 1783, + [1863] = 1843, + [1864] = 1843, + [1865] = 1843, + [1866] = 1752, [1867] = 1867, - [1868] = 1789, - [1869] = 1848, - [1870] = 1851, - [1871] = 1851, - [1872] = 1850, - [1873] = 1873, - [1874] = 1874, - [1875] = 1758, - [1876] = 1873, - [1877] = 1820, - [1878] = 1878, - [1879] = 1851, - [1880] = 1880, - [1881] = 1873, - [1882] = 1851, - [1883] = 1758, - [1884] = 1762, - [1885] = 1762, + [1868] = 1752, + [1869] = 1843, + [1870] = 1870, + [1871] = 1871, + [1872] = 1830, + [1873] = 1831, + [1874] = 1870, + [1875] = 1760, + [1876] = 1871, + [1877] = 1877, + [1878] = 1877, + [1879] = 1640, + [1880] = 1855, + [1881] = 1855, + [1882] = 1740, + [1883] = 1848, + [1884] = 1884, + [1885] = 1885, [1886] = 1886, - [1887] = 1880, - [1888] = 1849, - [1889] = 1851, - [1890] = 1880, - [1891] = 1891, - [1892] = 1789, - [1893] = 1846, - [1894] = 1820, + [1887] = 1887, + [1888] = 1888, + [1889] = 1768, + [1890] = 1890, + [1891] = 1756, + [1892] = 1892, + [1893] = 1893, + [1894] = 1894, [1895] = 1895, - [1896] = 1896, + [1896] = 1890, [1897] = 1897, - [1898] = 1790, + [1898] = 1898, [1899] = 1899, [1900] = 1900, - [1901] = 1789, - [1902] = 1902, - [1903] = 1874, + [1901] = 1582, + [1902] = 1893, + [1903] = 1903, [1904] = 1904, - [1905] = 1874, - [1906] = 1906, - [1907] = 1891, - [1908] = 1908, - [1909] = 1909, - [1910] = 1802, - [1911] = 1911, + [1905] = 1905, + [1906] = 1842, + [1907] = 1907, + [1908] = 1760, + [1909] = 1756, + [1910] = 1910, + [1911] = 1728, [1912] = 1912, - [1913] = 1913, + [1913] = 1887, [1914] = 1914, - [1915] = 1915, + [1915] = 1768, [1916] = 1916, [1917] = 1917, - [1918] = 1802, + [1918] = 1752, [1919] = 1919, - [1920] = 1920, + [1920] = 1905, [1921] = 1921, [1922] = 1922, - [1923] = 1909, - [1924] = 1924, - [1925] = 1916, + [1923] = 1892, + [1924] = 1887, + [1925] = 1925, [1926] = 1926, - [1927] = 1769, + [1927] = 1927, [1928] = 1928, - [1929] = 1908, - [1930] = 1802, - [1931] = 1931, - [1932] = 1904, + [1929] = 1900, + [1930] = 1842, + [1931] = 1898, + [1932] = 1932, [1933] = 1933, [1934] = 1934, - [1935] = 1917, - [1936] = 1900, - [1937] = 1891, - [1938] = 1909, + [1935] = 1771, + [1936] = 1936, + [1937] = 1937, + [1938] = 1898, [1939] = 1939, - [1940] = 1762, - [1941] = 1931, + [1940] = 1899, + [1941] = 1850, [1942] = 1942, - [1943] = 1911, - [1944] = 1803, - [1945] = 1945, - [1946] = 1891, - [1947] = 1947, - [1948] = 1948, + [1943] = 1943, + [1944] = 1928, + [1945] = 1885, + [1946] = 1884, + [1947] = 1899, + [1948] = 1756, [1949] = 1949, - [1950] = 1911, - [1951] = 1908, - [1952] = 1919, + [1950] = 1950, + [1951] = 1951, + [1952] = 1850, [1953] = 1953, [1954] = 1954, - [1955] = 1904, - [1956] = 1947, - [1957] = 1957, - [1958] = 1947, - [1959] = 1920, + [1955] = 1900, + [1956] = 1956, + [1957] = 1740, + [1958] = 1958, + [1959] = 1959, [1960] = 1960, [1961] = 1961, - [1962] = 1874, - [1963] = 1595, - [1964] = 1926, - [1965] = 1758, - [1966] = 1954, - [1967] = 1967, - [1968] = 1968, - [1969] = 1957, + [1962] = 1925, + [1963] = 1928, + [1964] = 1850, + [1965] = 1905, + [1966] = 1917, + [1967] = 1884, + [1968] = 1922, + [1969] = 1969, [1970] = 1970, - [1971] = 1926, + [1971] = 1958, [1972] = 1972, [1973] = 1973, - [1974] = 1931, + [1974] = 1917, [1975] = 1975, - [1976] = 1916, - [1977] = 1975, - [1978] = 1954, - [1979] = 1979, - [1980] = 1980, - [1981] = 1769, - [1982] = 1790, - [1983] = 1967, - [1984] = 1968, - [1985] = 1985, - [1986] = 1986, - [1987] = 1899, - [1988] = 1970, - [1989] = 1922, - [1990] = 1917, - [1991] = 1948, + [1976] = 1581, + [1977] = 1728, + [1978] = 1978, + [1979] = 1842, + [1980] = 1728, + [1981] = 1768, + [1982] = 1978, + [1983] = 1983, + [1984] = 1984, + [1985] = 1936, + [1986] = 1959, + [1987] = 1960, + [1988] = 1988, + [1989] = 1907, + [1990] = 1990, + [1991] = 1991, [1992] = 1992, - [1993] = 1957, - [1994] = 1590, + [1993] = 1993, + [1994] = 1994, [1995] = 1995, - [1996] = 1949, + [1996] = 1988, [1997] = 1997, - [1998] = 1911, - [1999] = 1790, - [2000] = 1769, - [2001] = 2001, - [2002] = 2002, - [2003] = 1902, - [2004] = 2004, + [1998] = 1998, + [1999] = 1999, + [2000] = 1969, + [2001] = 1992, + [2002] = 1934, + [2003] = 1983, + [2004] = 1937, [2005] = 2005, - [2006] = 2006, - [2007] = 1617, - [2008] = 1912, - [2009] = 1914, + [2006] = 1970, + [2007] = 1956, + [2008] = 1973, + [2009] = 2009, [2010] = 2010, - [2011] = 1922, + [2011] = 1993, [2012] = 2012, [2013] = 2013, [2014] = 2014, [2015] = 2015, - [2016] = 1933, - [2017] = 1979, - [2018] = 2005, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 1933, - [2024] = 1997, - [2025] = 1802, - [2026] = 2005, - [2027] = 2027, + [2016] = 1992, + [2017] = 1888, + [2018] = 1910, + [2019] = 1926, + [2020] = 1961, + [2021] = 1953, + [2022] = 1969, + [2023] = 1959, + [2024] = 1993, + [2025] = 1960, + [2026] = 2012, + [2027] = 1970, [2028] = 2028, - [2029] = 2029, - [2030] = 1967, - [2031] = 1947, - [2032] = 2032, - [2033] = 2005, - [2034] = 2034, - [2035] = 2035, + [2029] = 1970, + [2030] = 1973, + [2031] = 1830, + [2032] = 1992, + [2033] = 1921, + [2034] = 2014, + [2035] = 1932, [2036] = 2036, - [2037] = 2037, - [2038] = 2010, + [2037] = 1907, + [2038] = 1961, [2039] = 2039, [2040] = 2040, - [2041] = 2041, - [2042] = 2015, + [2041] = 1993, + [2042] = 2014, [2043] = 2043, - [2044] = 2021, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 1634, - [2049] = 2049, - [2050] = 2050, - [2051] = 2006, - [2052] = 2002, - [2053] = 2028, + [2044] = 1921, + [2045] = 1953, + [2046] = 1959, + [2047] = 1960, + [2048] = 2036, + [2049] = 1907, + [2050] = 1993, + [2051] = 2051, + [2052] = 1593, + [2053] = 2053, [2054] = 2054, - [2055] = 2055, + [2055] = 1993, [2056] = 2056, [2057] = 2057, - [2058] = 1972, - [2059] = 1895, - [2060] = 1980, - [2061] = 1967, - [2062] = 1968, - [2063] = 1972, - [2064] = 1919, - [2065] = 2065, - [2066] = 1895, - [2067] = 2067, + [2058] = 2058, + [2059] = 2059, + [2060] = 1768, + [2061] = 1993, + [2062] = 2062, + [2063] = 2063, + [2064] = 2064, + [2065] = 1990, + [2066] = 2036, + [2067] = 2056, [2068] = 2068, - [2069] = 1912, - [2070] = 2034, - [2071] = 2067, - [2072] = 1980, + [2069] = 2069, + [2070] = 2070, + [2071] = 1973, + [2072] = 2072, [2073] = 2073, - [2074] = 2010, + [2074] = 1991, [2075] = 2075, - [2076] = 1968, - [2077] = 1970, - [2078] = 1902, + [2076] = 1997, + [2077] = 2013, + [2078] = 1596, [2079] = 2079, - [2080] = 2054, - [2081] = 2015, - [2082] = 2021, - [2083] = 1922, - [2084] = 1902, - [2085] = 1912, - [2086] = 2073, - [2087] = 1914, - [2088] = 1614, - [2089] = 1873, - [2090] = 1970, - [2091] = 2005, - [2092] = 1917, - [2093] = 1914, - [2094] = 2068, - [2095] = 2073, - [2096] = 2005, - [2097] = 1909, - [2098] = 1919, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 1592, + [2084] = 2084, + [2085] = 1993, + [2086] = 2086, + [2087] = 2087, + [2088] = 2088, + [2089] = 1591, + [2090] = 2090, + [2091] = 2069, + [2092] = 2092, + [2093] = 2093, + [2094] = 1953, + [2095] = 2012, + [2096] = 2092, + [2097] = 2097, + [2098] = 2092, [2099] = 2099, [2100] = 2100, - [2101] = 1920, - [2102] = 2102, - [2103] = 2005, - [2104] = 2104, - [2105] = 1972, - [2106] = 1895, - [2107] = 2107, - [2108] = 2021, - [2109] = 1920, - [2110] = 2065, - [2111] = 1933, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, + [2101] = 2072, + [2102] = 1994, + [2103] = 1988, + [2104] = 1998, + [2105] = 2079, + [2106] = 1999, + [2107] = 2080, + [2108] = 2075, + [2109] = 1994, + [2110] = 2110, + [2111] = 2081, + [2112] = 2093, + [2113] = 2084, + [2114] = 1937, + [2115] = 2087, [2116] = 2116, [2117] = 2117, - [2118] = 2041, + [2118] = 2118, [2119] = 2119, [2120] = 2120, - [2121] = 1980, - [2122] = 1628, - [2123] = 2005, - [2124] = 2119, - [2125] = 2012, - [2126] = 2020, - [2127] = 2112, - [2128] = 2128, - [2129] = 2029, - [2130] = 2035, + [2121] = 2043, + [2122] = 2051, + [2123] = 2053, + [2124] = 2057, + [2125] = 2058, + [2126] = 2070, + [2127] = 2059, + [2128] = 2088, + [2129] = 2009, + [2130] = 2130, [2131] = 2131, - [2132] = 2040, - [2133] = 2043, - [2134] = 2050, - [2135] = 2041, - [2136] = 2055, - [2137] = 2012, - [2138] = 2102, - [2139] = 2107, - [2140] = 2004, - [2141] = 2113, - [2142] = 2115, - [2143] = 2116, - [2144] = 2119, - [2145] = 2120, - [2146] = 2014, - [2147] = 2022, - [2148] = 2027, - [2149] = 2045, - [2150] = 2047, - [2151] = 2019, - [2152] = 2020, + [2132] = 2082, + [2133] = 2133, + [2134] = 2072, + [2135] = 2079, + [2136] = 2136, + [2137] = 2080, + [2138] = 2081, + [2139] = 2084, + [2140] = 2087, + [2141] = 1926, + [2142] = 2093, + [2143] = 2092, + [2144] = 2093, + [2145] = 2070, + [2146] = 1984, + [2147] = 2086, + [2148] = 2075, + [2149] = 2088, + [2150] = 2082, + [2151] = 2043, + [2152] = 1998, [2153] = 2153, [2154] = 2154, [2155] = 2155, [2156] = 2156, - [2157] = 2157, - [2158] = 2032, + [2157] = 2119, + [2158] = 2136, [2159] = 2159, [2160] = 2160, - [2161] = 2161, + [2161] = 1936, [2162] = 2162, - [2163] = 2160, + [2163] = 2051, [2164] = 2164, - [2165] = 2112, - [2166] = 2029, - [2167] = 2035, - [2168] = 2040, - [2169] = 2043, - [2170] = 2050, - [2171] = 2041, - [2172] = 2055, - [2173] = 2173, - [2174] = 2012, + [2165] = 2164, + [2166] = 2166, + [2167] = 2167, + [2168] = 2053, + [2169] = 2057, + [2170] = 2070, + [2171] = 2171, + [2172] = 2172, + [2173] = 1984, + [2174] = 2174, [2175] = 2175, - [2176] = 2020, - [2177] = 2102, - [2178] = 2107, - [2179] = 2004, - [2180] = 2113, - [2181] = 2115, - [2182] = 2116, - [2183] = 2119, - [2184] = 2184, - [2185] = 2120, - [2186] = 2014, - [2187] = 2022, - [2188] = 2027, - [2189] = 2045, - [2190] = 2153, - [2191] = 2154, - [2192] = 2047, - [2193] = 2019, - [2194] = 2160, - [2195] = 2195, - [2196] = 2112, + [2176] = 2086, + [2177] = 2072, + [2178] = 2178, + [2179] = 2179, + [2180] = 2075, + [2181] = 2181, + [2182] = 2043, + [2183] = 2183, + [2184] = 2079, + [2185] = 2185, + [2186] = 2088, + [2187] = 2187, + [2188] = 2058, + [2189] = 2164, + [2190] = 2156, + [2191] = 2051, + [2192] = 2053, + [2193] = 2057, + [2194] = 2058, + [2195] = 1888, + [2196] = 2059, [2197] = 2197, - [2198] = 2036, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2153, - [2203] = 2154, - [2204] = 2160, - [2205] = 2104, - [2206] = 2029, - [2207] = 2131, - [2208] = 2035, - [2209] = 2209, - [2210] = 2040, - [2211] = 2043, - [2212] = 2050, - [2213] = 2055, - [2214] = 2114, - [2215] = 2215, + [2198] = 2198, + [2199] = 2080, + [2200] = 2082, + [2201] = 1984, + [2202] = 2086, + [2203] = 2081, + [2204] = 1910, + [2205] = 2119, + [2206] = 2206, + [2207] = 1999, + [2208] = 2136, + [2209] = 2084, + [2210] = 1988, + [2211] = 2211, + [2212] = 2062, + [2213] = 2087, + [2214] = 2064, + [2215] = 2073, [2216] = 2216, - [2217] = 2217, - [2218] = 2218, - [2219] = 2102, - [2220] = 2107, - [2221] = 2004, - [2222] = 2113, - [2223] = 2115, - [2224] = 2224, - [2225] = 2225, - [2226] = 2116, - [2227] = 2227, - [2228] = 2120, + [2217] = 2119, + [2218] = 2136, + [2219] = 2131, + [2220] = 1934, + [2221] = 2099, + [2222] = 1999, + [2223] = 2130, + [2224] = 1983, + [2225] = 1998, + [2226] = 2226, + [2227] = 1994, + [2228] = 2164, [2229] = 2229, - [2230] = 2230, + [2230] = 2059, [2231] = 2231, - [2232] = 2232, - [2233] = 2014, + [2232] = 2120, + [2233] = 2233, [2234] = 2234, - [2235] = 2022, - [2236] = 2027, - [2237] = 2037, + [2235] = 1581, + [2236] = 2236, + [2237] = 2237, [2238] = 2238, [2239] = 2239, - [2240] = 2045, - [2241] = 2153, - [2242] = 2047, - [2243] = 2019, - [2244] = 2154, + [2240] = 2240, + [2241] = 2234, + [2242] = 2242, + [2243] = 1956, + [2244] = 2244, [2245] = 2245, - [2246] = 2195, - [2247] = 2201, + [2246] = 2246, + [2247] = 2233, [2248] = 2248, - [2249] = 2224, + [2249] = 2246, [2250] = 2250, - [2251] = 2215, + [2251] = 2251, [2252] = 2252, [2253] = 2253, - [2254] = 2254, - [2255] = 2255, + [2254] = 2244, + [2255] = 2245, [2256] = 2256, - [2257] = 2257, - [2258] = 2258, - [2259] = 2259, + [2257] = 2110, + [2258] = 2118, + [2259] = 1933, [2260] = 2260, - [2261] = 2261, + [2261] = 2237, [2262] = 2262, - [2263] = 2261, - [2264] = 2264, + [2263] = 2133, + [2264] = 1939, [2265] = 2265, [2266] = 2266, [2267] = 2267, - [2268] = 2268, - [2269] = 2258, - [2270] = 2253, - [2271] = 2259, - [2272] = 2272, - [2273] = 2273, - [2274] = 2229, + [2268] = 2250, + [2269] = 2269, + [2270] = 2270, + [2271] = 2172, + [2272] = 2238, + [2273] = 1582, + [2274] = 2274, [2275] = 2275, - [2276] = 2276, + [2276] = 2097, [2277] = 2277, [2278] = 2278, - [2279] = 2279, + [2279] = 2233, [2280] = 2280, - [2281] = 2281, + [2281] = 2239, [2282] = 2282, [2283] = 2283, - [2284] = 2280, - [2285] = 2285, - [2286] = 2286, - [2287] = 2286, - [2288] = 2273, - [2289] = 2255, - [2290] = 2266, - [2291] = 2278, - [2292] = 2282, - [2293] = 2293, - [2294] = 2285, - [2295] = 1001, - [2296] = 2296, + [2284] = 2240, + [2285] = 2234, + [2286] = 2239, + [2287] = 2240, + [2288] = 2237, + [2289] = 2238, + [2290] = 2290, + [2291] = 2291, + [2292] = 2242, + [2293] = 2244, + [2294] = 2245, + [2295] = 2252, + [2296] = 2253, [2297] = 2297, - [2298] = 1979, + [2298] = 1942, [2299] = 2299, - [2300] = 2300, + [2300] = 2246, [2301] = 2301, - [2302] = 2162, - [2303] = 2275, - [2304] = 2304, - [2305] = 2300, - [2306] = 2254, - [2307] = 2257, - [2308] = 1961, - [2309] = 2264, - [2310] = 2261, + [2302] = 2250, + [2303] = 2252, + [2304] = 2253, + [2305] = 2242, + [2306] = 2306, + [2307] = 2172, + [2308] = 2097, + [2309] = 2242, + [2310] = 2260, [2311] = 2311, - [2312] = 2264, + [2312] = 1581, [2313] = 2265, - [2314] = 2267, - [2315] = 2265, - [2316] = 2316, - [2317] = 2317, - [2318] = 2273, - [2319] = 2275, - [2320] = 2320, - [2321] = 2276, - [2322] = 2277, - [2323] = 2002, - [2324] = 2280, - [2325] = 2325, - [2326] = 2326, - [2327] = 654, - [2328] = 2286, - [2329] = 2329, - [2330] = 2317, - [2331] = 2255, - [2332] = 2311, - [2333] = 2266, - [2334] = 2278, - [2335] = 2282, - [2336] = 1973, - [2337] = 1995, - [2338] = 2338, - [2339] = 653, - [2340] = 2285, - [2341] = 2255, - [2342] = 1897, + [2314] = 2266, + [2315] = 2315, + [2316] = 2267, + [2317] = 2269, + [2318] = 2244, + [2319] = 2245, + [2320] = 2233, + [2321] = 2274, + [2322] = 2322, + [2323] = 2323, + [2324] = 2324, + [2325] = 1943, + [2326] = 2282, + [2327] = 1951, + [2328] = 2299, + [2329] = 2234, + [2330] = 2330, + [2331] = 2237, + [2332] = 2238, + [2333] = 1954, + [2334] = 651, + [2335] = 2242, + [2336] = 647, + [2337] = 2117, + [2338] = 2244, + [2339] = 2245, + [2340] = 2155, + [2341] = 2233, + [2342] = 2322, [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2300, - [2347] = 2254, - [2348] = 2304, - [2349] = 2254, - [2350] = 2280, - [2351] = 2266, - [2352] = 2257, - [2353] = 2267, - [2354] = 2261, - [2355] = 1979, - [2356] = 2356, - [2357] = 2264, - [2358] = 2265, - [2359] = 2267, - [2360] = 2278, - [2361] = 2282, - [2362] = 2273, - [2363] = 2363, - [2364] = 2275, - [2365] = 2276, - [2366] = 2277, - [2367] = 1015, - [2368] = 2368, - [2369] = 2227, - [2370] = 2161, - [2371] = 2162, - [2372] = 2218, - [2373] = 2164, - [2374] = 2300, - [2375] = 1979, - [2376] = 2304, - [2377] = 2368, - [2378] = 2378, - [2379] = 2254, - [2380] = 1590, - [2381] = 2257, - [2382] = 2338, - [2383] = 2230, - [2384] = 2261, - [2385] = 2264, - [2386] = 2265, + [2344] = 2246, + [2345] = 2246, + [2346] = 2250, + [2347] = 2347, + [2348] = 2252, + [2349] = 2253, + [2350] = 2250, + [2351] = 1932, + [2352] = 2252, + [2353] = 2253, + [2354] = 2315, + [2355] = 2166, + [2356] = 2167, + [2357] = 2174, + [2358] = 2248, + [2359] = 2282, + [2360] = 2360, + [2361] = 2361, + [2362] = 2362, + [2363] = 2234, + [2364] = 2362, + [2365] = 2361, + [2366] = 2237, + [2367] = 2167, + [2368] = 2238, + [2369] = 2369, + [2370] = 2242, + [2371] = 2256, + [2372] = 2244, + [2373] = 2245, + [2374] = 2369, + [2375] = 2233, + [2376] = 2376, + [2377] = 2377, + [2378] = 2246, + [2379] = 2270, + [2380] = 2250, + [2381] = 2252, + [2382] = 2253, + [2383] = 2383, + [2384] = 649, + [2385] = 2277, + [2386] = 2266, [2387] = 2387, - [2388] = 2267, - [2389] = 2002, - [2390] = 2276, - [2391] = 2273, - [2392] = 2001, - [2393] = 2275, - [2394] = 2276, - [2395] = 2277, - [2396] = 2273, - [2397] = 2397, - [2398] = 1921, - [2399] = 1942, - [2400] = 2256, - [2401] = 2275, - [2402] = 659, - [2403] = 2300, - [2404] = 2304, - [2405] = 2002, - [2406] = 2254, - [2407] = 2277, - [2408] = 2257, - [2409] = 2261, - [2410] = 2285, - [2411] = 2411, - [2412] = 2264, - [2413] = 2265, - [2414] = 2267, - [2415] = 2415, - [2416] = 2273, - [2417] = 2299, - [2418] = 2275, - [2419] = 2343, - [2420] = 2276, - [2421] = 2277, - [2422] = 2422, - [2423] = 2423, - [2424] = 2378, + [2388] = 2282, + [2389] = 2282, + [2390] = 1956, + [2391] = 2234, + [2392] = 2237, + [2393] = 653, + [2394] = 2238, + [2395] = 2267, + [2396] = 1001, + [2397] = 2242, + [2398] = 2244, + [2399] = 2245, + [2400] = 2172, + [2401] = 2233, + [2402] = 2097, + [2403] = 2403, + [2404] = 2269, + [2405] = 2246, + [2406] = 2250, + [2407] = 646, + [2408] = 2252, + [2409] = 2253, + [2410] = 2290, + [2411] = 2323, + [2412] = 1581, + [2413] = 2237, + [2414] = 2282, + [2415] = 2166, + [2416] = 2234, + [2417] = 2417, + [2418] = 2167, + [2419] = 2237, + [2420] = 2174, + [2421] = 2421, + [2422] = 2238, + [2423] = 2260, + [2424] = 2242, [2425] = 2425, - [2426] = 2225, - [2427] = 656, - [2428] = 2304, - [2429] = 2300, - [2430] = 2304, - [2431] = 2257, - [2432] = 2432, - [2433] = 2254, - [2434] = 2257, - [2435] = 2261, - [2436] = 2436, - [2437] = 2387, - [2438] = 2264, - [2439] = 2265, - [2440] = 2267, - [2441] = 2441, - [2442] = 2442, - [2443] = 2273, - [2444] = 2275, - [2445] = 2276, - [2446] = 2277, - [2447] = 2276, + [2426] = 2244, + [2427] = 2245, + [2428] = 2428, + [2429] = 2233, + [2430] = 2430, + [2431] = 2246, + [2432] = 2250, + [2433] = 2322, + [2434] = 2252, + [2435] = 2253, + [2436] = 2291, + [2437] = 2437, + [2438] = 2438, + [2439] = 2439, + [2440] = 2233, + [2441] = 2252, + [2442] = 2253, + [2443] = 2256, + [2444] = 2233, + [2445] = 2252, + [2446] = 2253, + [2447] = 2265, [2448] = 2448, - [2449] = 2449, - [2450] = 2267, - [2451] = 2276, - [2452] = 2277, - [2453] = 2216, - [2454] = 2217, - [2455] = 2161, - [2456] = 2267, - [2457] = 2300, - [2458] = 2276, - [2459] = 2277, - [2460] = 2338, - [2461] = 2162, - [2462] = 2277, - [2463] = 2300, - [2464] = 1617, - [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2469, - [2470] = 2304, - [2471] = 2293, + [2449] = 2324, + [2450] = 2266, + [2451] = 2267, + [2452] = 2278, + [2453] = 2262, + [2454] = 1035, + [2455] = 2238, + [2456] = 2269, + [2457] = 2236, + [2458] = 2458, + [2459] = 2459, + [2460] = 2438, + [2461] = 2428, + [2462] = 2462, + [2463] = 2278, + [2464] = 2260, + [2465] = 2343, + [2466] = 2377, + [2467] = 2275, + [2468] = 2280, + [2469] = 2448, + [2470] = 2458, + [2471] = 2283, [2472] = 2472, - [2473] = 2473, - [2474] = 2356, - [2475] = 2368, - [2476] = 2320, - [2477] = 2397, - [2478] = 2286, - [2479] = 2411, - [2480] = 2254, - [2481] = 2164, - [2482] = 2425, - [2483] = 2469, - [2484] = 2293, - [2485] = 2257, - [2486] = 1595, - [2487] = 1960, - [2488] = 2258, - [2489] = 2259, - [2490] = 2449, - [2491] = 2268, - [2492] = 2261, - [2493] = 2225, - [2494] = 2363, - [2495] = 2297, - [2496] = 2225, - [2497] = 1590, - [2498] = 2469, - [2499] = 2304, - [2500] = 2264, - [2501] = 2265, - [2502] = 2415, - [2503] = 2425, - [2504] = 650, - [2505] = 2267, - [2506] = 1590, - [2507] = 2468, - [2508] = 2423, - [2509] = 2329, - [2510] = 2262, - [2511] = 2279, - [2512] = 2467, - [2513] = 2513, - [2514] = 2422, - [2515] = 2515, - [2516] = 2516, + [2473] = 2458, + [2474] = 2428, + [2475] = 2347, + [2476] = 1949, + [2477] = 1932, + [2478] = 2274, + [2479] = 2178, + [2480] = 1932, + [2481] = 2181, + [2482] = 2482, + [2483] = 2483, + [2484] = 2484, + [2485] = 2262, + [2486] = 1897, + [2487] = 2403, + [2488] = 1956, + [2489] = 2282, + [2490] = 2274, + [2491] = 2234, + [2492] = 2282, + [2493] = 2439, + [2494] = 2482, + [2495] = 2265, + [2496] = 1591, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 646, + [2504] = 2502, + [2505] = 2505, + [2506] = 2506, + [2507] = 2507, + [2508] = 2497, + [2509] = 2509, + [2510] = 2510, + [2511] = 2511, + [2512] = 2063, + [2513] = 2497, + [2514] = 2500, + [2515] = 649, + [2516] = 2497, [2517] = 2517, - [2518] = 2515, - [2519] = 2049, - [2520] = 2520, - [2521] = 2521, + [2518] = 2500, + [2519] = 2511, + [2520] = 2507, + [2521] = 2063, [2522] = 2522, - [2523] = 2436, - [2524] = 2524, - [2525] = 2049, + [2523] = 2523, + [2524] = 1591, + [2525] = 2511, [2526] = 2526, [2527] = 2527, [2528] = 2528, [2529] = 2529, - [2530] = 656, + [2530] = 2530, [2531] = 2531, [2532] = 2532, - [2533] = 2533, - [2534] = 2531, + [2533] = 2522, + [2534] = 2534, [2535] = 2535, - [2536] = 2533, - [2537] = 2535, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 2516, + [2536] = 1593, + [2537] = 2507, + [2538] = 1592, + [2539] = 1593, + [2540] = 2500, + [2541] = 1596, [2542] = 2542, - [2543] = 2515, + [2543] = 2543, [2544] = 2544, [2545] = 2545, - [2546] = 2524, - [2547] = 2547, - [2548] = 2538, - [2549] = 2049, + [2546] = 2546, + [2547] = 651, + [2548] = 2548, + [2549] = 2549, [2550] = 2550, [2551] = 2551, [2552] = 2552, - [2553] = 2553, - [2554] = 2554, - [2555] = 1617, - [2556] = 2524, - [2557] = 2557, + [2553] = 2498, + [2554] = 2063, + [2555] = 2555, + [2556] = 2511, + [2557] = 653, [2558] = 2558, - [2559] = 2559, - [2560] = 2547, - [2561] = 2561, - [2562] = 2562, - [2563] = 2531, - [2564] = 2564, - [2565] = 2551, - [2566] = 2566, - [2567] = 2567, + [2559] = 2510, + [2560] = 1596, + [2561] = 2542, + [2562] = 2558, + [2563] = 2499, + [2564] = 2507, + [2565] = 2501, + [2566] = 647, + [2567] = 2534, [2568] = 2568, - [2569] = 650, + [2569] = 2569, [2570] = 2570, - [2571] = 2535, - [2572] = 2572, + [2571] = 2571, + [2572] = 2425, [2573] = 2573, - [2574] = 2574, - [2575] = 2533, + [2574] = 2437, + [2575] = 2575, [2576] = 2576, - [2577] = 2577, - [2578] = 2578, - [2579] = 2538, - [2580] = 2542, - [2581] = 2531, - [2582] = 2582, + [2577] = 2551, + [2578] = 2552, + [2579] = 2498, + [2580] = 1592, + [2581] = 2551, + [2582] = 2552, [2583] = 2583, - [2584] = 2542, - [2585] = 2527, + [2584] = 2584, + [2585] = 2585, [2586] = 2586, [2587] = 2587, - [2588] = 2587, - [2589] = 2572, - [2590] = 2524, + [2588] = 2588, + [2589] = 2589, + [2590] = 2590, [2591] = 2591, - [2592] = 2515, - [2593] = 659, - [2594] = 2533, + [2592] = 2592, + [2593] = 2593, + [2594] = 2594, [2595] = 2595, - [2596] = 1628, - [2597] = 1628, + [2596] = 2596, + [2597] = 2592, [2598] = 2598, - [2599] = 1634, - [2600] = 2586, - [2601] = 1634, - [2602] = 2602, - [2603] = 654, + [2599] = 2599, + [2600] = 2600, + [2601] = 2601, + [2602] = 2596, + [2603] = 2595, [2604] = 2604, - [2605] = 653, - [2606] = 2432, - [2607] = 2553, - [2608] = 2608, - [2609] = 2602, - [2610] = 2545, - [2611] = 1614, - [2612] = 1614, + [2605] = 2605, + [2606] = 2606, + [2607] = 2605, + [2608] = 2595, + [2609] = 2609, + [2610] = 2610, + [2611] = 2611, + [2612] = 2606, [2613] = 2613, [2614] = 2614, [2615] = 2615, - [2616] = 2616, - [2617] = 2617, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, + [2616] = 2593, + [2617] = 2604, + [2618] = 2596, + [2619] = 2614, + [2620] = 2593, [2621] = 2621, [2622] = 2622, [2623] = 2623, - [2624] = 2624, + [2624] = 2610, [2625] = 2625, - [2626] = 2620, - [2627] = 2627, - [2628] = 2628, - [2629] = 2629, - [2630] = 2630, + [2626] = 2611, + [2627] = 2592, + [2628] = 2615, + [2629] = 2615, + [2630] = 2592, [2631] = 2631, - [2632] = 2632, - [2633] = 2616, - [2634] = 2634, - [2635] = 2628, + [2632] = 2600, + [2633] = 2604, + [2634] = 2601, + [2635] = 2595, [2636] = 2636, - [2637] = 2623, - [2638] = 2638, + [2637] = 2637, + [2638] = 2605, [2639] = 2639, - [2640] = 2640, - [2641] = 2632, - [2642] = 2636, - [2643] = 2615, - [2644] = 2628, - [2645] = 2630, - [2646] = 2617, - [2647] = 2618, - [2648] = 2619, - [2649] = 2630, - [2650] = 2650, - [2651] = 2651, - [2652] = 2652, + [2640] = 2600, + [2641] = 2641, + [2642] = 2595, + [2643] = 2601, + [2644] = 2604, + [2645] = 2645, + [2646] = 2605, + [2647] = 2647, + [2648] = 2605, + [2649] = 2604, + [2650] = 2605, + [2651] = 2601, + [2652] = 2595, [2653] = 2653, - [2654] = 2622, - [2655] = 2623, - [2656] = 2622, - [2657] = 2638, - [2658] = 2615, - [2659] = 2615, - [2660] = 2620, - [2661] = 2620, + [2654] = 2595, + [2655] = 2601, + [2656] = 2595, + [2657] = 2657, + [2658] = 2610, + [2659] = 2611, + [2660] = 2621, + [2661] = 2661, [2662] = 2662, - [2663] = 2663, - [2664] = 2628, - [2665] = 2652, - [2666] = 2629, - [2667] = 2618, - [2668] = 2628, + [2663] = 2631, + [2664] = 2664, + [2665] = 2665, + [2666] = 2657, + [2667] = 2610, + [2668] = 2668, [2669] = 2669, - [2670] = 2620, - [2671] = 2619, - [2672] = 2630, - [2673] = 2650, - [2674] = 2622, - [2675] = 2623, - [2676] = 2632, - [2677] = 2616, - [2678] = 2630, - [2679] = 2679, - [2680] = 2680, - [2681] = 2681, - [2682] = 2620, - [2683] = 2636, - [2684] = 2630, - [2685] = 2618, - [2686] = 2624, - [2687] = 2628, + [2670] = 2614, + [2671] = 2671, + [2672] = 2611, + [2673] = 2615, + [2674] = 2593, + [2675] = 2675, + [2676] = 2665, + [2677] = 2600, + [2678] = 2678, + [2679] = 2596, + [2680] = 2600, + [2681] = 2621, + [2682] = 2682, + [2683] = 2683, + [2684] = 2591, + [2685] = 2594, + [2686] = 2657, + [2687] = 2606, [2688] = 2688, - [2689] = 2629, - [2690] = 2622, - [2691] = 2615, - [2692] = 2650, - [2693] = 2651, - [2694] = 2650, - [2695] = 2629, - [2696] = 2620, - [2697] = 2697, - [2698] = 2698, - [2699] = 2632, - [2700] = 2700, + [2689] = 2604, + [2690] = 2641, + [2691] = 2592, + [2692] = 2622, + [2693] = 2664, + [2694] = 2694, + [2695] = 2613, + [2696] = 2696, + [2697] = 2614, + [2698] = 2615, + [2699] = 2699, + [2700] = 2601, [2701] = 2701, - [2702] = 2702, - [2703] = 2616, - [2704] = 2615, - [2705] = 2679, - [2706] = 2706, - [2707] = 2707, - [2708] = 2636, - [2709] = 2709, - [2710] = 2710, - [2711] = 2711, - [2712] = 2623, - [2713] = 2652, - [2714] = 2714, - [2715] = 2636, - [2716] = 2716, - [2717] = 2716, - [2718] = 2652, - [2719] = 2652, - [2720] = 2720, - [2721] = 2721, - [2722] = 2629, - [2723] = 2618, - [2724] = 2618, - [2725] = 2619, - [2726] = 2638, - [2727] = 2710, - [2728] = 2728, - [2729] = 2622, - [2730] = 2730, - [2731] = 2619, - [2732] = 2732, - [2733] = 2733, - [2734] = 2700, - [2735] = 2614, - [2736] = 2709, - [2737] = 2623, - [2738] = 2721, - [2739] = 2632, - [2740] = 2622, - [2741] = 2716, - [2742] = 2620, - [2743] = 2623, - [2744] = 2720, - [2745] = 2614, - [2746] = 2746, + [2702] = 2610, + [2703] = 2703, + [2704] = 2704, + [2705] = 2631, + [2706] = 2600, + [2707] = 2637, + [2708] = 2601, + [2709] = 2596, + [2710] = 2625, + [2711] = 2611, + [2712] = 2668, + [2713] = 2610, + [2714] = 2611, + [2715] = 2715, + [2716] = 2604, + [2717] = 2717, + [2718] = 2605, + [2719] = 2591, + [2720] = 2611, + [2721] = 2622, + [2722] = 2662, + [2723] = 2704, + [2724] = 2614, + [2725] = 2631, + [2726] = 2595, + [2727] = 2600, + [2728] = 2596, + [2729] = 2621, + [2730] = 2615, + [2731] = 2682, + [2732] = 2657, + [2733] = 2675, + [2734] = 2734, + [2735] = 2609, + [2736] = 2610, + [2737] = 2661, + [2738] = 2625, + [2739] = 2739, + [2740] = 2614, + [2741] = 2604, + [2742] = 2605, + [2743] = 2611, + [2744] = 2688, + [2745] = 2596, + [2746] = 2615, [2747] = 2747, - [2748] = 2616, - [2749] = 2628, - [2750] = 2638, - [2751] = 2620, - [2752] = 2622, - [2753] = 2616, - [2754] = 2620, - [2755] = 2623, - [2756] = 2756, - [2757] = 2680, - [2758] = 2663, - [2759] = 2629, - [2760] = 2702, - [2761] = 2618, - [2762] = 2629, - [2763] = 2632, - [2764] = 2616, - [2765] = 2614, - [2766] = 2628, - [2767] = 2680, - [2768] = 2768, - [2769] = 2769, - [2770] = 2636, - [2771] = 2746, - [2772] = 2697, - [2773] = 2650, - [2774] = 2669, - [2775] = 2700, - [2776] = 2629, - [2777] = 2711, - [2778] = 2615, - [2779] = 2619, - [2780] = 2636, - [2781] = 2630, - [2782] = 2636, - [2783] = 2709, - [2784] = 2707, - [2785] = 2619, - [2786] = 2630, - [2787] = 2721, - [2788] = 2632, - [2789] = 2632, - [2790] = 2615, - [2791] = 2616, - [2792] = 2769, - [2793] = 2680, - [2794] = 2698, - [2795] = 2795, - [2796] = 2716, - [2797] = 2688, - [2798] = 2798, - [2799] = 2618, - [2800] = 2714, - [2801] = 2681, - [2802] = 2701, - [2803] = 2803, - [2804] = 2795, - [2805] = 2701, - [2806] = 2798, - [2807] = 2619, - [2808] = 2614, + [2748] = 2593, + [2749] = 2749, + [2750] = 2637, + [2751] = 2751, + [2752] = 2752, + [2753] = 2734, + [2754] = 2671, + [2755] = 2657, + [2756] = 2631, + [2757] = 2703, + [2758] = 2678, + [2759] = 2614, + [2760] = 2615, + [2761] = 2761, + [2762] = 2762, + [2763] = 2592, + [2764] = 2621, + [2765] = 2765, + [2766] = 2752, + [2767] = 2593, + [2768] = 2625, + [2769] = 2593, + [2770] = 2717, + [2771] = 2592, + [2772] = 2595, + [2773] = 2704, + [2774] = 2751, + [2775] = 2694, + [2776] = 2600, + [2777] = 2593, + [2778] = 2610, + [2779] = 2779, + [2780] = 2599, + [2781] = 2761, + [2782] = 2762, + [2783] = 2601, + [2784] = 2747, + [2785] = 2669, + [2786] = 2762, + [2787] = 2596, + [2788] = 2592, + [2789] = 2614, }; -static TSCharacterRange sym_identifier_character_set_1[] = { +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_expression, + sym_pattern, + sym_primary_expression, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_expression] = {.index = 0, .length = 8}, + [sym_pattern] = {.index = 8, .length = 6}, + [sym_primary_expression] = {.index = 14, .length = 25}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_as_pattern, + sym_boolean_operator, + sym_comparison_operator, + sym_conditional_expression, + sym_lambda, + sym_named_expression, + sym_not_operator, + sym_primary_expression, + [8] = + sym_attribute, + sym_identifier, + sym_list_pattern, + sym_list_splat_pattern, + sym_subscript, + sym_tuple_pattern, + [14] = + sym_attribute, + sym_await, + sym_binary_operator, + sym_call, + sym_concatenated_string, + sym_dictionary, + sym_dictionary_comprehension, + sym_ellipsis, + sym_false, + sym_float, + sym_generator_expression, + sym_identifier, + sym_integer, + sym_list, + sym_list_comprehension, + sym_list_splat, + sym_none, + sym_parenthesized_expression, + sym_set, + sym_set_comprehension, + sym_string, + sym_subscript, + sym_true, + sym_tuple, + sym_unary_operator, +}; + +static const TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -5620,7 +5641,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, - {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, @@ -5630,7 +5651,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, @@ -5644,48 +5665,50 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, - {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, - {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, - {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, - {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, - {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, - {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, - {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, - {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, - {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, - {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, - {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, - {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, - {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, - {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, - {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, - {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, + {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, + {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, + {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, + {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, + {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, + {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, + {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, + {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static TSCharacterRange sym_identifier_character_set_2[] = { +static const TSCharacterRange sym_identifier_character_set_2[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, - {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, @@ -5713,7 +5736,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, - {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, @@ -5724,7 +5747,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, - {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, @@ -5737,39 +5760,42 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, - {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, - {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, - {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, - {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, - {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, - {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, - {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, - {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, - {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, - {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, - {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, - {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, + {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, + {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, + {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, + {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, + {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, - {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, - {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, - {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, - {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, - {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, - {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, + {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, + {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, + {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, + {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, @@ -5819,7 +5845,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(51); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(168); @@ -5862,7 +5888,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(113); if (lookahead == '@') ADVANCE(82); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == '^') ADVANCE(101); if (lookahead == '{') ADVANCE(88); if (lookahead == '|') ADVANCE(87); @@ -5873,7 +5899,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); @@ -5897,7 +5923,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(114); if (lookahead == '@') ADVANCE(81); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(80); if (lookahead == '^') ADVANCE(100); if (lookahead == '{') ADVANCE(88); @@ -5910,10 +5936,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(5); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(167); + if (lookahead == '%') ADVANCE(94); + if (lookahead == '&') ADVANCE(98); + if (lookahead == '(') ADVANCE(59); + if (lookahead == '*') ADVANCE(64); + if (lookahead == '+') ADVANCE(90); + if (lookahead == ',') ADVANCE(61); + if (lookahead == '-') ADVANCE(83); + if (lookahead == '.') ADVANCE(58); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '0') ADVANCE(139); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(56); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(114); + if (lookahead == '@') ADVANCE(81); + if (lookahead == '[') ADVANCE(79); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == ']') ADVANCE(80); + if (lookahead == '^') ADVANCE(100); + if (lookahead == '{') ADVANCE(88); + if (lookahead == '|') ADVANCE(86); + if (lookahead == '}') ADVANCE(89); + if (lookahead == '~') ADVANCE(104); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); + END_STATE(); + case 7: + if (lookahead == '\r') SKIP(7); if (lookahead == '#') ADVANCE(167); if (lookahead == '%') ADVANCE(21); if (lookahead == '&') ADVANCE(22); @@ -5931,7 +5993,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(31); if (lookahead == '@') ADVANCE(23); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == '^') ADVANCE(24); if (lookahead == '{') ADVANCE(88); if (lookahead == '|') ADVANCE(25); @@ -5940,12 +6002,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(6); + lookahead == 0xfeff) SKIP(7); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); - case 7: - if (lookahead == '\r') SKIP(7); + case 8: + if (lookahead == '\r') SKIP(8); if (lookahead == '!') ADVANCE(19); if (lookahead == '#') ADVANCE(167); if (lookahead == '%') ADVANCE(95); @@ -5965,7 +6027,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(113); if (lookahead == '@') ADVANCE(82); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(80); if (lookahead == '^') ADVANCE(101); if (lookahead == '|') ADVANCE(87); @@ -5974,17 +6036,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(7); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + lookahead == 0xfeff) SKIP(8); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); - case 8: - if (lookahead == '\r') SKIP(8); + case 9: + if (lookahead == '\r') SKIP(9); if (lookahead == '!') ADVANCE(19); if (lookahead == '#') ADVANCE(167); if (lookahead == '%') ADVANCE(95); if (lookahead == '&') ADVANCE(99); if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(91); if (lookahead == ',') ADVANCE(61); @@ -5998,7 +6059,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(113); if (lookahead == '@') ADVANCE(82); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(80); if (lookahead == '^') ADVANCE(101); if (lookahead == '|') ADVANCE(87); @@ -6006,30 +6067,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(8); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + lookahead == 0xfeff) SKIP(9); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); - case 9: - if (lookahead == '\r') SKIP(9); + case 10: + if (lookahead == '\r') SKIP(10); if (lookahead == '#') ADVANCE(167); if (lookahead == '-') ADVANCE(30); if (lookahead == ':') ADVANCE(69); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == 'e') ADVANCE(163); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(9); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + lookahead == 0xfeff) SKIP(10); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); - case 10: + case 11: if (lookahead == '\r') ADVANCE(1); if ((!eof && lookahead == 00) || lookahead == '\n') ADVANCE(168); END_STATE(); - case 11: - if (lookahead == '\r') SKIP(11); + case 12: + if (lookahead == '\r') SKIP(12); if (lookahead == '!') ADVANCE(19); if (lookahead == '#') ADVANCE(167); if (lookahead == '%') ADVANCE(95); @@ -6049,55 +6110,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(113); if (lookahead == '@') ADVANCE(82); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == '^') ADVANCE(101); if (lookahead == '{') ADVANCE(88); if (lookahead == '|') ADVANCE(87); if (lookahead == '~') ADVANCE(104); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); - END_STATE(); - case 12: - if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(94); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(59); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(90); - if (lookahead == ',') ADVANCE(61); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(139); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(56); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(78); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(81); - if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(80); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(88); - if (lookahead == '|') ADVANCE(86); - if (lookahead == '}') ADVANCE(89); - if (lookahead == '~') ADVANCE(104); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(12); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); @@ -6120,7 +6144,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(114); if (lookahead == '@') ADVANCE(81); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(80); if (lookahead == '^') ADVANCE(100); if (lookahead == '|') ADVANCE(86); @@ -6130,7 +6154,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(13); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); @@ -6153,7 +6177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(114); if (lookahead == '@') ADVANCE(81); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(80); if (lookahead == '^') ADVANCE(100); if (lookahead == '|') ADVANCE(86); @@ -6163,7 +6187,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(14); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 15: if (lookahead == '.') ADVANCE(16); @@ -6328,7 +6352,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(113); if (lookahead == '@') ADVANCE(82); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(80); if (lookahead == '^') ADVANCE(101); if (lookahead == 'e') ADVANCE(163); @@ -6342,7 +6366,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(51); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 52: if (eof) ADVANCE(55); @@ -6364,7 +6388,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(112); if (lookahead == '@') ADVANCE(81); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(80); if (lookahead == '{') ADVANCE(88); if (lookahead == '|') ADVANCE(86); @@ -6376,7 +6400,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(52); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 53: if (eof) ADVANCE(55); @@ -6390,7 +6414,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(139); if (lookahead == '@') ADVANCE(81); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == 'e') ADVANCE(164); if (lookahead == '{') ADVANCE(88); if (lookahead == '~') ADVANCE(104); @@ -6400,7 +6424,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(53); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 54: if (eof) ADVANCE(55); @@ -6414,7 +6438,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(139); if (lookahead == '@') ADVANCE(81); if (lookahead == '[') ADVANCE(79); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == 'e') ADVANCE(165); if (lookahead == '{') ADVANCE(88); if (lookahead == '~') ADVANCE(104); @@ -6424,7 +6448,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(54); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(140); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(166); END_STATE(); case 55: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -6486,11 +6510,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 71: ACCEPT_TOKEN(anon_sym_except); if (lookahead == '*') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 72: ACCEPT_TOKEN(anon_sym_except); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 73: ACCEPT_TOKEN(anon_sym_except_STAR); @@ -6872,86 +6896,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 150: ACCEPT_TOKEN(sym_identifier); if (lookahead == '*') ADVANCE(73); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 151: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(154); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 152: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(155); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 153: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(156); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(157); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(158); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(159); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'p') ADVANCE(160); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'p') ADVANCE(161); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'p') ADVANCE(162); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(71); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 161: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(150); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'x') ADVANCE(151); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 164: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'x') ADVANCE(152); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'x') ADVANCE(153); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(166); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(166); END_STATE(); case 167: ACCEPT_TOKEN(sym_comment); @@ -7495,7 +7519,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 52, .external_lex_state = 2}, [2] = {.lex_state = 52, .external_lex_state = 3}, @@ -7559,11 +7583,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 52, .external_lex_state = 3}, [61] = {.lex_state = 52, .external_lex_state = 3}, [62] = {.lex_state = 52, .external_lex_state = 3}, - [63] = {.lex_state = 52, .external_lex_state = 3}, + [63] = {.lex_state = 52, .external_lex_state = 2}, [64] = {.lex_state = 52, .external_lex_state = 2}, [65] = {.lex_state = 52, .external_lex_state = 3}, [66] = {.lex_state = 52, .external_lex_state = 3}, - [67] = {.lex_state = 52, .external_lex_state = 2}, + [67] = {.lex_state = 52, .external_lex_state = 3}, [68] = {.lex_state = 52, .external_lex_state = 3}, [69] = {.lex_state = 52, .external_lex_state = 3}, [70] = {.lex_state = 52, .external_lex_state = 3}, @@ -7652,231 +7676,231 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [153] = {.lex_state = 52, .external_lex_state = 2}, [154] = {.lex_state = 4, .external_lex_state = 4}, [155] = {.lex_state = 4, .external_lex_state = 4}, - [156] = {.lex_state = 11, .external_lex_state = 4}, + [156] = {.lex_state = 12, .external_lex_state = 4}, [157] = {.lex_state = 5, .external_lex_state = 4}, - [158] = {.lex_state = 5, .external_lex_state = 6}, - [159] = {.lex_state = 12, .external_lex_state = 4}, - [160] = {.lex_state = 12, .external_lex_state = 6}, - [161] = {.lex_state = 12, .external_lex_state = 4}, + [158] = {.lex_state = 6, .external_lex_state = 6}, + [159] = {.lex_state = 5, .external_lex_state = 6}, + [160] = {.lex_state = 6, .external_lex_state = 4}, + [161] = {.lex_state = 6, .external_lex_state = 4}, [162] = {.lex_state = 5, .external_lex_state = 6}, - [163] = {.lex_state = 5, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 6}, - [165] = {.lex_state = 5, .external_lex_state = 6}, - [166] = {.lex_state = 5, .external_lex_state = 7}, - [167] = {.lex_state = 5, .external_lex_state = 8}, - [168] = {.lex_state = 12, .external_lex_state = 8}, - [169] = {.lex_state = 5, .external_lex_state = 8}, - [170] = {.lex_state = 5, .external_lex_state = 7}, - [171] = {.lex_state = 12, .external_lex_state = 6}, + [163] = {.lex_state = 6, .external_lex_state = 6}, + [164] = {.lex_state = 5, .external_lex_state = 7}, + [165] = {.lex_state = 5, .external_lex_state = 8}, + [166] = {.lex_state = 5, .external_lex_state = 2}, + [167] = {.lex_state = 5, .external_lex_state = 6}, + [168] = {.lex_state = 5, .external_lex_state = 7}, + [169] = {.lex_state = 5, .external_lex_state = 6}, + [170] = {.lex_state = 5, .external_lex_state = 8}, + [171] = {.lex_state = 6, .external_lex_state = 2}, [172] = {.lex_state = 5, .external_lex_state = 8}, - [173] = {.lex_state = 12, .external_lex_state = 2}, - [174] = {.lex_state = 5, .external_lex_state = 8}, - [175] = {.lex_state = 5, .external_lex_state = 8}, - [176] = {.lex_state = 12, .external_lex_state = 7}, - [177] = {.lex_state = 5, .external_lex_state = 7}, - [178] = {.lex_state = 12, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 8}, - [180] = {.lex_state = 11, .external_lex_state = 4}, - [181] = {.lex_state = 12, .external_lex_state = 6}, - [182] = {.lex_state = 12, .external_lex_state = 7}, - [183] = {.lex_state = 5, .external_lex_state = 7}, - [184] = {.lex_state = 12, .external_lex_state = 8}, + [173] = {.lex_state = 5, .external_lex_state = 7}, + [174] = {.lex_state = 12, .external_lex_state = 4}, + [175] = {.lex_state = 6, .external_lex_state = 2}, + [176] = {.lex_state = 5, .external_lex_state = 8}, + [177] = {.lex_state = 5, .external_lex_state = 8}, + [178] = {.lex_state = 5, .external_lex_state = 7}, + [179] = {.lex_state = 6, .external_lex_state = 6}, + [180] = {.lex_state = 6, .external_lex_state = 7}, + [181] = {.lex_state = 6, .external_lex_state = 7}, + [182] = {.lex_state = 5, .external_lex_state = 8}, + [183] = {.lex_state = 5, .external_lex_state = 8}, + [184] = {.lex_state = 5, .external_lex_state = 8}, [185] = {.lex_state = 5, .external_lex_state = 8}, - [186] = {.lex_state = 12, .external_lex_state = 7}, - [187] = {.lex_state = 11, .external_lex_state = 2}, - [188] = {.lex_state = 11, .external_lex_state = 2}, + [186] = {.lex_state = 6, .external_lex_state = 7}, + [187] = {.lex_state = 12, .external_lex_state = 2}, + [188] = {.lex_state = 12, .external_lex_state = 2}, [189] = {.lex_state = 5, .external_lex_state = 7}, - [190] = {.lex_state = 5, .external_lex_state = 6}, + [190] = {.lex_state = 52, .external_lex_state = 8}, [191] = {.lex_state = 52, .external_lex_state = 8}, - [192] = {.lex_state = 52, .external_lex_state = 7}, - [193] = {.lex_state = 5, .external_lex_state = 6}, + [192] = {.lex_state = 52, .external_lex_state = 8}, + [193] = {.lex_state = 52, .external_lex_state = 7}, [194] = {.lex_state = 5, .external_lex_state = 6}, [195] = {.lex_state = 52, .external_lex_state = 8}, [196] = {.lex_state = 52, .external_lex_state = 7}, [197] = {.lex_state = 5, .external_lex_state = 6}, - [198] = {.lex_state = 52, .external_lex_state = 8}, - [199] = {.lex_state = 52, .external_lex_state = 8}, - [200] = {.lex_state = 52, .external_lex_state = 8}, - [201] = {.lex_state = 52, .external_lex_state = 7}, - [202] = {.lex_state = 5, .external_lex_state = 6}, + [198] = {.lex_state = 52, .external_lex_state = 2}, + [199] = {.lex_state = 52, .external_lex_state = 2}, + [200] = {.lex_state = 52, .external_lex_state = 2}, + [201] = {.lex_state = 52, .external_lex_state = 8}, + [202] = {.lex_state = 52, .external_lex_state = 7}, [203] = {.lex_state = 52, .external_lex_state = 8}, [204] = {.lex_state = 52, .external_lex_state = 7}, [205] = {.lex_state = 5, .external_lex_state = 6}, - [206] = {.lex_state = 52, .external_lex_state = 7}, - [207] = {.lex_state = 52, .external_lex_state = 8}, - [208] = {.lex_state = 52, .external_lex_state = 7}, - [209] = {.lex_state = 5, .external_lex_state = 6}, - [210] = {.lex_state = 52, .external_lex_state = 8}, - [211] = {.lex_state = 52, .external_lex_state = 8}, - [212] = {.lex_state = 52, .external_lex_state = 2}, - [213] = {.lex_state = 52, .external_lex_state = 8}, - [214] = {.lex_state = 52, .external_lex_state = 7}, - [215] = {.lex_state = 5, .external_lex_state = 6}, + [206] = {.lex_state = 52, .external_lex_state = 8}, + [207] = {.lex_state = 52, .external_lex_state = 7}, + [208] = {.lex_state = 5, .external_lex_state = 6}, + [209] = {.lex_state = 52, .external_lex_state = 8}, + [210] = {.lex_state = 52, .external_lex_state = 7}, + [211] = {.lex_state = 5, .external_lex_state = 6}, + [212] = {.lex_state = 52, .external_lex_state = 8}, + [213] = {.lex_state = 52, .external_lex_state = 7}, + [214] = {.lex_state = 5, .external_lex_state = 6}, + [215] = {.lex_state = 52, .external_lex_state = 8}, [216] = {.lex_state = 52, .external_lex_state = 7}, - [217] = {.lex_state = 52, .external_lex_state = 2}, - [218] = {.lex_state = 52, .external_lex_state = 2}, - [219] = {.lex_state = 52, .external_lex_state = 8}, + [217] = {.lex_state = 5, .external_lex_state = 6}, + [218] = {.lex_state = 52, .external_lex_state = 8}, + [219] = {.lex_state = 52, .external_lex_state = 7}, [220] = {.lex_state = 52, .external_lex_state = 7}, [221] = {.lex_state = 52, .external_lex_state = 7}, - [222] = {.lex_state = 52, .external_lex_state = 7}, - [223] = {.lex_state = 6, .external_lex_state = 4}, - [224] = {.lex_state = 6, .external_lex_state = 4}, - [225] = {.lex_state = 52, .external_lex_state = 2}, + [222] = {.lex_state = 5, .external_lex_state = 6}, + [223] = {.lex_state = 7, .external_lex_state = 4}, + [224] = {.lex_state = 7, .external_lex_state = 4}, + [225] = {.lex_state = 5, .external_lex_state = 7}, [226] = {.lex_state = 5, .external_lex_state = 7}, - [227] = {.lex_state = 5, .external_lex_state = 7}, + [227] = {.lex_state = 52, .external_lex_state = 2}, [228] = {.lex_state = 5, .external_lex_state = 7}, [229] = {.lex_state = 5, .external_lex_state = 7}, [230] = {.lex_state = 5, .external_lex_state = 7}, - [231] = {.lex_state = 5, .external_lex_state = 7}, - [232] = {.lex_state = 52, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 7}, - [234] = {.lex_state = 5, .external_lex_state = 7}, + [231] = {.lex_state = 52, .external_lex_state = 2}, + [232] = {.lex_state = 5, .external_lex_state = 7}, + [233] = {.lex_state = 5, .external_lex_state = 2}, + [234] = {.lex_state = 5, .external_lex_state = 2}, [235] = {.lex_state = 5, .external_lex_state = 2}, [236] = {.lex_state = 5, .external_lex_state = 2}, [237] = {.lex_state = 5, .external_lex_state = 2}, - [238] = {.lex_state = 5, .external_lex_state = 2}, - [239] = {.lex_state = 52, .external_lex_state = 8}, - [240] = {.lex_state = 5, .external_lex_state = 2}, + [238] = {.lex_state = 5, .external_lex_state = 8}, + [239] = {.lex_state = 5, .external_lex_state = 2}, + [240] = {.lex_state = 5, .external_lex_state = 8}, [241] = {.lex_state = 5, .external_lex_state = 2}, - [242] = {.lex_state = 5, .external_lex_state = 2}, + [242] = {.lex_state = 7, .external_lex_state = 2}, [243] = {.lex_state = 5, .external_lex_state = 2}, - [244] = {.lex_state = 5, .external_lex_state = 8}, - [245] = {.lex_state = 52, .external_lex_state = 6}, + [244] = {.lex_state = 5, .external_lex_state = 2}, + [245] = {.lex_state = 5, .external_lex_state = 8}, [246] = {.lex_state = 5, .external_lex_state = 8}, - [247] = {.lex_state = 5, .external_lex_state = 8}, - [248] = {.lex_state = 5, .external_lex_state = 2}, - [249] = {.lex_state = 6, .external_lex_state = 2}, + [247] = {.lex_state = 5, .external_lex_state = 2}, + [248] = {.lex_state = 52, .external_lex_state = 8}, + [249] = {.lex_state = 52, .external_lex_state = 6}, [250] = {.lex_state = 5, .external_lex_state = 8}, - [251] = {.lex_state = 5, .external_lex_state = 2}, + [251] = {.lex_state = 7, .external_lex_state = 2}, [252] = {.lex_state = 5, .external_lex_state = 8}, [253] = {.lex_state = 5, .external_lex_state = 2}, [254] = {.lex_state = 5, .external_lex_state = 2}, - [255] = {.lex_state = 5, .external_lex_state = 2}, + [255] = {.lex_state = 5, .external_lex_state = 8}, [256] = {.lex_state = 5, .external_lex_state = 8}, [257] = {.lex_state = 5, .external_lex_state = 2}, [258] = {.lex_state = 5, .external_lex_state = 2}, [259] = {.lex_state = 5, .external_lex_state = 8}, [260] = {.lex_state = 5, .external_lex_state = 2}, [261] = {.lex_state = 5, .external_lex_state = 2}, - [262] = {.lex_state = 5, .external_lex_state = 8}, + [262] = {.lex_state = 5, .external_lex_state = 2}, [263] = {.lex_state = 5, .external_lex_state = 2}, - [264] = {.lex_state = 5, .external_lex_state = 8}, + [264] = {.lex_state = 5, .external_lex_state = 2}, [265] = {.lex_state = 5, .external_lex_state = 2}, - [266] = {.lex_state = 5, .external_lex_state = 2}, - [267] = {.lex_state = 5, .external_lex_state = 2}, - [268] = {.lex_state = 6, .external_lex_state = 2}, - [269] = {.lex_state = 5, .external_lex_state = 2}, - [270] = {.lex_state = 5, .external_lex_state = 2}, - [271] = {.lex_state = 5, .external_lex_state = 2}, - [272] = {.lex_state = 5, .external_lex_state = 2}, - [273] = {.lex_state = 52, .external_lex_state = 7}, - [274] = {.lex_state = 52, .external_lex_state = 8}, - [275] = {.lex_state = 5, .external_lex_state = 8}, - [276] = {.lex_state = 52, .external_lex_state = 7}, - [277] = {.lex_state = 52, .external_lex_state = 8}, - [278] = {.lex_state = 5, .external_lex_state = 8}, - [279] = {.lex_state = 5, .external_lex_state = 8}, + [266] = {.lex_state = 52, .external_lex_state = 8}, + [267] = {.lex_state = 52, .external_lex_state = 7}, + [268] = {.lex_state = 52, .external_lex_state = 8}, + [269] = {.lex_state = 5, .external_lex_state = 8}, + [270] = {.lex_state = 5, .external_lex_state = 8}, + [271] = {.lex_state = 5, .external_lex_state = 8}, + [272] = {.lex_state = 5, .external_lex_state = 8}, + [273] = {.lex_state = 5, .external_lex_state = 8}, + [274] = {.lex_state = 5, .external_lex_state = 8}, + [275] = {.lex_state = 52, .external_lex_state = 8}, + [276] = {.lex_state = 52, .external_lex_state = 8}, + [277] = {.lex_state = 5, .external_lex_state = 8}, + [278] = {.lex_state = 52, .external_lex_state = 7}, + [279] = {.lex_state = 52, .external_lex_state = 8}, [280] = {.lex_state = 5, .external_lex_state = 8}, [281] = {.lex_state = 5, .external_lex_state = 8}, [282] = {.lex_state = 5, .external_lex_state = 8}, [283] = {.lex_state = 5, .external_lex_state = 8}, - [284] = {.lex_state = 52, .external_lex_state = 8}, - [285] = {.lex_state = 52, .external_lex_state = 7}, - [286] = {.lex_state = 52, .external_lex_state = 8}, + [284] = {.lex_state = 5, .external_lex_state = 8}, + [285] = {.lex_state = 5, .external_lex_state = 8}, + [286] = {.lex_state = 5, .external_lex_state = 8}, [287] = {.lex_state = 5, .external_lex_state = 8}, [288] = {.lex_state = 5, .external_lex_state = 8}, - [289] = {.lex_state = 5, .external_lex_state = 8}, - [290] = {.lex_state = 5, .external_lex_state = 8}, - [291] = {.lex_state = 5, .external_lex_state = 8}, - [292] = {.lex_state = 5, .external_lex_state = 8}, + [289] = {.lex_state = 52, .external_lex_state = 7}, + [290] = {.lex_state = 52, .external_lex_state = 8}, + [291] = {.lex_state = 52, .external_lex_state = 7}, + [292] = {.lex_state = 52, .external_lex_state = 8}, [293] = {.lex_state = 5, .external_lex_state = 8}, - [294] = {.lex_state = 52, .external_lex_state = 7}, - [295] = {.lex_state = 52, .external_lex_state = 8}, - [296] = {.lex_state = 52, .external_lex_state = 8}, - [297] = {.lex_state = 52, .external_lex_state = 7}, - [298] = {.lex_state = 5, .external_lex_state = 8}, - [299] = {.lex_state = 5, .external_lex_state = 8}, - [300] = {.lex_state = 5, .external_lex_state = 8}, - [301] = {.lex_state = 5, .external_lex_state = 8}, - [302] = {.lex_state = 5, .external_lex_state = 8}, - [303] = {.lex_state = 5, .external_lex_state = 8}, + [294] = {.lex_state = 5, .external_lex_state = 8}, + [295] = {.lex_state = 5, .external_lex_state = 8}, + [296] = {.lex_state = 5, .external_lex_state = 8}, + [297] = {.lex_state = 52, .external_lex_state = 8}, + [298] = {.lex_state = 52, .external_lex_state = 7}, + [299] = {.lex_state = 52, .external_lex_state = 8}, + [300] = {.lex_state = 52, .external_lex_state = 8}, + [301] = {.lex_state = 52, .external_lex_state = 7}, + [302] = {.lex_state = 52, .external_lex_state = 7}, + [303] = {.lex_state = 52, .external_lex_state = 8}, [304] = {.lex_state = 5, .external_lex_state = 8}, - [305] = {.lex_state = 52, .external_lex_state = 8}, - [306] = {.lex_state = 52, .external_lex_state = 7}, - [307] = {.lex_state = 52, .external_lex_state = 8}, + [305] = {.lex_state = 5, .external_lex_state = 8}, + [306] = {.lex_state = 5, .external_lex_state = 8}, + [307] = {.lex_state = 5, .external_lex_state = 8}, [308] = {.lex_state = 52, .external_lex_state = 7}, [309] = {.lex_state = 52, .external_lex_state = 8}, - [310] = {.lex_state = 52, .external_lex_state = 8}, + [310] = {.lex_state = 5, .external_lex_state = 8}, [311] = {.lex_state = 5, .external_lex_state = 8}, [312] = {.lex_state = 5, .external_lex_state = 8}, [313] = {.lex_state = 5, .external_lex_state = 8}, [314] = {.lex_state = 5, .external_lex_state = 8}, - [315] = {.lex_state = 52, .external_lex_state = 7}, - [316] = {.lex_state = 52, .external_lex_state = 8}, - [317] = {.lex_state = 52, .external_lex_state = 8}, - [318] = {.lex_state = 5, .external_lex_state = 8}, - [319] = {.lex_state = 5, .external_lex_state = 8}, - [320] = {.lex_state = 52, .external_lex_state = 8}, - [321] = {.lex_state = 5, .external_lex_state = 8}, - [322] = {.lex_state = 5, .external_lex_state = 8}, - [323] = {.lex_state = 5, .external_lex_state = 8}, - [324] = {.lex_state = 5, .external_lex_state = 8}, - [325] = {.lex_state = 52, .external_lex_state = 8}, - [326] = {.lex_state = 5, .external_lex_state = 8}, + [315] = {.lex_state = 5, .external_lex_state = 8}, + [316] = {.lex_state = 5, .external_lex_state = 8}, + [317] = {.lex_state = 5, .external_lex_state = 8}, + [318] = {.lex_state = 52, .external_lex_state = 8}, + [319] = {.lex_state = 52, .external_lex_state = 8}, + [320] = {.lex_state = 52, .external_lex_state = 6}, + [321] = {.lex_state = 52, .external_lex_state = 8}, + [322] = {.lex_state = 6, .external_lex_state = 6}, + [323] = {.lex_state = 52, .external_lex_state = 6}, + [324] = {.lex_state = 52, .external_lex_state = 6}, + [325] = {.lex_state = 52, .external_lex_state = 6}, + [326] = {.lex_state = 52, .external_lex_state = 7}, [327] = {.lex_state = 52, .external_lex_state = 7}, - [328] = {.lex_state = 52, .external_lex_state = 8}, + [328] = {.lex_state = 52, .external_lex_state = 6}, [329] = {.lex_state = 52, .external_lex_state = 8}, [330] = {.lex_state = 52, .external_lex_state = 8}, - [331] = {.lex_state = 52, .external_lex_state = 6}, + [331] = {.lex_state = 52, .external_lex_state = 7}, [332] = {.lex_state = 52, .external_lex_state = 7}, - [333] = {.lex_state = 52, .external_lex_state = 6}, + [333] = {.lex_state = 52, .external_lex_state = 8}, [334] = {.lex_state = 52, .external_lex_state = 8}, - [335] = {.lex_state = 5, .external_lex_state = 2}, + [335] = {.lex_state = 52, .external_lex_state = 7}, [336] = {.lex_state = 52, .external_lex_state = 6}, - [337] = {.lex_state = 52, .external_lex_state = 6}, - [338] = {.lex_state = 52, .external_lex_state = 8}, - [339] = {.lex_state = 52, .external_lex_state = 6}, - [340] = {.lex_state = 52, .external_lex_state = 6}, - [341] = {.lex_state = 52, .external_lex_state = 7}, - [342] = {.lex_state = 52, .external_lex_state = 8}, - [343] = {.lex_state = 52, .external_lex_state = 7}, - [344] = {.lex_state = 52, .external_lex_state = 7}, - [345] = {.lex_state = 52, .external_lex_state = 7}, - [346] = {.lex_state = 52, .external_lex_state = 6}, - [347] = {.lex_state = 12, .external_lex_state = 6}, - [348] = {.lex_state = 52, .external_lex_state = 6}, - [349] = {.lex_state = 52, .external_lex_state = 2}, - [350] = {.lex_state = 52, .external_lex_state = 4}, - [351] = {.lex_state = 5, .external_lex_state = 6}, + [337] = {.lex_state = 5, .external_lex_state = 2}, + [338] = {.lex_state = 52, .external_lex_state = 6}, + [339] = {.lex_state = 52, .external_lex_state = 7}, + [340] = {.lex_state = 52, .external_lex_state = 8}, + [341] = {.lex_state = 52, .external_lex_state = 6}, + [342] = {.lex_state = 5, .external_lex_state = 6}, + [343] = {.lex_state = 52, .external_lex_state = 2}, + [344] = {.lex_state = 52, .external_lex_state = 4}, + [345] = {.lex_state = 5, .external_lex_state = 6}, + [346] = {.lex_state = 5, .external_lex_state = 6}, + [347] = {.lex_state = 52, .external_lex_state = 7}, + [348] = {.lex_state = 5, .external_lex_state = 6}, + [349] = {.lex_state = 5, .external_lex_state = 6}, + [350] = {.lex_state = 5, .external_lex_state = 6}, + [351] = {.lex_state = 52, .external_lex_state = 2}, [352] = {.lex_state = 5, .external_lex_state = 6}, [353] = {.lex_state = 5, .external_lex_state = 6}, - [354] = {.lex_state = 5, .external_lex_state = 6}, - [355] = {.lex_state = 5, .external_lex_state = 6}, + [354] = {.lex_state = 52, .external_lex_state = 4}, + [355] = {.lex_state = 52, .external_lex_state = 8}, [356] = {.lex_state = 5, .external_lex_state = 6}, [357] = {.lex_state = 5, .external_lex_state = 6}, [358] = {.lex_state = 5, .external_lex_state = 6}, [359] = {.lex_state = 5, .external_lex_state = 6}, [360] = {.lex_state = 5, .external_lex_state = 6}, [361] = {.lex_state = 5, .external_lex_state = 6}, - [362] = {.lex_state = 52, .external_lex_state = 4}, - [363] = {.lex_state = 52, .external_lex_state = 7}, - [364] = {.lex_state = 52, .external_lex_state = 2}, - [365] = {.lex_state = 5, .external_lex_state = 6}, - [366] = {.lex_state = 5, .external_lex_state = 6}, - [367] = {.lex_state = 52, .external_lex_state = 8}, - [368] = {.lex_state = 5, .external_lex_state = 6}, - [369] = {.lex_state = 5, .external_lex_state = 6}, - [370] = {.lex_state = 5, .external_lex_state = 6}, - [371] = {.lex_state = 52, .external_lex_state = 2}, - [372] = {.lex_state = 12, .external_lex_state = 8}, - [373] = {.lex_state = 52, .external_lex_state = 7}, + [362] = {.lex_state = 5, .external_lex_state = 6}, + [363] = {.lex_state = 52, .external_lex_state = 2}, + [364] = {.lex_state = 5, .external_lex_state = 6}, + [365] = {.lex_state = 52, .external_lex_state = 7}, + [366] = {.lex_state = 52, .external_lex_state = 7}, + [367] = {.lex_state = 52, .external_lex_state = 7}, + [368] = {.lex_state = 52, .external_lex_state = 7}, + [369] = {.lex_state = 52, .external_lex_state = 7}, + [370] = {.lex_state = 52, .external_lex_state = 7}, + [371] = {.lex_state = 52, .external_lex_state = 7}, + [372] = {.lex_state = 52, .external_lex_state = 7}, + [373] = {.lex_state = 5, .external_lex_state = 2}, [374] = {.lex_state = 52, .external_lex_state = 7}, [375] = {.lex_state = 52, .external_lex_state = 7}, - [376] = {.lex_state = 52, .external_lex_state = 4}, + [376] = {.lex_state = 52, .external_lex_state = 7}, [377] = {.lex_state = 52, .external_lex_state = 7}, - [378] = {.lex_state = 52, .external_lex_state = 7}, + [378] = {.lex_state = 52, .external_lex_state = 4}, [379] = {.lex_state = 52, .external_lex_state = 7}, - [380] = {.lex_state = 52, .external_lex_state = 4}, + [380] = {.lex_state = 52, .external_lex_state = 7}, [381] = {.lex_state = 52, .external_lex_state = 7}, [382] = {.lex_state = 52, .external_lex_state = 7}, [383] = {.lex_state = 52, .external_lex_state = 7}, @@ -7892,62 +7916,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [393] = {.lex_state = 52, .external_lex_state = 7}, [394] = {.lex_state = 52, .external_lex_state = 7}, [395] = {.lex_state = 52, .external_lex_state = 7}, - [396] = {.lex_state = 52, .external_lex_state = 7}, + [396] = {.lex_state = 52, .external_lex_state = 4}, [397] = {.lex_state = 52, .external_lex_state = 4}, [398] = {.lex_state = 52, .external_lex_state = 7}, [399] = {.lex_state = 52, .external_lex_state = 7}, [400] = {.lex_state = 52, .external_lex_state = 7}, - [401] = {.lex_state = 52, .external_lex_state = 7}, - [402] = {.lex_state = 52, .external_lex_state = 7}, - [403] = {.lex_state = 5, .external_lex_state = 2}, - [404] = {.lex_state = 52, .external_lex_state = 7}, + [401] = {.lex_state = 5, .external_lex_state = 7}, + [402] = {.lex_state = 52, .external_lex_state = 2}, + [403] = {.lex_state = 52, .external_lex_state = 4}, + [404] = {.lex_state = 52, .external_lex_state = 4}, [405] = {.lex_state = 52, .external_lex_state = 7}, - [406] = {.lex_state = 52, .external_lex_state = 7}, - [407] = {.lex_state = 12, .external_lex_state = 8}, - [408] = {.lex_state = 52, .external_lex_state = 7}, - [409] = {.lex_state = 52, .external_lex_state = 7}, + [406] = {.lex_state = 52, .external_lex_state = 2}, + [407] = {.lex_state = 52, .external_lex_state = 2}, + [408] = {.lex_state = 52, .external_lex_state = 8}, + [409] = {.lex_state = 52, .external_lex_state = 8}, [410] = {.lex_state = 52, .external_lex_state = 2}, - [411] = {.lex_state = 52, .external_lex_state = 4}, - [412] = {.lex_state = 52, .external_lex_state = 7}, - [413] = {.lex_state = 52, .external_lex_state = 8}, - [414] = {.lex_state = 52, .external_lex_state = 2}, - [415] = {.lex_state = 52, .external_lex_state = 8}, - [416] = {.lex_state = 12, .external_lex_state = 2}, - [417] = {.lex_state = 5, .external_lex_state = 7}, - [418] = {.lex_state = 52, .external_lex_state = 7}, - [419] = {.lex_state = 52, .external_lex_state = 7}, - [420] = {.lex_state = 52, .external_lex_state = 8}, + [411] = {.lex_state = 52, .external_lex_state = 2}, + [412] = {.lex_state = 52, .external_lex_state = 2}, + [413] = {.lex_state = 52, .external_lex_state = 7}, + [414] = {.lex_state = 52, .external_lex_state = 7}, + [415] = {.lex_state = 5, .external_lex_state = 2}, + [416] = {.lex_state = 52, .external_lex_state = 7}, + [417] = {.lex_state = 52, .external_lex_state = 2}, + [418] = {.lex_state = 52, .external_lex_state = 2}, + [419] = {.lex_state = 52, .external_lex_state = 2}, + [420] = {.lex_state = 5, .external_lex_state = 8}, [421] = {.lex_state = 52, .external_lex_state = 2}, - [422] = {.lex_state = 52, .external_lex_state = 7}, + [422] = {.lex_state = 52, .external_lex_state = 2}, [423] = {.lex_state = 52, .external_lex_state = 2}, [424] = {.lex_state = 52, .external_lex_state = 2}, [425] = {.lex_state = 52, .external_lex_state = 2}, - [426] = {.lex_state = 52, .external_lex_state = 4}, + [426] = {.lex_state = 52, .external_lex_state = 2}, [427] = {.lex_state = 52, .external_lex_state = 4}, - [428] = {.lex_state = 52, .external_lex_state = 2}, - [429] = {.lex_state = 52, .external_lex_state = 2}, - [430] = {.lex_state = 52, .external_lex_state = 2}, - [431] = {.lex_state = 52, .external_lex_state = 7}, - [432] = {.lex_state = 52, .external_lex_state = 2}, + [428] = {.lex_state = 52, .external_lex_state = 4}, + [429] = {.lex_state = 52, .external_lex_state = 4}, + [430] = {.lex_state = 52, .external_lex_state = 7}, + [431] = {.lex_state = 52, .external_lex_state = 2}, + [432] = {.lex_state = 52, .external_lex_state = 8}, [433] = {.lex_state = 52, .external_lex_state = 2}, [434] = {.lex_state = 52, .external_lex_state = 2}, [435] = {.lex_state = 52, .external_lex_state = 2}, - [436] = {.lex_state = 12, .external_lex_state = 2}, + [436] = {.lex_state = 52, .external_lex_state = 2}, [437] = {.lex_state = 52, .external_lex_state = 2}, [438] = {.lex_state = 52, .external_lex_state = 2}, - [439] = {.lex_state = 5, .external_lex_state = 2}, - [440] = {.lex_state = 52, .external_lex_state = 4}, + [439] = {.lex_state = 52, .external_lex_state = 2}, + [440] = {.lex_state = 52, .external_lex_state = 2}, [441] = {.lex_state = 52, .external_lex_state = 2}, [442] = {.lex_state = 52, .external_lex_state = 2}, - [443] = {.lex_state = 52, .external_lex_state = 2}, + [443] = {.lex_state = 52, .external_lex_state = 8}, [444] = {.lex_state = 52, .external_lex_state = 2}, [445] = {.lex_state = 52, .external_lex_state = 2}, - [446] = {.lex_state = 52, .external_lex_state = 4}, - [447] = {.lex_state = 52, .external_lex_state = 4}, + [446] = {.lex_state = 52, .external_lex_state = 2}, + [447] = {.lex_state = 52, .external_lex_state = 2}, [448] = {.lex_state = 52, .external_lex_state = 2}, - [449] = {.lex_state = 5, .external_lex_state = 8}, - [450] = {.lex_state = 52, .external_lex_state = 8}, - [451] = {.lex_state = 52, .external_lex_state = 2}, + [449] = {.lex_state = 52, .external_lex_state = 2}, + [450] = {.lex_state = 52, .external_lex_state = 4}, + [451] = {.lex_state = 8, .external_lex_state = 4}, [452] = {.lex_state = 52, .external_lex_state = 2}, [453] = {.lex_state = 52, .external_lex_state = 2}, [454] = {.lex_state = 52, .external_lex_state = 2}, @@ -7958,27 +7982,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [459] = {.lex_state = 52, .external_lex_state = 2}, [460] = {.lex_state = 52, .external_lex_state = 2}, [461] = {.lex_state = 52, .external_lex_state = 2}, - [462] = {.lex_state = 7, .external_lex_state = 9}, + [462] = {.lex_state = 52, .external_lex_state = 2}, [463] = {.lex_state = 52, .external_lex_state = 2}, - [464] = {.lex_state = 52, .external_lex_state = 2}, - [465] = {.lex_state = 52, .external_lex_state = 2}, + [464] = {.lex_state = 8, .external_lex_state = 9}, + [465] = {.lex_state = 8, .external_lex_state = 4}, [466] = {.lex_state = 52, .external_lex_state = 2}, [467] = {.lex_state = 52, .external_lex_state = 2}, - [468] = {.lex_state = 52, .external_lex_state = 2}, + [468] = {.lex_state = 8, .external_lex_state = 9}, [469] = {.lex_state = 52, .external_lex_state = 2}, [470] = {.lex_state = 52, .external_lex_state = 2}, - [471] = {.lex_state = 7, .external_lex_state = 4}, + [471] = {.lex_state = 52, .external_lex_state = 2}, [472] = {.lex_state = 52, .external_lex_state = 2}, [473] = {.lex_state = 52, .external_lex_state = 2}, [474] = {.lex_state = 52, .external_lex_state = 2}, [475] = {.lex_state = 52, .external_lex_state = 2}, - [476] = {.lex_state = 7, .external_lex_state = 4}, - [477] = {.lex_state = 7, .external_lex_state = 9}, + [476] = {.lex_state = 52, .external_lex_state = 2}, + [477] = {.lex_state = 52, .external_lex_state = 2}, [478] = {.lex_state = 52, .external_lex_state = 2}, [479] = {.lex_state = 52, .external_lex_state = 2}, [480] = {.lex_state = 52, .external_lex_state = 2}, [481] = {.lex_state = 52, .external_lex_state = 2}, - [482] = {.lex_state = 52, .external_lex_state = 2}, + [482] = {.lex_state = 53, .external_lex_state = 10}, [483] = {.lex_state = 52, .external_lex_state = 2}, [484] = {.lex_state = 52, .external_lex_state = 2}, [485] = {.lex_state = 52, .external_lex_state = 2}, @@ -7991,15 +8015,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [492] = {.lex_state = 52, .external_lex_state = 2}, [493] = {.lex_state = 52, .external_lex_state = 2}, [494] = {.lex_state = 52, .external_lex_state = 2}, - [495] = {.lex_state = 53, .external_lex_state = 10}, + [495] = {.lex_state = 52, .external_lex_state = 2}, [496] = {.lex_state = 52, .external_lex_state = 2}, [497] = {.lex_state = 52, .external_lex_state = 2}, - [498] = {.lex_state = 52, .external_lex_state = 2}, + [498] = {.lex_state = 54, .external_lex_state = 3}, [499] = {.lex_state = 52, .external_lex_state = 2}, [500] = {.lex_state = 52, .external_lex_state = 2}, [501] = {.lex_state = 52, .external_lex_state = 2}, [502] = {.lex_state = 52, .external_lex_state = 2}, - [503] = {.lex_state = 54, .external_lex_state = 2}, + [503] = {.lex_state = 52, .external_lex_state = 2}, [504] = {.lex_state = 52, .external_lex_state = 2}, [505] = {.lex_state = 52, .external_lex_state = 2}, [506] = {.lex_state = 52, .external_lex_state = 2}, @@ -8029,10 +8053,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [530] = {.lex_state = 52, .external_lex_state = 2}, [531] = {.lex_state = 52, .external_lex_state = 2}, [532] = {.lex_state = 52, .external_lex_state = 2}, - [533] = {.lex_state = 52, .external_lex_state = 2}, - [534] = {.lex_state = 52, .external_lex_state = 2}, - [535] = {.lex_state = 52, .external_lex_state = 2}, - [536] = {.lex_state = 52, .external_lex_state = 2}, + [533] = {.lex_state = 53, .external_lex_state = 11}, + [534] = {.lex_state = 54, .external_lex_state = 2}, + [535] = {.lex_state = 53, .external_lex_state = 10}, + [536] = {.lex_state = 54, .external_lex_state = 3}, [537] = {.lex_state = 52, .external_lex_state = 2}, [538] = {.lex_state = 52, .external_lex_state = 2}, [539] = {.lex_state = 52, .external_lex_state = 2}, @@ -8050,10 +8074,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [551] = {.lex_state = 52, .external_lex_state = 2}, [552] = {.lex_state = 52, .external_lex_state = 2}, [553] = {.lex_state = 52, .external_lex_state = 2}, - [554] = {.lex_state = 52, .external_lex_state = 2}, + [554] = {.lex_state = 53, .external_lex_state = 11}, [555] = {.lex_state = 52, .external_lex_state = 2}, [556] = {.lex_state = 52, .external_lex_state = 2}, - [557] = {.lex_state = 52, .external_lex_state = 2}, + [557] = {.lex_state = 54, .external_lex_state = 2}, [558] = {.lex_state = 52, .external_lex_state = 2}, [559] = {.lex_state = 52, .external_lex_state = 2}, [560] = {.lex_state = 52, .external_lex_state = 2}, @@ -8068,8 +8092,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [569] = {.lex_state = 52, .external_lex_state = 2}, [570] = {.lex_state = 52, .external_lex_state = 2}, [571] = {.lex_state = 52, .external_lex_state = 2}, - [572] = {.lex_state = 53, .external_lex_state = 10}, - [573] = {.lex_state = 54, .external_lex_state = 2}, + [572] = {.lex_state = 52, .external_lex_state = 2}, + [573] = {.lex_state = 52, .external_lex_state = 2}, [574] = {.lex_state = 52, .external_lex_state = 2}, [575] = {.lex_state = 52, .external_lex_state = 2}, [576] = {.lex_state = 52, .external_lex_state = 2}, @@ -8084,8 +8108,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [585] = {.lex_state = 52, .external_lex_state = 2}, [586] = {.lex_state = 52, .external_lex_state = 2}, [587] = {.lex_state = 52, .external_lex_state = 2}, - [588] = {.lex_state = 53, .external_lex_state = 11}, - [589] = {.lex_state = 54, .external_lex_state = 3}, + [588] = {.lex_state = 52, .external_lex_state = 2}, + [589] = {.lex_state = 52, .external_lex_state = 2}, [590] = {.lex_state = 52, .external_lex_state = 2}, [591] = {.lex_state = 52, .external_lex_state = 2}, [592] = {.lex_state = 52, .external_lex_state = 2}, @@ -8102,151 +8126,151 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [603] = {.lex_state = 52, .external_lex_state = 2}, [604] = {.lex_state = 52, .external_lex_state = 2}, [605] = {.lex_state = 52, .external_lex_state = 2}, - [606] = {.lex_state = 52, .external_lex_state = 2}, - [607] = {.lex_state = 53, .external_lex_state = 11}, - [608] = {.lex_state = 54, .external_lex_state = 3}, - [609] = {.lex_state = 52, .external_lex_state = 2}, - [610] = {.lex_state = 52, .external_lex_state = 2}, - [611] = {.lex_state = 7, .external_lex_state = 9}, - [612] = {.lex_state = 7, .external_lex_state = 9}, - [613] = {.lex_state = 54, .external_lex_state = 2}, - [614] = {.lex_state = 52, .external_lex_state = 3}, - [615] = {.lex_state = 52, .external_lex_state = 2}, - [616] = {.lex_state = 7, .external_lex_state = 9}, - [617] = {.lex_state = 7, .external_lex_state = 9}, - [618] = {.lex_state = 52, .external_lex_state = 3}, + [606] = {.lex_state = 8, .external_lex_state = 9}, + [607] = {.lex_state = 52, .external_lex_state = 3}, + [608] = {.lex_state = 54, .external_lex_state = 2}, + [609] = {.lex_state = 8, .external_lex_state = 9}, + [610] = {.lex_state = 8, .external_lex_state = 9}, + [611] = {.lex_state = 52, .external_lex_state = 2}, + [612] = {.lex_state = 52, .external_lex_state = 3}, + [613] = {.lex_state = 52, .external_lex_state = 3}, + [614] = {.lex_state = 53, .external_lex_state = 10}, + [615] = {.lex_state = 54, .external_lex_state = 3}, + [616] = {.lex_state = 52, .external_lex_state = 2}, + [617] = {.lex_state = 52, .external_lex_state = 2}, + [618] = {.lex_state = 8, .external_lex_state = 9}, [619] = {.lex_state = 52, .external_lex_state = 3}, - [620] = {.lex_state = 52, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 9}, - [622] = {.lex_state = 52, .external_lex_state = 2}, - [623] = {.lex_state = 52, .external_lex_state = 2}, - [624] = {.lex_state = 7, .external_lex_state = 9}, - [625] = {.lex_state = 52, .external_lex_state = 2}, - [626] = {.lex_state = 53, .external_lex_state = 10}, - [627] = {.lex_state = 53, .external_lex_state = 11}, - [628] = {.lex_state = 54, .external_lex_state = 3}, - [629] = {.lex_state = 52, .external_lex_state = 3}, - [630] = {.lex_state = 8, .external_lex_state = 9}, - [631] = {.lex_state = 8, .external_lex_state = 9}, - [632] = {.lex_state = 8, .external_lex_state = 9}, - [633] = {.lex_state = 8, .external_lex_state = 9}, - [634] = {.lex_state = 8, .external_lex_state = 9}, - [635] = {.lex_state = 8, .external_lex_state = 9}, - [636] = {.lex_state = 8, .external_lex_state = 9}, - [637] = {.lex_state = 8, .external_lex_state = 9}, - [638] = {.lex_state = 52, .external_lex_state = 2}, - [639] = {.lex_state = 8, .external_lex_state = 9}, - [640] = {.lex_state = 8, .external_lex_state = 9}, - [641] = {.lex_state = 8, .external_lex_state = 9}, - [642] = {.lex_state = 8, .external_lex_state = 9}, - [643] = {.lex_state = 8, .external_lex_state = 9}, - [644] = {.lex_state = 8, .external_lex_state = 9}, - [645] = {.lex_state = 8, .external_lex_state = 9}, - [646] = {.lex_state = 8, .external_lex_state = 9}, - [647] = {.lex_state = 8, .external_lex_state = 9}, - [648] = {.lex_state = 8, .external_lex_state = 9}, - [649] = {.lex_state = 8, .external_lex_state = 9}, - [650] = {.lex_state = 54, .external_lex_state = 2}, - [651] = {.lex_state = 53, .external_lex_state = 10}, - [652] = {.lex_state = 52, .external_lex_state = 6}, - [653] = {.lex_state = 53, .external_lex_state = 11}, - [654] = {.lex_state = 54, .external_lex_state = 2}, - [655] = {.lex_state = 52, .external_lex_state = 2}, - [656] = {.lex_state = 53, .external_lex_state = 11}, - [657] = {.lex_state = 54, .external_lex_state = 3}, - [658] = {.lex_state = 52, .external_lex_state = 2}, - [659] = {.lex_state = 54, .external_lex_state = 3}, - [660] = {.lex_state = 54, .external_lex_state = 3}, - [661] = {.lex_state = 54, .external_lex_state = 3}, - [662] = {.lex_state = 54, .external_lex_state = 3}, - [663] = {.lex_state = 52, .external_lex_state = 2}, - [664] = {.lex_state = 54, .external_lex_state = 3}, - [665] = {.lex_state = 53, .external_lex_state = 10}, + [620] = {.lex_state = 52, .external_lex_state = 2}, + [621] = {.lex_state = 8, .external_lex_state = 9}, + [622] = {.lex_state = 8, .external_lex_state = 9}, + [623] = {.lex_state = 53, .external_lex_state = 11}, + [624] = {.lex_state = 9, .external_lex_state = 9}, + [625] = {.lex_state = 9, .external_lex_state = 9}, + [626] = {.lex_state = 9, .external_lex_state = 9}, + [627] = {.lex_state = 9, .external_lex_state = 9}, + [628] = {.lex_state = 9, .external_lex_state = 9}, + [629] = {.lex_state = 9, .external_lex_state = 9}, + [630] = {.lex_state = 52, .external_lex_state = 3}, + [631] = {.lex_state = 52, .external_lex_state = 2}, + [632] = {.lex_state = 9, .external_lex_state = 9}, + [633] = {.lex_state = 9, .external_lex_state = 9}, + [634] = {.lex_state = 9, .external_lex_state = 9}, + [635] = {.lex_state = 9, .external_lex_state = 9}, + [636] = {.lex_state = 9, .external_lex_state = 9}, + [637] = {.lex_state = 9, .external_lex_state = 9}, + [638] = {.lex_state = 9, .external_lex_state = 9}, + [639] = {.lex_state = 9, .external_lex_state = 9}, + [640] = {.lex_state = 9, .external_lex_state = 9}, + [641] = {.lex_state = 9, .external_lex_state = 9}, + [642] = {.lex_state = 9, .external_lex_state = 9}, + [643] = {.lex_state = 9, .external_lex_state = 9}, + [644] = {.lex_state = 9, .external_lex_state = 9}, + [645] = {.lex_state = 54, .external_lex_state = 3}, + [646] = {.lex_state = 53, .external_lex_state = 11}, + [647] = {.lex_state = 54, .external_lex_state = 2}, + [648] = {.lex_state = 53, .external_lex_state = 10}, + [649] = {.lex_state = 54, .external_lex_state = 2}, + [650] = {.lex_state = 53, .external_lex_state = 10}, + [651] = {.lex_state = 52, .external_lex_state = 2}, + [652] = {.lex_state = 52, .external_lex_state = 3}, + [653] = {.lex_state = 54, .external_lex_state = 2}, + [654] = {.lex_state = 53, .external_lex_state = 11}, + [655] = {.lex_state = 53, .external_lex_state = 11}, + [656] = {.lex_state = 54, .external_lex_state = 2}, + [657] = {.lex_state = 52, .external_lex_state = 3}, + [658] = {.lex_state = 52, .external_lex_state = 3}, + [659] = {.lex_state = 53, .external_lex_state = 10}, + [660] = {.lex_state = 52, .external_lex_state = 6}, + [661] = {.lex_state = 52, .external_lex_state = 2}, + [662] = {.lex_state = 52, .external_lex_state = 2}, + [663] = {.lex_state = 53, .external_lex_state = 11}, + [664] = {.lex_state = 52, .external_lex_state = 2}, + [665] = {.lex_state = 53, .external_lex_state = 11}, [666] = {.lex_state = 52, .external_lex_state = 3}, - [667] = {.lex_state = 52, .external_lex_state = 2}, - [668] = {.lex_state = 54, .external_lex_state = 2}, - [669] = {.lex_state = 54, .external_lex_state = 2}, - [670] = {.lex_state = 53, .external_lex_state = 10}, - [671] = {.lex_state = 53, .external_lex_state = 10}, - [672] = {.lex_state = 53, .external_lex_state = 10}, - [673] = {.lex_state = 53, .external_lex_state = 10}, - [674] = {.lex_state = 52, .external_lex_state = 3}, - [675] = {.lex_state = 53, .external_lex_state = 11}, - [676] = {.lex_state = 54, .external_lex_state = 2}, - [677] = {.lex_state = 53, .external_lex_state = 10}, + [667] = {.lex_state = 54, .external_lex_state = 3}, + [668] = {.lex_state = 53, .external_lex_state = 11}, + [669] = {.lex_state = 53, .external_lex_state = 10}, + [670] = {.lex_state = 52, .external_lex_state = 6}, + [671] = {.lex_state = 53, .external_lex_state = 11}, + [672] = {.lex_state = 54, .external_lex_state = 2}, + [673] = {.lex_state = 54, .external_lex_state = 2}, + [674] = {.lex_state = 53, .external_lex_state = 11}, + [675] = {.lex_state = 54, .external_lex_state = 2}, + [676] = {.lex_state = 53, .external_lex_state = 11}, + [677] = {.lex_state = 52, .external_lex_state = 3}, [678] = {.lex_state = 53, .external_lex_state = 10}, - [679] = {.lex_state = 54, .external_lex_state = 2}, - [680] = {.lex_state = 54, .external_lex_state = 2}, - [681] = {.lex_state = 54, .external_lex_state = 3}, - [682] = {.lex_state = 52, .external_lex_state = 2}, - [683] = {.lex_state = 53, .external_lex_state = 11}, - [684] = {.lex_state = 53, .external_lex_state = 11}, - [685] = {.lex_state = 52, .external_lex_state = 6}, - [686] = {.lex_state = 54, .external_lex_state = 3}, - [687] = {.lex_state = 53, .external_lex_state = 11}, - [688] = {.lex_state = 54, .external_lex_state = 2}, - [689] = {.lex_state = 53, .external_lex_state = 11}, - [690] = {.lex_state = 53, .external_lex_state = 11}, - [691] = {.lex_state = 53, .external_lex_state = 10}, - [692] = {.lex_state = 53, .external_lex_state = 10}, - [693] = {.lex_state = 54, .external_lex_state = 2}, - [694] = {.lex_state = 52, .external_lex_state = 3}, - [695] = {.lex_state = 53, .external_lex_state = 11}, - [696] = {.lex_state = 54, .external_lex_state = 3}, + [679] = {.lex_state = 53, .external_lex_state = 10}, + [680] = {.lex_state = 53, .external_lex_state = 10}, + [681] = {.lex_state = 53, .external_lex_state = 11}, + [682] = {.lex_state = 53, .external_lex_state = 10}, + [683] = {.lex_state = 53, .external_lex_state = 10}, + [684] = {.lex_state = 54, .external_lex_state = 3}, + [685] = {.lex_state = 52, .external_lex_state = 2}, + [686] = {.lex_state = 53, .external_lex_state = 11}, + [687] = {.lex_state = 53, .external_lex_state = 10}, + [688] = {.lex_state = 54, .external_lex_state = 3}, + [689] = {.lex_state = 54, .external_lex_state = 3}, + [690] = {.lex_state = 54, .external_lex_state = 3}, + [691] = {.lex_state = 54, .external_lex_state = 3}, + [692] = {.lex_state = 54, .external_lex_state = 2}, + [693] = {.lex_state = 54, .external_lex_state = 3}, + [694] = {.lex_state = 53, .external_lex_state = 10}, + [695] = {.lex_state = 54, .external_lex_state = 3}, + [696] = {.lex_state = 54, .external_lex_state = 2}, [697] = {.lex_state = 52, .external_lex_state = 3}, - [698] = {.lex_state = 53, .external_lex_state = 11}, - [699] = {.lex_state = 53, .external_lex_state = 11}, - [700] = {.lex_state = 52, .external_lex_state = 3}, - [701] = {.lex_state = 53, .external_lex_state = 10}, - [702] = {.lex_state = 52, .external_lex_state = 3}, - [703] = {.lex_state = 52, .external_lex_state = 3}, + [698] = {.lex_state = 52, .external_lex_state = 2}, + [699] = {.lex_state = 52, .external_lex_state = 3}, + [700] = {.lex_state = 52, .external_lex_state = 2}, + [701] = {.lex_state = 52, .external_lex_state = 3}, + [702] = {.lex_state = 52, .external_lex_state = 2}, + [703] = {.lex_state = 52, .external_lex_state = 2}, [704] = {.lex_state = 52, .external_lex_state = 3}, - [705] = {.lex_state = 52, .external_lex_state = 2}, + [705] = {.lex_state = 52, .external_lex_state = 3}, [706] = {.lex_state = 52, .external_lex_state = 2}, [707] = {.lex_state = 52, .external_lex_state = 2}, - [708] = {.lex_state = 52, .external_lex_state = 3}, + [708] = {.lex_state = 52, .external_lex_state = 2}, [709] = {.lex_state = 52, .external_lex_state = 3}, [710] = {.lex_state = 52, .external_lex_state = 2}, - [711] = {.lex_state = 52, .external_lex_state = 2}, + [711] = {.lex_state = 52, .external_lex_state = 3}, [712] = {.lex_state = 52, .external_lex_state = 2}, - [713] = {.lex_state = 52, .external_lex_state = 2}, + [713] = {.lex_state = 52, .external_lex_state = 3}, [714] = {.lex_state = 52, .external_lex_state = 3}, - [715] = {.lex_state = 52, .external_lex_state = 2}, - [716] = {.lex_state = 52, .external_lex_state = 2}, - [717] = {.lex_state = 52, .external_lex_state = 3}, - [718] = {.lex_state = 52, .external_lex_state = 3}, + [715] = {.lex_state = 52, .external_lex_state = 3}, + [716] = {.lex_state = 52, .external_lex_state = 3}, + [717] = {.lex_state = 52, .external_lex_state = 2}, + [718] = {.lex_state = 52, .external_lex_state = 2}, [719] = {.lex_state = 52, .external_lex_state = 2}, [720] = {.lex_state = 52, .external_lex_state = 3}, [721] = {.lex_state = 52, .external_lex_state = 2}, [722] = {.lex_state = 52, .external_lex_state = 3}, [723] = {.lex_state = 52, .external_lex_state = 3}, - [724] = {.lex_state = 52, .external_lex_state = 2}, + [724] = {.lex_state = 52, .external_lex_state = 3}, [725] = {.lex_state = 52, .external_lex_state = 3}, [726] = {.lex_state = 52, .external_lex_state = 3}, - [727] = {.lex_state = 52, .external_lex_state = 8}, - [728] = {.lex_state = 52, .external_lex_state = 8}, - [729] = {.lex_state = 52, .external_lex_state = 2}, - [730] = {.lex_state = 52, .external_lex_state = 2}, + [727] = {.lex_state = 52, .external_lex_state = 2}, + [728] = {.lex_state = 52, .external_lex_state = 3}, + [729] = {.lex_state = 52, .external_lex_state = 3}, + [730] = {.lex_state = 52, .external_lex_state = 3}, [731] = {.lex_state = 52, .external_lex_state = 2}, - [732] = {.lex_state = 52, .external_lex_state = 2}, - [733] = {.lex_state = 52, .external_lex_state = 2}, + [732] = {.lex_state = 52, .external_lex_state = 3}, + [733] = {.lex_state = 52, .external_lex_state = 3}, [734] = {.lex_state = 52, .external_lex_state = 3}, [735] = {.lex_state = 52, .external_lex_state = 3}, - [736] = {.lex_state = 52, .external_lex_state = 2}, - [737] = {.lex_state = 52, .external_lex_state = 2}, - [738] = {.lex_state = 52, .external_lex_state = 2}, - [739] = {.lex_state = 52, .external_lex_state = 2}, - [740] = {.lex_state = 52, .external_lex_state = 2}, - [741] = {.lex_state = 52, .external_lex_state = 2}, - [742] = {.lex_state = 52, .external_lex_state = 2}, - [743] = {.lex_state = 52, .external_lex_state = 2}, - [744] = {.lex_state = 52, .external_lex_state = 2}, + [736] = {.lex_state = 52, .external_lex_state = 3}, + [737] = {.lex_state = 52, .external_lex_state = 3}, + [738] = {.lex_state = 52, .external_lex_state = 3}, + [739] = {.lex_state = 52, .external_lex_state = 3}, + [740] = {.lex_state = 52, .external_lex_state = 3}, + [741] = {.lex_state = 52, .external_lex_state = 3}, + [742] = {.lex_state = 52, .external_lex_state = 3}, + [743] = {.lex_state = 52, .external_lex_state = 3}, + [744] = {.lex_state = 52, .external_lex_state = 3}, [745] = {.lex_state = 52, .external_lex_state = 3}, - [746] = {.lex_state = 52, .external_lex_state = 3}, - [747] = {.lex_state = 52, .external_lex_state = 2}, - [748] = {.lex_state = 52, .external_lex_state = 2}, - [749] = {.lex_state = 52, .external_lex_state = 2}, - [750] = {.lex_state = 52, .external_lex_state = 2}, + [746] = {.lex_state = 52, .external_lex_state = 2}, + [747] = {.lex_state = 52, .external_lex_state = 3}, + [748] = {.lex_state = 52, .external_lex_state = 3}, + [749] = {.lex_state = 52, .external_lex_state = 3}, + [750] = {.lex_state = 52, .external_lex_state = 3}, [751] = {.lex_state = 52, .external_lex_state = 3}, [752] = {.lex_state = 52, .external_lex_state = 2}, [753] = {.lex_state = 52, .external_lex_state = 3}, @@ -8258,92 +8282,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [759] = {.lex_state = 52, .external_lex_state = 3}, [760] = {.lex_state = 52, .external_lex_state = 3}, [761] = {.lex_state = 52, .external_lex_state = 3}, - [762] = {.lex_state = 52, .external_lex_state = 3}, + [762] = {.lex_state = 52, .external_lex_state = 2}, [763] = {.lex_state = 52, .external_lex_state = 3}, - [764] = {.lex_state = 52, .external_lex_state = 3}, - [765] = {.lex_state = 52, .external_lex_state = 2}, + [764] = {.lex_state = 52, .external_lex_state = 2}, + [765] = {.lex_state = 52, .external_lex_state = 3}, [766] = {.lex_state = 52, .external_lex_state = 3}, - [767] = {.lex_state = 52, .external_lex_state = 2}, - [768] = {.lex_state = 52, .external_lex_state = 2}, - [769] = {.lex_state = 52, .external_lex_state = 8}, - [770] = {.lex_state = 52, .external_lex_state = 2}, - [771] = {.lex_state = 52, .external_lex_state = 2}, - [772] = {.lex_state = 52, .external_lex_state = 2}, - [773] = {.lex_state = 52, .external_lex_state = 2}, + [767] = {.lex_state = 52, .external_lex_state = 3}, + [768] = {.lex_state = 52, .external_lex_state = 3}, + [769] = {.lex_state = 52, .external_lex_state = 3}, + [770] = {.lex_state = 52, .external_lex_state = 3}, + [771] = {.lex_state = 52, .external_lex_state = 7}, + [772] = {.lex_state = 52, .external_lex_state = 3}, + [773] = {.lex_state = 52, .external_lex_state = 3}, [774] = {.lex_state = 52, .external_lex_state = 3}, - [775] = {.lex_state = 52, .external_lex_state = 3}, - [776] = {.lex_state = 52, .external_lex_state = 2}, + [775] = {.lex_state = 52, .external_lex_state = 2}, + [776] = {.lex_state = 52, .external_lex_state = 3}, [777] = {.lex_state = 52, .external_lex_state = 2}, - [778] = {.lex_state = 52, .external_lex_state = 2}, + [778] = {.lex_state = 52, .external_lex_state = 3}, [779] = {.lex_state = 52, .external_lex_state = 2}, [780] = {.lex_state = 52, .external_lex_state = 3}, - [781] = {.lex_state = 52, .external_lex_state = 2}, + [781] = {.lex_state = 52, .external_lex_state = 3}, [782] = {.lex_state = 52, .external_lex_state = 3}, [783] = {.lex_state = 52, .external_lex_state = 2}, - [784] = {.lex_state = 52, .external_lex_state = 2}, - [785] = {.lex_state = 52, .external_lex_state = 2}, - [786] = {.lex_state = 52, .external_lex_state = 3}, + [784] = {.lex_state = 52, .external_lex_state = 3}, + [785] = {.lex_state = 52, .external_lex_state = 3}, + [786] = {.lex_state = 52, .external_lex_state = 2}, [787] = {.lex_state = 52, .external_lex_state = 2}, [788] = {.lex_state = 52, .external_lex_state = 2}, - [789] = {.lex_state = 52, .external_lex_state = 3}, - [790] = {.lex_state = 52, .external_lex_state = 3}, + [789] = {.lex_state = 52, .external_lex_state = 2}, + [790] = {.lex_state = 52, .external_lex_state = 2}, [791] = {.lex_state = 52, .external_lex_state = 2}, - [792] = {.lex_state = 52, .external_lex_state = 2}, - [793] = {.lex_state = 52, .external_lex_state = 3}, + [792] = {.lex_state = 52, .external_lex_state = 3}, + [793] = {.lex_state = 52, .external_lex_state = 2}, [794] = {.lex_state = 52, .external_lex_state = 2}, [795] = {.lex_state = 52, .external_lex_state = 2}, - [796] = {.lex_state = 52, .external_lex_state = 3}, - [797] = {.lex_state = 52, .external_lex_state = 3}, - [798] = {.lex_state = 52, .external_lex_state = 3}, - [799] = {.lex_state = 52, .external_lex_state = 3}, - [800] = {.lex_state = 52, .external_lex_state = 2}, - [801] = {.lex_state = 52, .external_lex_state = 3}, + [796] = {.lex_state = 52, .external_lex_state = 2}, + [797] = {.lex_state = 52, .external_lex_state = 2}, + [798] = {.lex_state = 52, .external_lex_state = 2}, + [799] = {.lex_state = 52, .external_lex_state = 8}, + [800] = {.lex_state = 52, .external_lex_state = 3}, + [801] = {.lex_state = 52, .external_lex_state = 2}, [802] = {.lex_state = 52, .external_lex_state = 2}, - [803] = {.lex_state = 52, .external_lex_state = 3}, - [804] = {.lex_state = 52, .external_lex_state = 7}, - [805] = {.lex_state = 52, .external_lex_state = 3}, - [806] = {.lex_state = 52, .external_lex_state = 3}, - [807] = {.lex_state = 52, .external_lex_state = 2}, - [808] = {.lex_state = 52, .external_lex_state = 2}, + [803] = {.lex_state = 52, .external_lex_state = 2}, + [804] = {.lex_state = 52, .external_lex_state = 2}, + [805] = {.lex_state = 52, .external_lex_state = 2}, + [806] = {.lex_state = 52, .external_lex_state = 2}, + [807] = {.lex_state = 52, .external_lex_state = 7}, + [808] = {.lex_state = 52, .external_lex_state = 3}, [809] = {.lex_state = 52, .external_lex_state = 2}, - [810] = {.lex_state = 52, .external_lex_state = 7}, + [810] = {.lex_state = 52, .external_lex_state = 2}, [811] = {.lex_state = 52, .external_lex_state = 3}, - [812] = {.lex_state = 52, .external_lex_state = 3}, + [812] = {.lex_state = 52, .external_lex_state = 2}, [813] = {.lex_state = 52, .external_lex_state = 2}, - [814] = {.lex_state = 52, .external_lex_state = 3}, - [815] = {.lex_state = 52, .external_lex_state = 3}, - [816] = {.lex_state = 52, .external_lex_state = 3}, + [814] = {.lex_state = 52, .external_lex_state = 2}, + [815] = {.lex_state = 52, .external_lex_state = 2}, + [816] = {.lex_state = 52, .external_lex_state = 2}, [817] = {.lex_state = 52, .external_lex_state = 2}, - [818] = {.lex_state = 52, .external_lex_state = 3}, + [818] = {.lex_state = 52, .external_lex_state = 2}, [819] = {.lex_state = 52, .external_lex_state = 2}, - [820] = {.lex_state = 52, .external_lex_state = 3}, - [821] = {.lex_state = 52, .external_lex_state = 3}, - [822] = {.lex_state = 52, .external_lex_state = 3}, + [820] = {.lex_state = 52, .external_lex_state = 2}, + [821] = {.lex_state = 52, .external_lex_state = 2}, + [822] = {.lex_state = 52, .external_lex_state = 2}, [823] = {.lex_state = 52, .external_lex_state = 2}, - [824] = {.lex_state = 52, .external_lex_state = 3}, - [825] = {.lex_state = 52, .external_lex_state = 3}, + [824] = {.lex_state = 52, .external_lex_state = 2}, + [825] = {.lex_state = 52, .external_lex_state = 2}, [826] = {.lex_state = 52, .external_lex_state = 2}, [827] = {.lex_state = 52, .external_lex_state = 2}, [828] = {.lex_state = 52, .external_lex_state = 2}, [829] = {.lex_state = 52, .external_lex_state = 2}, - [830] = {.lex_state = 52, .external_lex_state = 3}, + [830] = {.lex_state = 52, .external_lex_state = 2}, [831] = {.lex_state = 52, .external_lex_state = 2}, - [832] = {.lex_state = 52, .external_lex_state = 3}, + [832] = {.lex_state = 52, .external_lex_state = 2}, [833] = {.lex_state = 52, .external_lex_state = 2}, - [834] = {.lex_state = 52, .external_lex_state = 3}, - [835] = {.lex_state = 52, .external_lex_state = 3}, - [836] = {.lex_state = 52, .external_lex_state = 3}, - [837] = {.lex_state = 52, .external_lex_state = 8}, - [838] = {.lex_state = 52, .external_lex_state = 3}, - [839] = {.lex_state = 52, .external_lex_state = 3}, - [840] = {.lex_state = 52, .external_lex_state = 2}, + [834] = {.lex_state = 52, .external_lex_state = 2}, + [835] = {.lex_state = 52, .external_lex_state = 2}, + [836] = {.lex_state = 52, .external_lex_state = 2}, + [837] = {.lex_state = 52, .external_lex_state = 2}, + [838] = {.lex_state = 52, .external_lex_state = 2}, + [839] = {.lex_state = 52, .external_lex_state = 2}, + [840] = {.lex_state = 52, .external_lex_state = 8}, [841] = {.lex_state = 52, .external_lex_state = 2}, [842] = {.lex_state = 52, .external_lex_state = 2}, - [843] = {.lex_state = 52, .external_lex_state = 2}, - [844] = {.lex_state = 52, .external_lex_state = 3}, - [845] = {.lex_state = 52, .external_lex_state = 2}, - [846] = {.lex_state = 52, .external_lex_state = 3}, - [847] = {.lex_state = 52, .external_lex_state = 3}, + [843] = {.lex_state = 52, .external_lex_state = 3}, + [844] = {.lex_state = 52, .external_lex_state = 2}, + [845] = {.lex_state = 52, .external_lex_state = 3}, + [846] = {.lex_state = 52, .external_lex_state = 2}, + [847] = {.lex_state = 52, .external_lex_state = 2}, [848] = {.lex_state = 52, .external_lex_state = 2}, [849] = {.lex_state = 52, .external_lex_state = 2}, [850] = {.lex_state = 52, .external_lex_state = 2}, @@ -8356,17 +8380,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [857] = {.lex_state = 52, .external_lex_state = 2}, [858] = {.lex_state = 52, .external_lex_state = 2}, [859] = {.lex_state = 52, .external_lex_state = 2}, - [860] = {.lex_state = 52, .external_lex_state = 8}, + [860] = {.lex_state = 52, .external_lex_state = 2}, [861] = {.lex_state = 52, .external_lex_state = 2}, [862] = {.lex_state = 52, .external_lex_state = 2}, [863] = {.lex_state = 52, .external_lex_state = 2}, [864] = {.lex_state = 52, .external_lex_state = 2}, [865] = {.lex_state = 52, .external_lex_state = 2}, [866] = {.lex_state = 52, .external_lex_state = 2}, - [867] = {.lex_state = 52, .external_lex_state = 2}, + [867] = {.lex_state = 13, .external_lex_state = 9}, [868] = {.lex_state = 52, .external_lex_state = 2}, [869] = {.lex_state = 52, .external_lex_state = 2}, - [870] = {.lex_state = 13, .external_lex_state = 9}, + [870] = {.lex_state = 52, .external_lex_state = 2}, [871] = {.lex_state = 52, .external_lex_state = 2}, [872] = {.lex_state = 52, .external_lex_state = 2}, [873] = {.lex_state = 52, .external_lex_state = 2}, @@ -8392,7 +8416,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [893] = {.lex_state = 52, .external_lex_state = 2}, [894] = {.lex_state = 52, .external_lex_state = 2}, [895] = {.lex_state = 52, .external_lex_state = 2}, - [896] = {.lex_state = 52, .external_lex_state = 2}, + [896] = {.lex_state = 13, .external_lex_state = 12}, [897] = {.lex_state = 52, .external_lex_state = 2}, [898] = {.lex_state = 52, .external_lex_state = 2}, [899] = {.lex_state = 52, .external_lex_state = 2}, @@ -8423,8 +8447,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [924] = {.lex_state = 52, .external_lex_state = 2}, [925] = {.lex_state = 52, .external_lex_state = 2}, [926] = {.lex_state = 52, .external_lex_state = 2}, - [927] = {.lex_state = 13, .external_lex_state = 12}, - [928] = {.lex_state = 13, .external_lex_state = 13}, + [927] = {.lex_state = 52, .external_lex_state = 2}, + [928] = {.lex_state = 52, .external_lex_state = 2}, [929] = {.lex_state = 52, .external_lex_state = 2}, [930] = {.lex_state = 52, .external_lex_state = 2}, [931] = {.lex_state = 52, .external_lex_state = 2}, @@ -8433,7 +8457,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [934] = {.lex_state = 52, .external_lex_state = 2}, [935] = {.lex_state = 52, .external_lex_state = 2}, [936] = {.lex_state = 52, .external_lex_state = 2}, - [937] = {.lex_state = 52, .external_lex_state = 2}, + [937] = {.lex_state = 13, .external_lex_state = 12}, [938] = {.lex_state = 52, .external_lex_state = 2}, [939] = {.lex_state = 52, .external_lex_state = 2}, [940] = {.lex_state = 52, .external_lex_state = 2}, @@ -8443,7 +8467,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [944] = {.lex_state = 52, .external_lex_state = 2}, [945] = {.lex_state = 52, .external_lex_state = 2}, [946] = {.lex_state = 52, .external_lex_state = 2}, - [947] = {.lex_state = 52, .external_lex_state = 2}, + [947] = {.lex_state = 13, .external_lex_state = 13}, [948] = {.lex_state = 52, .external_lex_state = 2}, [949] = {.lex_state = 52, .external_lex_state = 2}, [950] = {.lex_state = 52, .external_lex_state = 2}, @@ -8456,583 +8480,583 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [957] = {.lex_state = 52, .external_lex_state = 2}, [958] = {.lex_state = 52, .external_lex_state = 2}, [959] = {.lex_state = 52, .external_lex_state = 2}, - [960] = {.lex_state = 52, .external_lex_state = 2}, - [961] = {.lex_state = 52, .external_lex_state = 2}, - [962] = {.lex_state = 52, .external_lex_state = 2}, - [963] = {.lex_state = 52, .external_lex_state = 2}, - [964] = {.lex_state = 13, .external_lex_state = 12}, - [965] = {.lex_state = 52, .external_lex_state = 2}, - [966] = {.lex_state = 13, .external_lex_state = 4}, - [967] = {.lex_state = 13, .external_lex_state = 14}, + [960] = {.lex_state = 13, .external_lex_state = 4}, + [961] = {.lex_state = 13, .external_lex_state = 9}, + [962] = {.lex_state = 13, .external_lex_state = 4}, + [963] = {.lex_state = 13, .external_lex_state = 4}, + [964] = {.lex_state = 13, .external_lex_state = 14}, + [965] = {.lex_state = 13, .external_lex_state = 15}, + [966] = {.lex_state = 13, .external_lex_state = 7}, + [967] = {.lex_state = 13, .external_lex_state = 6}, [968] = {.lex_state = 13, .external_lex_state = 9}, - [969] = {.lex_state = 13, .external_lex_state = 4}, - [970] = {.lex_state = 13, .external_lex_state = 4}, - [971] = {.lex_state = 13, .external_lex_state = 15}, - [972] = {.lex_state = 13, .external_lex_state = 14}, - [973] = {.lex_state = 13, .external_lex_state = 9}, + [969] = {.lex_state = 13, .external_lex_state = 6}, + [970] = {.lex_state = 13, .external_lex_state = 7}, + [971] = {.lex_state = 13, .external_lex_state = 9}, + [972] = {.lex_state = 13, .external_lex_state = 6}, + [973] = {.lex_state = 13, .external_lex_state = 6}, [974] = {.lex_state = 13, .external_lex_state = 9}, [975] = {.lex_state = 13, .external_lex_state = 9}, [976] = {.lex_state = 13, .external_lex_state = 9}, - [977] = {.lex_state = 13, .external_lex_state = 7}, - [978] = {.lex_state = 13, .external_lex_state = 7}, - [979] = {.lex_state = 13, .external_lex_state = 7}, - [980] = {.lex_state = 13, .external_lex_state = 6}, - [981] = {.lex_state = 13, .external_lex_state = 6}, - [982] = {.lex_state = 13, .external_lex_state = 6}, - [983] = {.lex_state = 13, .external_lex_state = 6}, - [984] = {.lex_state = 13, .external_lex_state = 6}, - [985] = {.lex_state = 13, .external_lex_state = 6}, - [986] = {.lex_state = 13, .external_lex_state = 9}, - [987] = {.lex_state = 13, .external_lex_state = 9}, - [988] = {.lex_state = 13, .external_lex_state = 9}, - [989] = {.lex_state = 13, .external_lex_state = 9}, - [990] = {.lex_state = 13, .external_lex_state = 9}, - [991] = {.lex_state = 13, .external_lex_state = 9}, - [992] = {.lex_state = 13, .external_lex_state = 13}, + [977] = {.lex_state = 13, .external_lex_state = 9}, + [978] = {.lex_state = 13, .external_lex_state = 6}, + [979] = {.lex_state = 13, .external_lex_state = 9}, + [980] = {.lex_state = 13, .external_lex_state = 9}, + [981] = {.lex_state = 13, .external_lex_state = 9}, + [982] = {.lex_state = 13, .external_lex_state = 15}, + [983] = {.lex_state = 13, .external_lex_state = 13}, + [984] = {.lex_state = 13, .external_lex_state = 9}, + [985] = {.lex_state = 13, .external_lex_state = 7}, + [986] = {.lex_state = 13, .external_lex_state = 6}, + [987] = {.lex_state = 13, .external_lex_state = 12}, + [988] = {.lex_state = 13, .external_lex_state = 8}, + [989] = {.lex_state = 13, .external_lex_state = 13}, + [990] = {.lex_state = 13, .external_lex_state = 12}, + [991] = {.lex_state = 13, .external_lex_state = 2}, + [992] = {.lex_state = 14, .external_lex_state = 9}, [993] = {.lex_state = 13, .external_lex_state = 12}, - [994] = {.lex_state = 13, .external_lex_state = 2}, - [995] = {.lex_state = 13, .external_lex_state = 2}, - [996] = {.lex_state = 14, .external_lex_state = 13}, - [997] = {.lex_state = 14, .external_lex_state = 13}, - [998] = {.lex_state = 13, .external_lex_state = 12}, - [999] = {.lex_state = 13, .external_lex_state = 12}, - [1000] = {.lex_state = 14, .external_lex_state = 9}, + [994] = {.lex_state = 13, .external_lex_state = 12}, + [995] = {.lex_state = 13, .external_lex_state = 12}, + [996] = {.lex_state = 13, .external_lex_state = 12}, + [997] = {.lex_state = 14, .external_lex_state = 9}, + [998] = {.lex_state = 13, .external_lex_state = 8}, + [999] = {.lex_state = 14, .external_lex_state = 9}, + [1000] = {.lex_state = 13, .external_lex_state = 13}, [1001] = {.lex_state = 13, .external_lex_state = 4}, - [1002] = {.lex_state = 13, .external_lex_state = 12}, - [1003] = {.lex_state = 13, .external_lex_state = 12}, - [1004] = {.lex_state = 13, .external_lex_state = 12}, - [1005] = {.lex_state = 13, .external_lex_state = 12}, - [1006] = {.lex_state = 13, .external_lex_state = 12}, + [1002] = {.lex_state = 13, .external_lex_state = 13}, + [1003] = {.lex_state = 13, .external_lex_state = 13}, + [1004] = {.lex_state = 13, .external_lex_state = 13}, + [1005] = {.lex_state = 13, .external_lex_state = 13}, + [1006] = {.lex_state = 13, .external_lex_state = 13}, [1007] = {.lex_state = 13, .external_lex_state = 12}, [1008] = {.lex_state = 13, .external_lex_state = 12}, [1009] = {.lex_state = 13, .external_lex_state = 12}, - [1010] = {.lex_state = 13, .external_lex_state = 13}, - [1011] = {.lex_state = 13, .external_lex_state = 13}, - [1012] = {.lex_state = 14, .external_lex_state = 9}, - [1013] = {.lex_state = 13, .external_lex_state = 12}, + [1010] = {.lex_state = 13, .external_lex_state = 12}, + [1011] = {.lex_state = 13, .external_lex_state = 12}, + [1012] = {.lex_state = 13, .external_lex_state = 12}, + [1013] = {.lex_state = 13, .external_lex_state = 2}, [1014] = {.lex_state = 13, .external_lex_state = 12}, - [1015] = {.lex_state = 13, .external_lex_state = 4}, + [1015] = {.lex_state = 13, .external_lex_state = 12}, [1016] = {.lex_state = 13, .external_lex_state = 12}, - [1017] = {.lex_state = 13, .external_lex_state = 13}, + [1017] = {.lex_state = 13, .external_lex_state = 12}, [1018] = {.lex_state = 13, .external_lex_state = 12}, [1019] = {.lex_state = 13, .external_lex_state = 12}, - [1020] = {.lex_state = 13, .external_lex_state = 8}, + [1020] = {.lex_state = 13, .external_lex_state = 12}, [1021] = {.lex_state = 13, .external_lex_state = 12}, - [1022] = {.lex_state = 13, .external_lex_state = 12}, + [1022] = {.lex_state = 13, .external_lex_state = 13}, [1023] = {.lex_state = 13, .external_lex_state = 12}, - [1024] = {.lex_state = 13, .external_lex_state = 12}, - [1025] = {.lex_state = 13, .external_lex_state = 2}, - [1026] = {.lex_state = 14, .external_lex_state = 9}, + [1024] = {.lex_state = 13, .external_lex_state = 2}, + [1025] = {.lex_state = 13, .external_lex_state = 12}, + [1026] = {.lex_state = 13, .external_lex_state = 12}, [1027] = {.lex_state = 13, .external_lex_state = 12}, - [1028] = {.lex_state = 13, .external_lex_state = 12}, - [1029] = {.lex_state = 13, .external_lex_state = 12}, + [1028] = {.lex_state = 13, .external_lex_state = 8}, + [1029] = {.lex_state = 13, .external_lex_state = 15}, [1030] = {.lex_state = 13, .external_lex_state = 12}, - [1031] = {.lex_state = 13, .external_lex_state = 12}, - [1032] = {.lex_state = 13, .external_lex_state = 12}, - [1033] = {.lex_state = 13, .external_lex_state = 14}, - [1034] = {.lex_state = 13, .external_lex_state = 8}, - [1035] = {.lex_state = 13, .external_lex_state = 8}, - [1036] = {.lex_state = 13, .external_lex_state = 8}, - [1037] = {.lex_state = 13, .external_lex_state = 13}, - [1038] = {.lex_state = 13, .external_lex_state = 13}, - [1039] = {.lex_state = 13, .external_lex_state = 13}, - [1040] = {.lex_state = 13, .external_lex_state = 13}, - [1041] = {.lex_state = 13, .external_lex_state = 13}, - [1042] = {.lex_state = 13, .external_lex_state = 13}, - [1043] = {.lex_state = 13, .external_lex_state = 13}, - [1044] = {.lex_state = 13, .external_lex_state = 8}, - [1045] = {.lex_state = 13, .external_lex_state = 13}, - [1046] = {.lex_state = 13, .external_lex_state = 8}, - [1047] = {.lex_state = 13, .external_lex_state = 12}, - [1048] = {.lex_state = 13, .external_lex_state = 12}, - [1049] = {.lex_state = 13, .external_lex_state = 9}, - [1050] = {.lex_state = 13, .external_lex_state = 9}, + [1031] = {.lex_state = 13, .external_lex_state = 13}, + [1032] = {.lex_state = 13, .external_lex_state = 13}, + [1033] = {.lex_state = 13, .external_lex_state = 12}, + [1034] = {.lex_state = 13, .external_lex_state = 13}, + [1035] = {.lex_state = 13, .external_lex_state = 4}, + [1036] = {.lex_state = 14, .external_lex_state = 13}, + [1037] = {.lex_state = 14, .external_lex_state = 13}, + [1038] = {.lex_state = 13, .external_lex_state = 12}, + [1039] = {.lex_state = 13, .external_lex_state = 12}, + [1040] = {.lex_state = 13, .external_lex_state = 7}, + [1041] = {.lex_state = 13, .external_lex_state = 14}, + [1042] = {.lex_state = 14, .external_lex_state = 13}, + [1043] = {.lex_state = 13, .external_lex_state = 14}, + [1044] = {.lex_state = 13, .external_lex_state = 9}, + [1045] = {.lex_state = 13, .external_lex_state = 9}, + [1046] = {.lex_state = 14, .external_lex_state = 15}, + [1047] = {.lex_state = 14, .external_lex_state = 15}, + [1048] = {.lex_state = 13, .external_lex_state = 7}, + [1049] = {.lex_state = 13, .external_lex_state = 14}, + [1050] = {.lex_state = 14, .external_lex_state = 13}, [1051] = {.lex_state = 14, .external_lex_state = 12}, - [1052] = {.lex_state = 13, .external_lex_state = 15}, - [1053] = {.lex_state = 13, .external_lex_state = 15}, - [1054] = {.lex_state = 13, .external_lex_state = 7}, - [1055] = {.lex_state = 13, .external_lex_state = 14}, - [1056] = {.lex_state = 14, .external_lex_state = 12}, - [1057] = {.lex_state = 14, .external_lex_state = 12}, - [1058] = {.lex_state = 14, .external_lex_state = 12}, - [1059] = {.lex_state = 13, .external_lex_state = 9}, - [1060] = {.lex_state = 13, .external_lex_state = 15}, - [1061] = {.lex_state = 13, .external_lex_state = 15}, + [1052] = {.lex_state = 13, .external_lex_state = 9}, + [1053] = {.lex_state = 14, .external_lex_state = 15}, + [1054] = {.lex_state = 14, .external_lex_state = 12}, + [1055] = {.lex_state = 13, .external_lex_state = 6}, + [1056] = {.lex_state = 13, .external_lex_state = 8}, + [1057] = {.lex_state = 13, .external_lex_state = 9}, + [1058] = {.lex_state = 13, .external_lex_state = 15}, + [1059] = {.lex_state = 13, .external_lex_state = 8}, + [1060] = {.lex_state = 13, .external_lex_state = 14}, + [1061] = {.lex_state = 13, .external_lex_state = 14}, [1062] = {.lex_state = 13, .external_lex_state = 15}, - [1063] = {.lex_state = 13, .external_lex_state = 15}, + [1063] = {.lex_state = 13, .external_lex_state = 6}, [1064] = {.lex_state = 13, .external_lex_state = 15}, - [1065] = {.lex_state = 13, .external_lex_state = 6}, - [1066] = {.lex_state = 14, .external_lex_state = 13}, - [1067] = {.lex_state = 14, .external_lex_state = 13}, - [1068] = {.lex_state = 14, .external_lex_state = 13}, - [1069] = {.lex_state = 13, .external_lex_state = 15}, - [1070] = {.lex_state = 13, .external_lex_state = 15}, - [1071] = {.lex_state = 13, .external_lex_state = 14}, - [1072] = {.lex_state = 13, .external_lex_state = 15}, - [1073] = {.lex_state = 13, .external_lex_state = 9}, - [1074] = {.lex_state = 13, .external_lex_state = 6}, + [1065] = {.lex_state = 13, .external_lex_state = 9}, + [1066] = {.lex_state = 13, .external_lex_state = 9}, + [1067] = {.lex_state = 13, .external_lex_state = 9}, + [1068] = {.lex_state = 14, .external_lex_state = 12}, + [1069] = {.lex_state = 13, .external_lex_state = 9}, + [1070] = {.lex_state = 14, .external_lex_state = 12}, + [1071] = {.lex_state = 14, .external_lex_state = 13}, + [1072] = {.lex_state = 14, .external_lex_state = 12}, + [1073] = {.lex_state = 13, .external_lex_state = 15}, + [1074] = {.lex_state = 14, .external_lex_state = 12}, [1075] = {.lex_state = 13, .external_lex_state = 9}, - [1076] = {.lex_state = 13, .external_lex_state = 9}, + [1076] = {.lex_state = 14, .external_lex_state = 13}, [1077] = {.lex_state = 13, .external_lex_state = 9}, [1078] = {.lex_state = 13, .external_lex_state = 9}, [1079] = {.lex_state = 13, .external_lex_state = 9}, - [1080] = {.lex_state = 13, .external_lex_state = 9}, - [1081] = {.lex_state = 13, .external_lex_state = 9}, - [1082] = {.lex_state = 14, .external_lex_state = 12}, + [1080] = {.lex_state = 13, .external_lex_state = 6}, + [1081] = {.lex_state = 14, .external_lex_state = 12}, + [1082] = {.lex_state = 13, .external_lex_state = 9}, [1083] = {.lex_state = 13, .external_lex_state = 9}, [1084] = {.lex_state = 13, .external_lex_state = 9}, - [1085] = {.lex_state = 13, .external_lex_state = 9}, - [1086] = {.lex_state = 14, .external_lex_state = 14}, - [1087] = {.lex_state = 14, .external_lex_state = 14}, - [1088] = {.lex_state = 13, .external_lex_state = 14}, - [1089] = {.lex_state = 13, .external_lex_state = 9}, - [1090] = {.lex_state = 13, .external_lex_state = 14}, - [1091] = {.lex_state = 13, .external_lex_state = 9}, + [1085] = {.lex_state = 13, .external_lex_state = 14}, + [1086] = {.lex_state = 13, .external_lex_state = 9}, + [1087] = {.lex_state = 13, .external_lex_state = 8}, + [1088] = {.lex_state = 13, .external_lex_state = 15}, + [1089] = {.lex_state = 14, .external_lex_state = 9}, + [1090] = {.lex_state = 14, .external_lex_state = 9}, + [1091] = {.lex_state = 13, .external_lex_state = 15}, [1092] = {.lex_state = 13, .external_lex_state = 9}, [1093] = {.lex_state = 13, .external_lex_state = 9}, - [1094] = {.lex_state = 13, .external_lex_state = 6}, - [1095] = {.lex_state = 13, .external_lex_state = 9}, - [1096] = {.lex_state = 13, .external_lex_state = 14}, - [1097] = {.lex_state = 13, .external_lex_state = 14}, + [1094] = {.lex_state = 13, .external_lex_state = 15}, + [1095] = {.lex_state = 13, .external_lex_state = 7}, + [1096] = {.lex_state = 14, .external_lex_state = 12}, + [1097] = {.lex_state = 13, .external_lex_state = 9}, [1098] = {.lex_state = 13, .external_lex_state = 9}, - [1099] = {.lex_state = 13, .external_lex_state = 6}, - [1100] = {.lex_state = 13, .external_lex_state = 14}, - [1101] = {.lex_state = 13, .external_lex_state = 14}, - [1102] = {.lex_state = 13, .external_lex_state = 14}, - [1103] = {.lex_state = 13, .external_lex_state = 14}, + [1099] = {.lex_state = 13, .external_lex_state = 9}, + [1100] = {.lex_state = 13, .external_lex_state = 9}, + [1101] = {.lex_state = 13, .external_lex_state = 15}, + [1102] = {.lex_state = 13, .external_lex_state = 9}, + [1103] = {.lex_state = 13, .external_lex_state = 9}, [1104] = {.lex_state = 13, .external_lex_state = 14}, - [1105] = {.lex_state = 13, .external_lex_state = 14}, - [1106] = {.lex_state = 13, .external_lex_state = 14}, - [1107] = {.lex_state = 13, .external_lex_state = 14}, + [1105] = {.lex_state = 13, .external_lex_state = 9}, + [1106] = {.lex_state = 13, .external_lex_state = 9}, + [1107] = {.lex_state = 13, .external_lex_state = 9}, [1108] = {.lex_state = 13, .external_lex_state = 9}, - [1109] = {.lex_state = 13, .external_lex_state = 9}, - [1110] = {.lex_state = 13, .external_lex_state = 7}, - [1111] = {.lex_state = 14, .external_lex_state = 12}, - [1112] = {.lex_state = 14, .external_lex_state = 12}, - [1113] = {.lex_state = 14, .external_lex_state = 12}, + [1109] = {.lex_state = 13, .external_lex_state = 15}, + [1110] = {.lex_state = 13, .external_lex_state = 14}, + [1111] = {.lex_state = 13, .external_lex_state = 14}, + [1112] = {.lex_state = 14, .external_lex_state = 13}, + [1113] = {.lex_state = 13, .external_lex_state = 9}, [1114] = {.lex_state = 13, .external_lex_state = 9}, - [1115] = {.lex_state = 13, .external_lex_state = 9}, - [1116] = {.lex_state = 13, .external_lex_state = 7}, - [1117] = {.lex_state = 13, .external_lex_state = 7}, + [1115] = {.lex_state = 14, .external_lex_state = 12}, + [1116] = {.lex_state = 13, .external_lex_state = 9}, + [1117] = {.lex_state = 13, .external_lex_state = 15}, [1118] = {.lex_state = 13, .external_lex_state = 9}, - [1119] = {.lex_state = 13, .external_lex_state = 9}, - [1120] = {.lex_state = 13, .external_lex_state = 9}, + [1119] = {.lex_state = 14, .external_lex_state = 12}, + [1120] = {.lex_state = 14, .external_lex_state = 12}, [1121] = {.lex_state = 13, .external_lex_state = 9}, - [1122] = {.lex_state = 14, .external_lex_state = 14}, - [1123] = {.lex_state = 14, .external_lex_state = 14}, - [1124] = {.lex_state = 14, .external_lex_state = 14}, - [1125] = {.lex_state = 13, .external_lex_state = 14}, + [1122] = {.lex_state = 14, .external_lex_state = 12}, + [1123] = {.lex_state = 14, .external_lex_state = 13}, + [1124] = {.lex_state = 13, .external_lex_state = 7}, + [1125] = {.lex_state = 13, .external_lex_state = 7}, [1126] = {.lex_state = 13, .external_lex_state = 9}, [1127] = {.lex_state = 13, .external_lex_state = 14}, - [1128] = {.lex_state = 14, .external_lex_state = 13}, - [1129] = {.lex_state = 14, .external_lex_state = 12}, - [1130] = {.lex_state = 14, .external_lex_state = 12}, - [1131] = {.lex_state = 13, .external_lex_state = 9}, - [1132] = {.lex_state = 13, .external_lex_state = 7}, - [1133] = {.lex_state = 13, .external_lex_state = 14}, - [1134] = {.lex_state = 13, .external_lex_state = 9}, - [1135] = {.lex_state = 13, .external_lex_state = 9}, - [1136] = {.lex_state = 14, .external_lex_state = 9}, - [1137] = {.lex_state = 14, .external_lex_state = 9}, - [1138] = {.lex_state = 13, .external_lex_state = 14}, - [1139] = {.lex_state = 13, .external_lex_state = 14}, - [1140] = {.lex_state = 13, .external_lex_state = 9}, - [1141] = {.lex_state = 14, .external_lex_state = 13}, - [1142] = {.lex_state = 14, .external_lex_state = 13}, - [1143] = {.lex_state = 13, .external_lex_state = 9}, - [1144] = {.lex_state = 14, .external_lex_state = 12}, - [1145] = {.lex_state = 13, .external_lex_state = 9}, - [1146] = {.lex_state = 14, .external_lex_state = 12}, - [1147] = {.lex_state = 13, .external_lex_state = 9}, - [1148] = {.lex_state = 13, .external_lex_state = 14}, - [1149] = {.lex_state = 14, .external_lex_state = 13}, - [1150] = {.lex_state = 13, .external_lex_state = 13}, + [1128] = {.lex_state = 13, .external_lex_state = 9}, + [1129] = {.lex_state = 13, .external_lex_state = 9}, + [1130] = {.lex_state = 13, .external_lex_state = 6}, + [1131] = {.lex_state = 13, .external_lex_state = 13}, + [1132] = {.lex_state = 13, .external_lex_state = 12}, + [1133] = {.lex_state = 13, .external_lex_state = 12}, + [1134] = {.lex_state = 13, .external_lex_state = 12}, + [1135] = {.lex_state = 13, .external_lex_state = 13}, + [1136] = {.lex_state = 13, .external_lex_state = 13}, + [1137] = {.lex_state = 13, .external_lex_state = 13}, + [1138] = {.lex_state = 13, .external_lex_state = 12}, + [1139] = {.lex_state = 13, .external_lex_state = 12}, + [1140] = {.lex_state = 13, .external_lex_state = 13}, + [1141] = {.lex_state = 13, .external_lex_state = 12}, + [1142] = {.lex_state = 13, .external_lex_state = 13}, + [1143] = {.lex_state = 13, .external_lex_state = 13}, + [1144] = {.lex_state = 14, .external_lex_state = 13}, + [1145] = {.lex_state = 13, .external_lex_state = 12}, + [1146] = {.lex_state = 13, .external_lex_state = 12}, + [1147] = {.lex_state = 13, .external_lex_state = 12}, + [1148] = {.lex_state = 13, .external_lex_state = 2}, + [1149] = {.lex_state = 13, .external_lex_state = 12}, + [1150] = {.lex_state = 13, .external_lex_state = 12}, [1151] = {.lex_state = 13, .external_lex_state = 13}, [1152] = {.lex_state = 13, .external_lex_state = 12}, - [1153] = {.lex_state = 13, .external_lex_state = 12}, + [1153] = {.lex_state = 13, .external_lex_state = 13}, [1154] = {.lex_state = 13, .external_lex_state = 12}, - [1155] = {.lex_state = 13, .external_lex_state = 12}, + [1155] = {.lex_state = 13, .external_lex_state = 13}, [1156] = {.lex_state = 13, .external_lex_state = 12}, [1157] = {.lex_state = 13, .external_lex_state = 12}, - [1158] = {.lex_state = 13, .external_lex_state = 13}, - [1159] = {.lex_state = 14, .external_lex_state = 14}, - [1160] = {.lex_state = 14, .external_lex_state = 14}, - [1161] = {.lex_state = 14, .external_lex_state = 14}, + [1158] = {.lex_state = 13, .external_lex_state = 12}, + [1159] = {.lex_state = 13, .external_lex_state = 12}, + [1160] = {.lex_state = 13, .external_lex_state = 13}, + [1161] = {.lex_state = 13, .external_lex_state = 13}, [1162] = {.lex_state = 13, .external_lex_state = 12}, - [1163] = {.lex_state = 13, .external_lex_state = 12}, - [1164] = {.lex_state = 13, .external_lex_state = 12}, - [1165] = {.lex_state = 13, .external_lex_state = 12}, - [1166] = {.lex_state = 13, .external_lex_state = 12}, + [1163] = {.lex_state = 14, .external_lex_state = 15}, + [1164] = {.lex_state = 14, .external_lex_state = 13}, + [1165] = {.lex_state = 14, .external_lex_state = 15}, + [1166] = {.lex_state = 14, .external_lex_state = 15}, [1167] = {.lex_state = 13, .external_lex_state = 12}, - [1168] = {.lex_state = 14, .external_lex_state = 14}, - [1169] = {.lex_state = 14, .external_lex_state = 14}, - [1170] = {.lex_state = 14, .external_lex_state = 14}, + [1168] = {.lex_state = 14, .external_lex_state = 13}, + [1169] = {.lex_state = 13, .external_lex_state = 12}, + [1170] = {.lex_state = 14, .external_lex_state = 15}, [1171] = {.lex_state = 13, .external_lex_state = 12}, - [1172] = {.lex_state = 13, .external_lex_state = 12}, - [1173] = {.lex_state = 13, .external_lex_state = 12}, + [1172] = {.lex_state = 14, .external_lex_state = 15}, + [1173] = {.lex_state = 14, .external_lex_state = 13}, [1174] = {.lex_state = 13, .external_lex_state = 12}, [1175] = {.lex_state = 13, .external_lex_state = 12}, [1176] = {.lex_state = 13, .external_lex_state = 12}, [1177] = {.lex_state = 13, .external_lex_state = 13}, [1178] = {.lex_state = 13, .external_lex_state = 12}, - [1179] = {.lex_state = 13, .external_lex_state = 14}, + [1179] = {.lex_state = 13, .external_lex_state = 12}, [1180] = {.lex_state = 13, .external_lex_state = 12}, [1181] = {.lex_state = 13, .external_lex_state = 12}, [1182] = {.lex_state = 13, .external_lex_state = 12}, [1183] = {.lex_state = 13, .external_lex_state = 12}, [1184] = {.lex_state = 13, .external_lex_state = 12}, [1185] = {.lex_state = 13, .external_lex_state = 12}, - [1186] = {.lex_state = 13, .external_lex_state = 12}, - [1187] = {.lex_state = 13, .external_lex_state = 13}, + [1186] = {.lex_state = 13, .external_lex_state = 13}, + [1187] = {.lex_state = 13, .external_lex_state = 12}, [1188] = {.lex_state = 13, .external_lex_state = 12}, [1189] = {.lex_state = 13, .external_lex_state = 12}, - [1190] = {.lex_state = 13, .external_lex_state = 12}, + [1190] = {.lex_state = 13, .external_lex_state = 13}, [1191] = {.lex_state = 13, .external_lex_state = 13}, [1192] = {.lex_state = 13, .external_lex_state = 13}, - [1193] = {.lex_state = 13, .external_lex_state = 13}, + [1193] = {.lex_state = 13, .external_lex_state = 12}, [1194] = {.lex_state = 13, .external_lex_state = 12}, - [1195] = {.lex_state = 13, .external_lex_state = 12}, - [1196] = {.lex_state = 13, .external_lex_state = 13}, + [1195] = {.lex_state = 14, .external_lex_state = 15}, + [1196] = {.lex_state = 14, .external_lex_state = 15}, [1197] = {.lex_state = 13, .external_lex_state = 13}, [1198] = {.lex_state = 13, .external_lex_state = 12}, - [1199] = {.lex_state = 13, .external_lex_state = 12}, + [1199] = {.lex_state = 13, .external_lex_state = 2}, [1200] = {.lex_state = 13, .external_lex_state = 13}, - [1201] = {.lex_state = 14, .external_lex_state = 13}, - [1202] = {.lex_state = 13, .external_lex_state = 12}, + [1201] = {.lex_state = 14, .external_lex_state = 15}, + [1202] = {.lex_state = 13, .external_lex_state = 15}, [1203] = {.lex_state = 13, .external_lex_state = 12}, - [1204] = {.lex_state = 13, .external_lex_state = 12}, + [1204] = {.lex_state = 13, .external_lex_state = 15}, [1205] = {.lex_state = 13, .external_lex_state = 12}, [1206] = {.lex_state = 13, .external_lex_state = 12}, [1207] = {.lex_state = 13, .external_lex_state = 12}, [1208] = {.lex_state = 13, .external_lex_state = 13}, - [1209] = {.lex_state = 13, .external_lex_state = 13}, + [1209] = {.lex_state = 13, .external_lex_state = 12}, [1210] = {.lex_state = 13, .external_lex_state = 12}, - [1211] = {.lex_state = 13, .external_lex_state = 12}, - [1212] = {.lex_state = 13, .external_lex_state = 12}, + [1211] = {.lex_state = 13, .external_lex_state = 8}, + [1212] = {.lex_state = 13, .external_lex_state = 13}, [1213] = {.lex_state = 13, .external_lex_state = 12}, - [1214] = {.lex_state = 13, .external_lex_state = 2}, - [1215] = {.lex_state = 13, .external_lex_state = 14}, + [1214] = {.lex_state = 13, .external_lex_state = 12}, + [1215] = {.lex_state = 13, .external_lex_state = 12}, [1216] = {.lex_state = 13, .external_lex_state = 12}, - [1217] = {.lex_state = 13, .external_lex_state = 12}, - [1218] = {.lex_state = 13, .external_lex_state = 12}, - [1219] = {.lex_state = 13, .external_lex_state = 12}, - [1220] = {.lex_state = 13, .external_lex_state = 12}, - [1221] = {.lex_state = 13, .external_lex_state = 12}, - [1222] = {.lex_state = 13, .external_lex_state = 12}, - [1223] = {.lex_state = 13, .external_lex_state = 12}, - [1224] = {.lex_state = 13, .external_lex_state = 12}, - [1225] = {.lex_state = 13, .external_lex_state = 12}, - [1226] = {.lex_state = 13, .external_lex_state = 13}, + [1217] = {.lex_state = 13, .external_lex_state = 15}, + [1218] = {.lex_state = 13, .external_lex_state = 15}, + [1219] = {.lex_state = 13, .external_lex_state = 15}, + [1220] = {.lex_state = 13, .external_lex_state = 15}, + [1221] = {.lex_state = 13, .external_lex_state = 15}, + [1222] = {.lex_state = 13, .external_lex_state = 15}, + [1223] = {.lex_state = 13, .external_lex_state = 15}, + [1224] = {.lex_state = 13, .external_lex_state = 15}, + [1225] = {.lex_state = 13, .external_lex_state = 13}, + [1226] = {.lex_state = 13, .external_lex_state = 12}, [1227] = {.lex_state = 13, .external_lex_state = 12}, - [1228] = {.lex_state = 13, .external_lex_state = 12}, + [1228] = {.lex_state = 13, .external_lex_state = 13}, [1229] = {.lex_state = 13, .external_lex_state = 12}, - [1230] = {.lex_state = 13, .external_lex_state = 14}, - [1231] = {.lex_state = 13, .external_lex_state = 14}, - [1232] = {.lex_state = 14, .external_lex_state = 14}, - [1233] = {.lex_state = 13, .external_lex_state = 13}, - [1234] = {.lex_state = 14, .external_lex_state = 14}, - [1235] = {.lex_state = 14, .external_lex_state = 14}, + [1230] = {.lex_state = 13, .external_lex_state = 12}, + [1231] = {.lex_state = 13, .external_lex_state = 12}, + [1232] = {.lex_state = 13, .external_lex_state = 12}, + [1233] = {.lex_state = 13, .external_lex_state = 12}, + [1234] = {.lex_state = 13, .external_lex_state = 13}, + [1235] = {.lex_state = 13, .external_lex_state = 13}, [1236] = {.lex_state = 13, .external_lex_state = 13}, [1237] = {.lex_state = 13, .external_lex_state = 13}, - [1238] = {.lex_state = 14, .external_lex_state = 13}, - [1239] = {.lex_state = 13, .external_lex_state = 12}, - [1240] = {.lex_state = 13, .external_lex_state = 12}, - [1241] = {.lex_state = 13, .external_lex_state = 12}, - [1242] = {.lex_state = 13, .external_lex_state = 12}, - [1243] = {.lex_state = 13, .external_lex_state = 12}, - [1244] = {.lex_state = 13, .external_lex_state = 12}, - [1245] = {.lex_state = 13, .external_lex_state = 13}, - [1246] = {.lex_state = 14, .external_lex_state = 13}, - [1247] = {.lex_state = 13, .external_lex_state = 8}, - [1248] = {.lex_state = 13, .external_lex_state = 12}, - [1249] = {.lex_state = 13, .external_lex_state = 12}, - [1250] = {.lex_state = 13, .external_lex_state = 13}, - [1251] = {.lex_state = 13, .external_lex_state = 13}, + [1238] = {.lex_state = 13, .external_lex_state = 12}, + [1239] = {.lex_state = 13, .external_lex_state = 13}, + [1240] = {.lex_state = 14, .external_lex_state = 15}, + [1241] = {.lex_state = 13, .external_lex_state = 13}, + [1242] = {.lex_state = 13, .external_lex_state = 13}, + [1243] = {.lex_state = 13, .external_lex_state = 8}, + [1244] = {.lex_state = 14, .external_lex_state = 13}, + [1245] = {.lex_state = 14, .external_lex_state = 13}, + [1246] = {.lex_state = 13, .external_lex_state = 13}, + [1247] = {.lex_state = 14, .external_lex_state = 14}, + [1248] = {.lex_state = 13, .external_lex_state = 13}, + [1249] = {.lex_state = 14, .external_lex_state = 14}, + [1250] = {.lex_state = 14, .external_lex_state = 14}, + [1251] = {.lex_state = 13, .external_lex_state = 12}, [1252] = {.lex_state = 13, .external_lex_state = 13}, - [1253] = {.lex_state = 13, .external_lex_state = 8}, + [1253] = {.lex_state = 13, .external_lex_state = 12}, [1254] = {.lex_state = 13, .external_lex_state = 12}, [1255] = {.lex_state = 13, .external_lex_state = 12}, - [1256] = {.lex_state = 13, .external_lex_state = 13}, + [1256] = {.lex_state = 13, .external_lex_state = 12}, [1257] = {.lex_state = 13, .external_lex_state = 13}, [1258] = {.lex_state = 13, .external_lex_state = 13}, - [1259] = {.lex_state = 13, .external_lex_state = 13}, - [1260] = {.lex_state = 13, .external_lex_state = 13}, + [1259] = {.lex_state = 13, .external_lex_state = 12}, + [1260] = {.lex_state = 13, .external_lex_state = 12}, [1261] = {.lex_state = 13, .external_lex_state = 13}, - [1262] = {.lex_state = 13, .external_lex_state = 13}, - [1263] = {.lex_state = 13, .external_lex_state = 13}, - [1264] = {.lex_state = 13, .external_lex_state = 13}, - [1265] = {.lex_state = 13, .external_lex_state = 13}, + [1262] = {.lex_state = 13, .external_lex_state = 12}, + [1263] = {.lex_state = 13, .external_lex_state = 12}, + [1264] = {.lex_state = 13, .external_lex_state = 12}, + [1265] = {.lex_state = 13, .external_lex_state = 12}, [1266] = {.lex_state = 13, .external_lex_state = 12}, [1267] = {.lex_state = 13, .external_lex_state = 12}, [1268] = {.lex_state = 13, .external_lex_state = 13}, - [1269] = {.lex_state = 13, .external_lex_state = 12}, + [1269] = {.lex_state = 13, .external_lex_state = 13}, [1270] = {.lex_state = 13, .external_lex_state = 13}, [1271] = {.lex_state = 13, .external_lex_state = 13}, [1272] = {.lex_state = 13, .external_lex_state = 13}, [1273] = {.lex_state = 13, .external_lex_state = 13}, [1274] = {.lex_state = 13, .external_lex_state = 13}, [1275] = {.lex_state = 13, .external_lex_state = 13}, - [1276] = {.lex_state = 13, .external_lex_state = 14}, - [1277] = {.lex_state = 14, .external_lex_state = 14}, - [1278] = {.lex_state = 14, .external_lex_state = 14}, - [1279] = {.lex_state = 14, .external_lex_state = 14}, + [1276] = {.lex_state = 13, .external_lex_state = 13}, + [1277] = {.lex_state = 13, .external_lex_state = 13}, + [1278] = {.lex_state = 13, .external_lex_state = 13}, + [1279] = {.lex_state = 13, .external_lex_state = 12}, [1280] = {.lex_state = 13, .external_lex_state = 8}, - [1281] = {.lex_state = 14, .external_lex_state = 13}, - [1282] = {.lex_state = 13, .external_lex_state = 14}, - [1283] = {.lex_state = 14, .external_lex_state = 15}, - [1284] = {.lex_state = 14, .external_lex_state = 15}, - [1285] = {.lex_state = 14, .external_lex_state = 15}, - [1286] = {.lex_state = 13, .external_lex_state = 2}, - [1287] = {.lex_state = 13, .external_lex_state = 13}, - [1288] = {.lex_state = 13, .external_lex_state = 13}, - [1289] = {.lex_state = 13, .external_lex_state = 8}, - [1290] = {.lex_state = 13, .external_lex_state = 13}, - [1291] = {.lex_state = 13, .external_lex_state = 13}, - [1292] = {.lex_state = 14, .external_lex_state = 13}, - [1293] = {.lex_state = 13, .external_lex_state = 13}, - [1294] = {.lex_state = 13, .external_lex_state = 13}, - [1295] = {.lex_state = 13, .external_lex_state = 13}, - [1296] = {.lex_state = 13, .external_lex_state = 13}, - [1297] = {.lex_state = 14, .external_lex_state = 15}, - [1298] = {.lex_state = 14, .external_lex_state = 15}, - [1299] = {.lex_state = 13, .external_lex_state = 13}, - [1300] = {.lex_state = 13, .external_lex_state = 14}, - [1301] = {.lex_state = 13, .external_lex_state = 12}, + [1281] = {.lex_state = 13, .external_lex_state = 15}, + [1282] = {.lex_state = 13, .external_lex_state = 15}, + [1283] = {.lex_state = 13, .external_lex_state = 15}, + [1284] = {.lex_state = 13, .external_lex_state = 15}, + [1285] = {.lex_state = 13, .external_lex_state = 14}, + [1286] = {.lex_state = 13, .external_lex_state = 14}, + [1287] = {.lex_state = 13, .external_lex_state = 15}, + [1288] = {.lex_state = 13, .external_lex_state = 15}, + [1289] = {.lex_state = 9, .external_lex_state = 9}, + [1290] = {.lex_state = 13, .external_lex_state = 14}, + [1291] = {.lex_state = 9, .external_lex_state = 9}, + [1292] = {.lex_state = 13, .external_lex_state = 14}, + [1293] = {.lex_state = 13, .external_lex_state = 15}, + [1294] = {.lex_state = 13, .external_lex_state = 14}, + [1295] = {.lex_state = 14, .external_lex_state = 15}, + [1296] = {.lex_state = 13, .external_lex_state = 14}, + [1297] = {.lex_state = 14, .external_lex_state = 13}, + [1298] = {.lex_state = 14, .external_lex_state = 13}, + [1299] = {.lex_state = 14, .external_lex_state = 13}, + [1300] = {.lex_state = 13, .external_lex_state = 7}, + [1301] = {.lex_state = 13, .external_lex_state = 14}, [1302] = {.lex_state = 13, .external_lex_state = 14}, [1303] = {.lex_state = 13, .external_lex_state = 13}, - [1304] = {.lex_state = 13, .external_lex_state = 14}, - [1305] = {.lex_state = 13, .external_lex_state = 14}, - [1306] = {.lex_state = 14, .external_lex_state = 13}, - [1307] = {.lex_state = 14, .external_lex_state = 13}, - [1308] = {.lex_state = 14, .external_lex_state = 13}, - [1309] = {.lex_state = 13, .external_lex_state = 14}, - [1310] = {.lex_state = 13, .external_lex_state = 14}, + [1304] = {.lex_state = 13, .external_lex_state = 15}, + [1305] = {.lex_state = 13, .external_lex_state = 15}, + [1306] = {.lex_state = 13, .external_lex_state = 7}, + [1307] = {.lex_state = 13, .external_lex_state = 9}, + [1308] = {.lex_state = 13, .external_lex_state = 15}, + [1309] = {.lex_state = 13, .external_lex_state = 15}, + [1310] = {.lex_state = 13, .external_lex_state = 15}, [1311] = {.lex_state = 13, .external_lex_state = 15}, - [1312] = {.lex_state = 13, .external_lex_state = 14}, + [1312] = {.lex_state = 13, .external_lex_state = 15}, [1313] = {.lex_state = 13, .external_lex_state = 15}, [1314] = {.lex_state = 13, .external_lex_state = 15}, [1315] = {.lex_state = 13, .external_lex_state = 14}, [1316] = {.lex_state = 13, .external_lex_state = 14}, [1317] = {.lex_state = 13, .external_lex_state = 14}, - [1318] = {.lex_state = 13, .external_lex_state = 14}, - [1319] = {.lex_state = 13, .external_lex_state = 14}, - [1320] = {.lex_state = 13, .external_lex_state = 14}, + [1318] = {.lex_state = 13, .external_lex_state = 15}, + [1319] = {.lex_state = 14, .external_lex_state = 15}, + [1320] = {.lex_state = 13, .external_lex_state = 15}, [1321] = {.lex_state = 13, .external_lex_state = 14}, [1322] = {.lex_state = 13, .external_lex_state = 14}, - [1323] = {.lex_state = 13, .external_lex_state = 14}, - [1324] = {.lex_state = 13, .external_lex_state = 14}, - [1325] = {.lex_state = 13, .external_lex_state = 15}, - [1326] = {.lex_state = 13, .external_lex_state = 13}, - [1327] = {.lex_state = 13, .external_lex_state = 15}, + [1323] = {.lex_state = 13, .external_lex_state = 15}, + [1324] = {.lex_state = 13, .external_lex_state = 15}, + [1325] = {.lex_state = 9, .external_lex_state = 9}, + [1326] = {.lex_state = 13, .external_lex_state = 15}, + [1327] = {.lex_state = 13, .external_lex_state = 14}, [1328] = {.lex_state = 13, .external_lex_state = 15}, - [1329] = {.lex_state = 13, .external_lex_state = 14}, - [1330] = {.lex_state = 13, .external_lex_state = 14}, - [1331] = {.lex_state = 13, .external_lex_state = 14}, + [1329] = {.lex_state = 14, .external_lex_state = 14}, + [1330] = {.lex_state = 9, .external_lex_state = 9}, + [1331] = {.lex_state = 9, .external_lex_state = 9}, [1332] = {.lex_state = 13, .external_lex_state = 14}, - [1333] = {.lex_state = 13, .external_lex_state = 14}, + [1333] = {.lex_state = 14, .external_lex_state = 14}, [1334] = {.lex_state = 13, .external_lex_state = 14}, [1335] = {.lex_state = 13, .external_lex_state = 14}, - [1336] = {.lex_state = 13, .external_lex_state = 15}, - [1337] = {.lex_state = 13, .external_lex_state = 14}, - [1338] = {.lex_state = 13, .external_lex_state = 14}, - [1339] = {.lex_state = 13, .external_lex_state = 14}, - [1340] = {.lex_state = 8, .external_lex_state = 9}, - [1341] = {.lex_state = 8, .external_lex_state = 9}, + [1336] = {.lex_state = 13, .external_lex_state = 14}, + [1337] = {.lex_state = 13, .external_lex_state = 8}, + [1338] = {.lex_state = 9, .external_lex_state = 9}, + [1339] = {.lex_state = 13, .external_lex_state = 15}, + [1340] = {.lex_state = 13, .external_lex_state = 15}, + [1341] = {.lex_state = 13, .external_lex_state = 14}, [1342] = {.lex_state = 13, .external_lex_state = 15}, - [1343] = {.lex_state = 13, .external_lex_state = 14}, - [1344] = {.lex_state = 13, .external_lex_state = 14}, + [1343] = {.lex_state = 13, .external_lex_state = 15}, + [1344] = {.lex_state = 13, .external_lex_state = 15}, [1345] = {.lex_state = 13, .external_lex_state = 14}, [1346] = {.lex_state = 13, .external_lex_state = 15}, [1347] = {.lex_state = 13, .external_lex_state = 15}, - [1348] = {.lex_state = 13, .external_lex_state = 14}, - [1349] = {.lex_state = 13, .external_lex_state = 15}, - [1350] = {.lex_state = 13, .external_lex_state = 15}, - [1351] = {.lex_state = 13, .external_lex_state = 15}, + [1348] = {.lex_state = 13, .external_lex_state = 15}, + [1349] = {.lex_state = 13, .external_lex_state = 14}, + [1350] = {.lex_state = 13, .external_lex_state = 14}, + [1351] = {.lex_state = 13, .external_lex_state = 14}, [1352] = {.lex_state = 13, .external_lex_state = 15}, - [1353] = {.lex_state = 13, .external_lex_state = 15}, - [1354] = {.lex_state = 13, .external_lex_state = 15}, + [1353] = {.lex_state = 14, .external_lex_state = 15}, + [1354] = {.lex_state = 14, .external_lex_state = 15}, [1355] = {.lex_state = 13, .external_lex_state = 14}, - [1356] = {.lex_state = 13, .external_lex_state = 14}, + [1356] = {.lex_state = 13, .external_lex_state = 15}, [1357] = {.lex_state = 13, .external_lex_state = 14}, - [1358] = {.lex_state = 13, .external_lex_state = 14}, + [1358] = {.lex_state = 13, .external_lex_state = 15}, [1359] = {.lex_state = 13, .external_lex_state = 14}, - [1360] = {.lex_state = 14, .external_lex_state = 14}, - [1361] = {.lex_state = 13, .external_lex_state = 14}, - [1362] = {.lex_state = 13, .external_lex_state = 14}, - [1363] = {.lex_state = 13, .external_lex_state = 14}, - [1364] = {.lex_state = 13, .external_lex_state = 14}, + [1360] = {.lex_state = 14, .external_lex_state = 15}, + [1361] = {.lex_state = 13, .external_lex_state = 15}, + [1362] = {.lex_state = 13, .external_lex_state = 15}, + [1363] = {.lex_state = 13, .external_lex_state = 15}, + [1364] = {.lex_state = 13, .external_lex_state = 15}, [1365] = {.lex_state = 13, .external_lex_state = 14}, - [1366] = {.lex_state = 13, .external_lex_state = 14}, - [1367] = {.lex_state = 13, .external_lex_state = 7}, + [1366] = {.lex_state = 13, .external_lex_state = 13}, + [1367] = {.lex_state = 13, .external_lex_state = 14}, [1368] = {.lex_state = 13, .external_lex_state = 14}, - [1369] = {.lex_state = 13, .external_lex_state = 7}, - [1370] = {.lex_state = 8, .external_lex_state = 9}, - [1371] = {.lex_state = 8, .external_lex_state = 9}, - [1372] = {.lex_state = 8, .external_lex_state = 9}, - [1373] = {.lex_state = 13, .external_lex_state = 15}, - [1374] = {.lex_state = 13, .external_lex_state = 14}, - [1375] = {.lex_state = 8, .external_lex_state = 9}, - [1376] = {.lex_state = 13, .external_lex_state = 15}, - [1377] = {.lex_state = 13, .external_lex_state = 15}, + [1369] = {.lex_state = 13, .external_lex_state = 14}, + [1370] = {.lex_state = 13, .external_lex_state = 15}, + [1371] = {.lex_state = 13, .external_lex_state = 14}, + [1372] = {.lex_state = 13, .external_lex_state = 14}, + [1373] = {.lex_state = 13, .external_lex_state = 14}, + [1374] = {.lex_state = 13, .external_lex_state = 15}, + [1375] = {.lex_state = 13, .external_lex_state = 14}, + [1376] = {.lex_state = 13, .external_lex_state = 14}, + [1377] = {.lex_state = 13, .external_lex_state = 13}, [1378] = {.lex_state = 13, .external_lex_state = 14}, - [1379] = {.lex_state = 13, .external_lex_state = 14}, - [1380] = {.lex_state = 13, .external_lex_state = 14}, - [1381] = {.lex_state = 13, .external_lex_state = 14}, - [1382] = {.lex_state = 13, .external_lex_state = 14}, - [1383] = {.lex_state = 13, .external_lex_state = 15}, - [1384] = {.lex_state = 13, .external_lex_state = 15}, - [1385] = {.lex_state = 13, .external_lex_state = 14}, + [1379] = {.lex_state = 13, .external_lex_state = 13}, + [1380] = {.lex_state = 13, .external_lex_state = 15}, + [1381] = {.lex_state = 14, .external_lex_state = 15}, + [1382] = {.lex_state = 13, .external_lex_state = 15}, + [1383] = {.lex_state = 13, .external_lex_state = 13}, + [1384] = {.lex_state = 13, .external_lex_state = 13}, + [1385] = {.lex_state = 13, .external_lex_state = 15}, [1386] = {.lex_state = 13, .external_lex_state = 15}, - [1387] = {.lex_state = 13, .external_lex_state = 14}, - [1388] = {.lex_state = 13, .external_lex_state = 15}, - [1389] = {.lex_state = 13, .external_lex_state = 14}, - [1390] = {.lex_state = 13, .external_lex_state = 14}, - [1391] = {.lex_state = 13, .external_lex_state = 14}, - [1392] = {.lex_state = 13, .external_lex_state = 15}, - [1393] = {.lex_state = 13, .external_lex_state = 14}, + [1387] = {.lex_state = 13, .external_lex_state = 15}, + [1388] = {.lex_state = 13, .external_lex_state = 13}, + [1389] = {.lex_state = 13, .external_lex_state = 13}, + [1390] = {.lex_state = 14, .external_lex_state = 15}, + [1391] = {.lex_state = 13, .external_lex_state = 15}, + [1392] = {.lex_state = 14, .external_lex_state = 15}, + [1393] = {.lex_state = 13, .external_lex_state = 15}, [1394] = {.lex_state = 13, .external_lex_state = 15}, [1395] = {.lex_state = 13, .external_lex_state = 15}, - [1396] = {.lex_state = 13, .external_lex_state = 14}, - [1397] = {.lex_state = 13, .external_lex_state = 15}, + [1396] = {.lex_state = 13, .external_lex_state = 15}, + [1397] = {.lex_state = 13, .external_lex_state = 13}, [1398] = {.lex_state = 13, .external_lex_state = 15}, [1399] = {.lex_state = 13, .external_lex_state = 15}, - [1400] = {.lex_state = 13, .external_lex_state = 14}, - [1401] = {.lex_state = 13, .external_lex_state = 15}, + [1400] = {.lex_state = 13, .external_lex_state = 15}, + [1401] = {.lex_state = 14, .external_lex_state = 12}, [1402] = {.lex_state = 13, .external_lex_state = 15}, [1403] = {.lex_state = 13, .external_lex_state = 15}, - [1404] = {.lex_state = 13, .external_lex_state = 14}, - [1405] = {.lex_state = 13, .external_lex_state = 14}, - [1406] = {.lex_state = 13, .external_lex_state = 14}, - [1407] = {.lex_state = 13, .external_lex_state = 14}, - [1408] = {.lex_state = 13, .external_lex_state = 14}, - [1409] = {.lex_state = 13, .external_lex_state = 14}, - [1410] = {.lex_state = 13, .external_lex_state = 15}, + [1404] = {.lex_state = 13, .external_lex_state = 15}, + [1405] = {.lex_state = 14, .external_lex_state = 12}, + [1406] = {.lex_state = 14, .external_lex_state = 12}, + [1407] = {.lex_state = 13, .external_lex_state = 15}, + [1408] = {.lex_state = 13, .external_lex_state = 15}, + [1409] = {.lex_state = 13, .external_lex_state = 13}, + [1410] = {.lex_state = 13, .external_lex_state = 13}, [1411] = {.lex_state = 13, .external_lex_state = 15}, - [1412] = {.lex_state = 13, .external_lex_state = 14}, - [1413] = {.lex_state = 13, .external_lex_state = 14}, - [1414] = {.lex_state = 13, .external_lex_state = 14}, - [1415] = {.lex_state = 13, .external_lex_state = 15}, - [1416] = {.lex_state = 13, .external_lex_state = 13}, + [1412] = {.lex_state = 13, .external_lex_state = 13}, + [1413] = {.lex_state = 13, .external_lex_state = 13}, + [1414] = {.lex_state = 13, .external_lex_state = 15}, + [1415] = {.lex_state = 13, .external_lex_state = 13}, + [1416] = {.lex_state = 13, .external_lex_state = 15}, [1417] = {.lex_state = 13, .external_lex_state = 15}, - [1418] = {.lex_state = 13, .external_lex_state = 14}, - [1419] = {.lex_state = 13, .external_lex_state = 9}, - [1420] = {.lex_state = 13, .external_lex_state = 14}, - [1421] = {.lex_state = 13, .external_lex_state = 14}, - [1422] = {.lex_state = 13, .external_lex_state = 14}, - [1423] = {.lex_state = 13, .external_lex_state = 13}, - [1424] = {.lex_state = 13, .external_lex_state = 14}, - [1425] = {.lex_state = 14, .external_lex_state = 14}, - [1426] = {.lex_state = 14, .external_lex_state = 14}, - [1427] = {.lex_state = 13, .external_lex_state = 14}, - [1428] = {.lex_state = 13, .external_lex_state = 13}, - [1429] = {.lex_state = 13, .external_lex_state = 13}, + [1418] = {.lex_state = 13, .external_lex_state = 13}, + [1419] = {.lex_state = 13, .external_lex_state = 13}, + [1420] = {.lex_state = 13, .external_lex_state = 13}, + [1421] = {.lex_state = 14, .external_lex_state = 15}, + [1422] = {.lex_state = 14, .external_lex_state = 13}, + [1423] = {.lex_state = 14, .external_lex_state = 13}, + [1424] = {.lex_state = 14, .external_lex_state = 13}, + [1425] = {.lex_state = 13, .external_lex_state = 13}, + [1426] = {.lex_state = 13, .external_lex_state = 15}, + [1427] = {.lex_state = 13, .external_lex_state = 13}, + [1428] = {.lex_state = 13, .external_lex_state = 15}, + [1429] = {.lex_state = 13, .external_lex_state = 15}, [1430] = {.lex_state = 13, .external_lex_state = 13}, [1431] = {.lex_state = 13, .external_lex_state = 13}, - [1432] = {.lex_state = 13, .external_lex_state = 13}, - [1433] = {.lex_state = 13, .external_lex_state = 13}, + [1432] = {.lex_state = 13, .external_lex_state = 15}, + [1433] = {.lex_state = 13, .external_lex_state = 15}, [1434] = {.lex_state = 13, .external_lex_state = 13}, [1435] = {.lex_state = 13, .external_lex_state = 13}, [1436] = {.lex_state = 13, .external_lex_state = 13}, [1437] = {.lex_state = 13, .external_lex_state = 13}, - [1438] = {.lex_state = 13, .external_lex_state = 15}, - [1439] = {.lex_state = 14, .external_lex_state = 14}, - [1440] = {.lex_state = 13, .external_lex_state = 13}, - [1441] = {.lex_state = 14, .external_lex_state = 14}, - [1442] = {.lex_state = 13, .external_lex_state = 13}, - [1443] = {.lex_state = 13, .external_lex_state = 13}, + [1438] = {.lex_state = 13, .external_lex_state = 13}, + [1439] = {.lex_state = 13, .external_lex_state = 15}, + [1440] = {.lex_state = 13, .external_lex_state = 15}, + [1441] = {.lex_state = 13, .external_lex_state = 13}, + [1442] = {.lex_state = 13, .external_lex_state = 15}, + [1443] = {.lex_state = 13, .external_lex_state = 15}, [1444] = {.lex_state = 13, .external_lex_state = 13}, [1445] = {.lex_state = 13, .external_lex_state = 13}, [1446] = {.lex_state = 13, .external_lex_state = 13}, [1447] = {.lex_state = 13, .external_lex_state = 13}, - [1448] = {.lex_state = 14, .external_lex_state = 12}, - [1449] = {.lex_state = 14, .external_lex_state = 12}, - [1450] = {.lex_state = 14, .external_lex_state = 12}, - [1451] = {.lex_state = 13, .external_lex_state = 13}, - [1452] = {.lex_state = 14, .external_lex_state = 14}, - [1453] = {.lex_state = 13, .external_lex_state = 13}, - [1454] = {.lex_state = 13, .external_lex_state = 13}, - [1455] = {.lex_state = 14, .external_lex_state = 13}, - [1456] = {.lex_state = 13, .external_lex_state = 13}, + [1448] = {.lex_state = 13, .external_lex_state = 13}, + [1449] = {.lex_state = 13, .external_lex_state = 13}, + [1450] = {.lex_state = 13, .external_lex_state = 13}, + [1451] = {.lex_state = 13, .external_lex_state = 15}, + [1452] = {.lex_state = 13, .external_lex_state = 13}, + [1453] = {.lex_state = 13, .external_lex_state = 15}, + [1454] = {.lex_state = 13, .external_lex_state = 15}, + [1455] = {.lex_state = 13, .external_lex_state = 15}, + [1456] = {.lex_state = 13, .external_lex_state = 15}, [1457] = {.lex_state = 13, .external_lex_state = 13}, [1458] = {.lex_state = 13, .external_lex_state = 13}, - [1459] = {.lex_state = 13, .external_lex_state = 13}, + [1459] = {.lex_state = 13, .external_lex_state = 15}, [1460] = {.lex_state = 13, .external_lex_state = 13}, - [1461] = {.lex_state = 14, .external_lex_state = 13}, + [1461] = {.lex_state = 13, .external_lex_state = 13}, [1462] = {.lex_state = 13, .external_lex_state = 13}, - [1463] = {.lex_state = 14, .external_lex_state = 13}, - [1464] = {.lex_state = 13, .external_lex_state = 13}, - [1465] = {.lex_state = 13, .external_lex_state = 13}, - [1466] = {.lex_state = 13, .external_lex_state = 13}, - [1467] = {.lex_state = 13, .external_lex_state = 13}, - [1468] = {.lex_state = 13, .external_lex_state = 13}, - [1469] = {.lex_state = 13, .external_lex_state = 13}, - [1470] = {.lex_state = 13, .external_lex_state = 13}, - [1471] = {.lex_state = 13, .external_lex_state = 13}, - [1472] = {.lex_state = 13, .external_lex_state = 13}, - [1473] = {.lex_state = 13, .external_lex_state = 13}, - [1474] = {.lex_state = 13, .external_lex_state = 13}, - [1475] = {.lex_state = 8, .external_lex_state = 15}, - [1476] = {.lex_state = 8, .external_lex_state = 15}, - [1477] = {.lex_state = 8, .external_lex_state = 15}, - [1478] = {.lex_state = 8, .external_lex_state = 15}, - [1479] = {.lex_state = 8, .external_lex_state = 15}, - [1480] = {.lex_state = 8, .external_lex_state = 15}, + [1463] = {.lex_state = 13, .external_lex_state = 13}, + [1464] = {.lex_state = 13, .external_lex_state = 15}, + [1465] = {.lex_state = 9, .external_lex_state = 14}, + [1466] = {.lex_state = 9, .external_lex_state = 14}, + [1467] = {.lex_state = 9, .external_lex_state = 14}, + [1468] = {.lex_state = 9, .external_lex_state = 14}, + [1469] = {.lex_state = 9, .external_lex_state = 14}, + [1470] = {.lex_state = 9, .external_lex_state = 14}, + [1471] = {.lex_state = 9, .external_lex_state = 14}, + [1472] = {.lex_state = 9, .external_lex_state = 14}, + [1473] = {.lex_state = 9, .external_lex_state = 14}, + [1474] = {.lex_state = 13, .external_lex_state = 15}, + [1475] = {.lex_state = 9, .external_lex_state = 14}, + [1476] = {.lex_state = 13, .external_lex_state = 13}, + [1477] = {.lex_state = 13, .external_lex_state = 12}, + [1478] = {.lex_state = 9, .external_lex_state = 14}, + [1479] = {.lex_state = 9, .external_lex_state = 14}, + [1480] = {.lex_state = 9, .external_lex_state = 14}, [1481] = {.lex_state = 13, .external_lex_state = 14}, - [1482] = {.lex_state = 13, .external_lex_state = 13}, - [1483] = {.lex_state = 13, .external_lex_state = 12}, - [1484] = {.lex_state = 8, .external_lex_state = 15}, - [1485] = {.lex_state = 8, .external_lex_state = 15}, - [1486] = {.lex_state = 8, .external_lex_state = 15}, - [1487] = {.lex_state = 8, .external_lex_state = 15}, - [1488] = {.lex_state = 8, .external_lex_state = 15}, - [1489] = {.lex_state = 8, .external_lex_state = 15}, - [1490] = {.lex_state = 8, .external_lex_state = 15}, - [1491] = {.lex_state = 8, .external_lex_state = 15}, - [1492] = {.lex_state = 8, .external_lex_state = 15}, - [1493] = {.lex_state = 8, .external_lex_state = 15}, - [1494] = {.lex_state = 12, .external_lex_state = 2}, - [1495] = {.lex_state = 12, .external_lex_state = 2}, + [1482] = {.lex_state = 9, .external_lex_state = 14}, + [1483] = {.lex_state = 9, .external_lex_state = 14}, + [1484] = {.lex_state = 9, .external_lex_state = 14}, + [1485] = {.lex_state = 6, .external_lex_state = 2}, + [1486] = {.lex_state = 6, .external_lex_state = 2}, + [1487] = {.lex_state = 5, .external_lex_state = 8}, + [1488] = {.lex_state = 5, .external_lex_state = 8}, + [1489] = {.lex_state = 5, .external_lex_state = 7}, + [1490] = {.lex_state = 5, .external_lex_state = 8}, + [1491] = {.lex_state = 5, .external_lex_state = 8}, + [1492] = {.lex_state = 5, .external_lex_state = 7}, + [1493] = {.lex_state = 5, .external_lex_state = 7}, + [1494] = {.lex_state = 5, .external_lex_state = 8}, + [1495] = {.lex_state = 5, .external_lex_state = 7}, [1496] = {.lex_state = 5, .external_lex_state = 8}, - [1497] = {.lex_state = 5, .external_lex_state = 8}, + [1497] = {.lex_state = 5, .external_lex_state = 7}, [1498] = {.lex_state = 5, .external_lex_state = 8}, - [1499] = {.lex_state = 5, .external_lex_state = 8}, + [1499] = {.lex_state = 5, .external_lex_state = 7}, [1500] = {.lex_state = 5, .external_lex_state = 8}, - [1501] = {.lex_state = 5, .external_lex_state = 7}, + [1501] = {.lex_state = 5, .external_lex_state = 8}, [1502] = {.lex_state = 5, .external_lex_state = 8}, [1503] = {.lex_state = 5, .external_lex_state = 8}, - [1504] = {.lex_state = 5, .external_lex_state = 7}, - [1505] = {.lex_state = 5, .external_lex_state = 8}, + [1504] = {.lex_state = 5, .external_lex_state = 8}, + [1505] = {.lex_state = 5, .external_lex_state = 7}, [1506] = {.lex_state = 5, .external_lex_state = 7}, [1507] = {.lex_state = 5, .external_lex_state = 8}, [1508] = {.lex_state = 5, .external_lex_state = 8}, - [1509] = {.lex_state = 5, .external_lex_state = 7}, - [1510] = {.lex_state = 5, .external_lex_state = 8}, - [1511] = {.lex_state = 5, .external_lex_state = 7}, - [1512] = {.lex_state = 5, .external_lex_state = 8}, - [1513] = {.lex_state = 5, .external_lex_state = 7}, + [1509] = {.lex_state = 5, .external_lex_state = 8}, + [1510] = {.lex_state = 5, .external_lex_state = 7}, + [1511] = {.lex_state = 5, .external_lex_state = 8}, + [1512] = {.lex_state = 5, .external_lex_state = 7}, + [1513] = {.lex_state = 5, .external_lex_state = 8}, [1514] = {.lex_state = 5, .external_lex_state = 8}, - [1515] = {.lex_state = 5, .external_lex_state = 8}, + [1515] = {.lex_state = 5, .external_lex_state = 7}, [1516] = {.lex_state = 5, .external_lex_state = 7}, [1517] = {.lex_state = 5, .external_lex_state = 8}, [1518] = {.lex_state = 5, .external_lex_state = 8}, - [1519] = {.lex_state = 5, .external_lex_state = 7}, + [1519] = {.lex_state = 5, .external_lex_state = 8}, [1520] = {.lex_state = 5, .external_lex_state = 8}, [1521] = {.lex_state = 5, .external_lex_state = 8}, [1522] = {.lex_state = 5, .external_lex_state = 8}, - [1523] = {.lex_state = 5, .external_lex_state = 7}, - [1524] = {.lex_state = 5, .external_lex_state = 8}, - [1525] = {.lex_state = 5, .external_lex_state = 8}, - [1526] = {.lex_state = 5, .external_lex_state = 7}, - [1527] = {.lex_state = 5, .external_lex_state = 8}, - [1528] = {.lex_state = 5, .external_lex_state = 8}, - [1529] = {.lex_state = 5, .external_lex_state = 8}, - [1530] = {.lex_state = 5, .external_lex_state = 7}, - [1531] = {.lex_state = 5, .external_lex_state = 7}, - [1532] = {.lex_state = 5, .external_lex_state = 2}, - [1533] = {.lex_state = 5, .external_lex_state = 2}, - [1534] = {.lex_state = 5, .external_lex_state = 2}, - [1535] = {.lex_state = 5, .external_lex_state = 2}, - [1536] = {.lex_state = 5, .external_lex_state = 2}, + [1523] = {.lex_state = 5, .external_lex_state = 2}, + [1524] = {.lex_state = 5, .external_lex_state = 2}, + [1525] = {.lex_state = 5, .external_lex_state = 2}, + [1526] = {.lex_state = 5, .external_lex_state = 2}, + [1527] = {.lex_state = 5, .external_lex_state = 2}, + [1528] = {.lex_state = 5, .external_lex_state = 6}, + [1529] = {.lex_state = 5, .external_lex_state = 6}, + [1530] = {.lex_state = 5, .external_lex_state = 6}, + [1531] = {.lex_state = 5, .external_lex_state = 6}, + [1532] = {.lex_state = 5, .external_lex_state = 6}, + [1533] = {.lex_state = 5, .external_lex_state = 6}, + [1534] = {.lex_state = 5, .external_lex_state = 6}, + [1535] = {.lex_state = 5, .external_lex_state = 6}, + [1536] = {.lex_state = 5, .external_lex_state = 6}, [1537] = {.lex_state = 5, .external_lex_state = 6}, [1538] = {.lex_state = 5, .external_lex_state = 6}, [1539] = {.lex_state = 5, .external_lex_state = 6}, @@ -9044,1271 +9068,1252 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1545] = {.lex_state = 5, .external_lex_state = 6}, [1546] = {.lex_state = 5, .external_lex_state = 6}, [1547] = {.lex_state = 5, .external_lex_state = 6}, - [1548] = {.lex_state = 5, .external_lex_state = 6}, - [1549] = {.lex_state = 5, .external_lex_state = 6}, - [1550] = {.lex_state = 5, .external_lex_state = 6}, - [1551] = {.lex_state = 5, .external_lex_state = 6}, - [1552] = {.lex_state = 5, .external_lex_state = 6}, - [1553] = {.lex_state = 5, .external_lex_state = 6}, - [1554] = {.lex_state = 5, .external_lex_state = 6}, - [1555] = {.lex_state = 5, .external_lex_state = 6}, - [1556] = {.lex_state = 5, .external_lex_state = 6}, + [1548] = {.lex_state = 5, .external_lex_state = 2}, + [1549] = {.lex_state = 5, .external_lex_state = 2}, + [1550] = {.lex_state = 9, .external_lex_state = 9}, + [1551] = {.lex_state = 5, .external_lex_state = 2}, + [1552] = {.lex_state = 5, .external_lex_state = 2}, + [1553] = {.lex_state = 5, .external_lex_state = 2}, + [1554] = {.lex_state = 5, .external_lex_state = 2}, + [1555] = {.lex_state = 5, .external_lex_state = 2}, + [1556] = {.lex_state = 9, .external_lex_state = 9}, [1557] = {.lex_state = 5, .external_lex_state = 2}, [1558] = {.lex_state = 5, .external_lex_state = 2}, - [1559] = {.lex_state = 5, .external_lex_state = 2}, - [1560] = {.lex_state = 5, .external_lex_state = 2}, - [1561] = {.lex_state = 5, .external_lex_state = 2}, - [1562] = {.lex_state = 5, .external_lex_state = 2}, - [1563] = {.lex_state = 5, .external_lex_state = 2}, - [1564] = {.lex_state = 8, .external_lex_state = 9}, - [1565] = {.lex_state = 5, .external_lex_state = 2}, - [1566] = {.lex_state = 5, .external_lex_state = 2}, - [1567] = {.lex_state = 8, .external_lex_state = 9}, - [1568] = {.lex_state = 8, .external_lex_state = 13}, - [1569] = {.lex_state = 8, .external_lex_state = 13}, - [1570] = {.lex_state = 8, .external_lex_state = 14}, - [1571] = {.lex_state = 8, .external_lex_state = 15}, - [1572] = {.lex_state = 8, .external_lex_state = 15}, - [1573] = {.lex_state = 8, .external_lex_state = 14}, - [1574] = {.lex_state = 52, .external_lex_state = 12}, - [1575] = {.lex_state = 52, .external_lex_state = 12}, - [1576] = {.lex_state = 52, .external_lex_state = 12}, - [1577] = {.lex_state = 52, .external_lex_state = 12}, - [1578] = {.lex_state = 8, .external_lex_state = 13}, - [1579] = {.lex_state = 8, .external_lex_state = 13}, - [1580] = {.lex_state = 52, .external_lex_state = 14}, - [1581] = {.lex_state = 52, .external_lex_state = 2}, - [1582] = {.lex_state = 13, .external_lex_state = 12}, - [1583] = {.lex_state = 13, .external_lex_state = 12}, - [1584] = {.lex_state = 13, .external_lex_state = 12}, - [1585] = {.lex_state = 13, .external_lex_state = 12}, - [1586] = {.lex_state = 13, .external_lex_state = 12}, - [1587] = {.lex_state = 13, .external_lex_state = 12}, - [1588] = {.lex_state = 52, .external_lex_state = 2}, - [1589] = {.lex_state = 52, .external_lex_state = 14}, - [1590] = {.lex_state = 11, .external_lex_state = 9}, - [1591] = {.lex_state = 13, .external_lex_state = 14}, - [1592] = {.lex_state = 13, .external_lex_state = 14}, - [1593] = {.lex_state = 13, .external_lex_state = 14}, + [1559] = {.lex_state = 9, .external_lex_state = 13}, + [1560] = {.lex_state = 9, .external_lex_state = 13}, + [1561] = {.lex_state = 9, .external_lex_state = 14}, + [1562] = {.lex_state = 9, .external_lex_state = 14}, + [1563] = {.lex_state = 52, .external_lex_state = 12}, + [1564] = {.lex_state = 52, .external_lex_state = 12}, + [1565] = {.lex_state = 52, .external_lex_state = 12}, + [1566] = {.lex_state = 9, .external_lex_state = 13}, + [1567] = {.lex_state = 52, .external_lex_state = 12}, + [1568] = {.lex_state = 9, .external_lex_state = 13}, + [1569] = {.lex_state = 13, .external_lex_state = 12}, + [1570] = {.lex_state = 52, .external_lex_state = 15}, + [1571] = {.lex_state = 13, .external_lex_state = 12}, + [1572] = {.lex_state = 52, .external_lex_state = 15}, + [1573] = {.lex_state = 52, .external_lex_state = 2}, + [1574] = {.lex_state = 13, .external_lex_state = 12}, + [1575] = {.lex_state = 52, .external_lex_state = 2}, + [1576] = {.lex_state = 13, .external_lex_state = 12}, + [1577] = {.lex_state = 13, .external_lex_state = 12}, + [1578] = {.lex_state = 13, .external_lex_state = 12}, + [1579] = {.lex_state = 52, .external_lex_state = 15}, + [1580] = {.lex_state = 52, .external_lex_state = 15}, + [1581] = {.lex_state = 12, .external_lex_state = 9}, + [1582] = {.lex_state = 12, .external_lex_state = 9}, + [1583] = {.lex_state = 13, .external_lex_state = 14}, + [1584] = {.lex_state = 13, .external_lex_state = 14}, + [1585] = {.lex_state = 13, .external_lex_state = 13}, + [1586] = {.lex_state = 13, .external_lex_state = 13}, + [1587] = {.lex_state = 13, .external_lex_state = 13}, + [1588] = {.lex_state = 13, .external_lex_state = 15}, + [1589] = {.lex_state = 13, .external_lex_state = 15}, + [1590] = {.lex_state = 13, .external_lex_state = 15}, + [1591] = {.lex_state = 12, .external_lex_state = 9}, + [1592] = {.lex_state = 12, .external_lex_state = 9}, + [1593] = {.lex_state = 12, .external_lex_state = 9}, [1594] = {.lex_state = 13, .external_lex_state = 14}, - [1595] = {.lex_state = 11, .external_lex_state = 9}, - [1596] = {.lex_state = 13, .external_lex_state = 14}, + [1595] = {.lex_state = 13, .external_lex_state = 15}, + [1596] = {.lex_state = 12, .external_lex_state = 9}, [1597] = {.lex_state = 13, .external_lex_state = 14}, - [1598] = {.lex_state = 13, .external_lex_state = 15}, - [1599] = {.lex_state = 13, .external_lex_state = 13}, - [1600] = {.lex_state = 13, .external_lex_state = 13}, - [1601] = {.lex_state = 13, .external_lex_state = 15}, - [1602] = {.lex_state = 13, .external_lex_state = 15}, - [1603] = {.lex_state = 13, .external_lex_state = 15}, - [1604] = {.lex_state = 13, .external_lex_state = 15}, + [1598] = {.lex_state = 13, .external_lex_state = 13}, + [1599] = {.lex_state = 13, .external_lex_state = 14}, + [1600] = {.lex_state = 13, .external_lex_state = 14}, + [1601] = {.lex_state = 13, .external_lex_state = 13}, + [1602] = {.lex_state = 13, .external_lex_state = 13}, + [1603] = {.lex_state = 13, .external_lex_state = 14}, + [1604] = {.lex_state = 13, .external_lex_state = 14}, [1605] = {.lex_state = 13, .external_lex_state = 15}, [1606] = {.lex_state = 13, .external_lex_state = 14}, [1607] = {.lex_state = 13, .external_lex_state = 14}, [1608] = {.lex_state = 13, .external_lex_state = 14}, [1609] = {.lex_state = 13, .external_lex_state = 14}, - [1610] = {.lex_state = 13, .external_lex_state = 15}, - [1611] = {.lex_state = 13, .external_lex_state = 15}, - [1612] = {.lex_state = 13, .external_lex_state = 15}, - [1613] = {.lex_state = 13, .external_lex_state = 15}, - [1614] = {.lex_state = 11, .external_lex_state = 9}, - [1615] = {.lex_state = 13, .external_lex_state = 13}, - [1616] = {.lex_state = 13, .external_lex_state = 15}, - [1617] = {.lex_state = 11, .external_lex_state = 9}, - [1618] = {.lex_state = 13, .external_lex_state = 14}, - [1619] = {.lex_state = 13, .external_lex_state = 14}, - [1620] = {.lex_state = 13, .external_lex_state = 15}, - [1621] = {.lex_state = 13, .external_lex_state = 13}, - [1622] = {.lex_state = 13, .external_lex_state = 15}, - [1623] = {.lex_state = 13, .external_lex_state = 15}, - [1624] = {.lex_state = 13, .external_lex_state = 15}, - [1625] = {.lex_state = 13, .external_lex_state = 15}, - [1626] = {.lex_state = 13, .external_lex_state = 15}, - [1627] = {.lex_state = 13, .external_lex_state = 15}, - [1628] = {.lex_state = 11, .external_lex_state = 9}, - [1629] = {.lex_state = 13, .external_lex_state = 15}, - [1630] = {.lex_state = 13, .external_lex_state = 15}, - [1631] = {.lex_state = 13, .external_lex_state = 15}, - [1632] = {.lex_state = 13, .external_lex_state = 15}, - [1633] = {.lex_state = 13, .external_lex_state = 13}, - [1634] = {.lex_state = 11, .external_lex_state = 9}, - [1635] = {.lex_state = 13, .external_lex_state = 13}, - [1636] = {.lex_state = 12, .external_lex_state = 15}, - [1637] = {.lex_state = 12, .external_lex_state = 15}, - [1638] = {.lex_state = 11, .external_lex_state = 15}, - [1639] = {.lex_state = 12, .external_lex_state = 15}, - [1640] = {.lex_state = 11, .external_lex_state = 15}, - [1641] = {.lex_state = 11, .external_lex_state = 9}, - [1642] = {.lex_state = 12, .external_lex_state = 15}, - [1643] = {.lex_state = 11, .external_lex_state = 15}, - [1644] = {.lex_state = 12, .external_lex_state = 15}, - [1645] = {.lex_state = 12, .external_lex_state = 15}, - [1646] = {.lex_state = 11, .external_lex_state = 15}, - [1647] = {.lex_state = 12, .external_lex_state = 15}, - [1648] = {.lex_state = 12, .external_lex_state = 15}, - [1649] = {.lex_state = 12, .external_lex_state = 15}, - [1650] = {.lex_state = 11, .external_lex_state = 15}, - [1651] = {.lex_state = 11, .external_lex_state = 15}, - [1652] = {.lex_state = 11, .external_lex_state = 15}, - [1653] = {.lex_state = 11, .external_lex_state = 15}, - [1654] = {.lex_state = 12, .external_lex_state = 15}, - [1655] = {.lex_state = 12, .external_lex_state = 15}, - [1656] = {.lex_state = 5, .external_lex_state = 14}, - [1657] = {.lex_state = 12, .external_lex_state = 15}, - [1658] = {.lex_state = 5, .external_lex_state = 14}, - [1659] = {.lex_state = 12, .external_lex_state = 15}, - [1660] = {.lex_state = 11, .external_lex_state = 15}, - [1661] = {.lex_state = 5, .external_lex_state = 14}, - [1662] = {.lex_state = 5, .external_lex_state = 15}, - [1663] = {.lex_state = 8, .external_lex_state = 13}, - [1664] = {.lex_state = 5, .external_lex_state = 15}, - [1665] = {.lex_state = 52, .external_lex_state = 12}, - [1666] = {.lex_state = 8, .external_lex_state = 9}, - [1667] = {.lex_state = 52, .external_lex_state = 12}, - [1668] = {.lex_state = 8, .external_lex_state = 9}, - [1669] = {.lex_state = 8, .external_lex_state = 9}, - [1670] = {.lex_state = 8, .external_lex_state = 9}, - [1671] = {.lex_state = 52, .external_lex_state = 12}, - [1672] = {.lex_state = 8, .external_lex_state = 9}, - [1673] = {.lex_state = 52, .external_lex_state = 12}, - [1674] = {.lex_state = 52, .external_lex_state = 12}, - [1675] = {.lex_state = 52, .external_lex_state = 12}, - [1676] = {.lex_state = 8, .external_lex_state = 9}, - [1677] = {.lex_state = 8, .external_lex_state = 9}, - [1678] = {.lex_state = 52, .external_lex_state = 12}, - [1679] = {.lex_state = 8, .external_lex_state = 9}, - [1680] = {.lex_state = 8, .external_lex_state = 9}, - [1681] = {.lex_state = 52, .external_lex_state = 12}, - [1682] = {.lex_state = 52, .external_lex_state = 14}, - [1683] = {.lex_state = 0, .external_lex_state = 16}, - [1684] = {.lex_state = 0, .external_lex_state = 16}, - [1685] = {.lex_state = 52, .external_lex_state = 14}, - [1686] = {.lex_state = 52, .external_lex_state = 14}, + [1610] = {.lex_state = 13, .external_lex_state = 14}, + [1611] = {.lex_state = 13, .external_lex_state = 14}, + [1612] = {.lex_state = 13, .external_lex_state = 14}, + [1613] = {.lex_state = 13, .external_lex_state = 14}, + [1614] = {.lex_state = 13, .external_lex_state = 15}, + [1615] = {.lex_state = 12, .external_lex_state = 14}, + [1616] = {.lex_state = 12, .external_lex_state = 14}, + [1617] = {.lex_state = 12, .external_lex_state = 9}, + [1618] = {.lex_state = 12, .external_lex_state = 14}, + [1619] = {.lex_state = 12, .external_lex_state = 14}, + [1620] = {.lex_state = 12, .external_lex_state = 14}, + [1621] = {.lex_state = 12, .external_lex_state = 14}, + [1622] = {.lex_state = 12, .external_lex_state = 14}, + [1623] = {.lex_state = 12, .external_lex_state = 14}, + [1624] = {.lex_state = 12, .external_lex_state = 14}, + [1625] = {.lex_state = 9, .external_lex_state = 13}, + [1626] = {.lex_state = 9, .external_lex_state = 9}, + [1627] = {.lex_state = 9, .external_lex_state = 9}, + [1628] = {.lex_state = 9, .external_lex_state = 9}, + [1629] = {.lex_state = 9, .external_lex_state = 9}, + [1630] = {.lex_state = 9, .external_lex_state = 9}, + [1631] = {.lex_state = 9, .external_lex_state = 9}, + [1632] = {.lex_state = 9, .external_lex_state = 9}, + [1633] = {.lex_state = 52, .external_lex_state = 12}, + [1634] = {.lex_state = 52, .external_lex_state = 12}, + [1635] = {.lex_state = 52, .external_lex_state = 12}, + [1636] = {.lex_state = 9, .external_lex_state = 9}, + [1637] = {.lex_state = 52, .external_lex_state = 12}, + [1638] = {.lex_state = 52, .external_lex_state = 12}, + [1639] = {.lex_state = 52, .external_lex_state = 12}, + [1640] = {.lex_state = 9, .external_lex_state = 9}, + [1641] = {.lex_state = 52, .external_lex_state = 12}, + [1642] = {.lex_state = 52, .external_lex_state = 12}, + [1643] = {.lex_state = 0, .external_lex_state = 16}, + [1644] = {.lex_state = 9, .external_lex_state = 13}, + [1645] = {.lex_state = 52, .external_lex_state = 15}, + [1646] = {.lex_state = 0, .external_lex_state = 16}, + [1647] = {.lex_state = 0, .external_lex_state = 16}, + [1648] = {.lex_state = 52, .external_lex_state = 15}, + [1649] = {.lex_state = 52, .external_lex_state = 15}, + [1650] = {.lex_state = 0, .external_lex_state = 16}, + [1651] = {.lex_state = 0, .external_lex_state = 16}, + [1652] = {.lex_state = 0, .external_lex_state = 16}, + [1653] = {.lex_state = 52, .external_lex_state = 15}, + [1654] = {.lex_state = 52, .external_lex_state = 15}, + [1655] = {.lex_state = 0, .external_lex_state = 16}, + [1656] = {.lex_state = 0, .external_lex_state = 16}, + [1657] = {.lex_state = 52, .external_lex_state = 15}, + [1658] = {.lex_state = 52, .external_lex_state = 15}, + [1659] = {.lex_state = 52, .external_lex_state = 15}, + [1660] = {.lex_state = 9, .external_lex_state = 13}, + [1661] = {.lex_state = 0, .external_lex_state = 16}, + [1662] = {.lex_state = 52, .external_lex_state = 15}, + [1663] = {.lex_state = 52, .external_lex_state = 15}, + [1664] = {.lex_state = 0, .external_lex_state = 16}, + [1665] = {.lex_state = 52, .external_lex_state = 15}, + [1666] = {.lex_state = 0, .external_lex_state = 16}, + [1667] = {.lex_state = 52, .external_lex_state = 15}, + [1668] = {.lex_state = 52, .external_lex_state = 15}, + [1669] = {.lex_state = 52, .external_lex_state = 15}, + [1670] = {.lex_state = 9, .external_lex_state = 13}, + [1671] = {.lex_state = 0, .external_lex_state = 16}, + [1672] = {.lex_state = 0, .external_lex_state = 16}, + [1673] = {.lex_state = 9, .external_lex_state = 9}, + [1674] = {.lex_state = 52, .external_lex_state = 13}, + [1675] = {.lex_state = 0, .external_lex_state = 16}, + [1676] = {.lex_state = 52, .external_lex_state = 13}, + [1677] = {.lex_state = 52, .external_lex_state = 15}, + [1678] = {.lex_state = 9, .external_lex_state = 13}, + [1679] = {.lex_state = 52, .external_lex_state = 13}, + [1680] = {.lex_state = 52, .external_lex_state = 15}, + [1681] = {.lex_state = 52, .external_lex_state = 13}, + [1682] = {.lex_state = 0, .external_lex_state = 16}, + [1683] = {.lex_state = 52, .external_lex_state = 13}, + [1684] = {.lex_state = 52, .external_lex_state = 13}, + [1685] = {.lex_state = 0, .external_lex_state = 16}, + [1686] = {.lex_state = 52, .external_lex_state = 13}, [1687] = {.lex_state = 0, .external_lex_state = 16}, - [1688] = {.lex_state = 0, .external_lex_state = 16}, - [1689] = {.lex_state = 8, .external_lex_state = 9}, - [1690] = {.lex_state = 0, .external_lex_state = 16}, - [1691] = {.lex_state = 0, .external_lex_state = 16}, - [1692] = {.lex_state = 52, .external_lex_state = 14}, - [1693] = {.lex_state = 52, .external_lex_state = 14}, - [1694] = {.lex_state = 52, .external_lex_state = 14}, - [1695] = {.lex_state = 8, .external_lex_state = 13}, + [1688] = {.lex_state = 9, .external_lex_state = 13}, + [1689] = {.lex_state = 52, .external_lex_state = 13}, + [1690] = {.lex_state = 52, .external_lex_state = 15}, + [1691] = {.lex_state = 9, .external_lex_state = 13}, + [1692] = {.lex_state = 0, .external_lex_state = 16}, + [1693] = {.lex_state = 9, .external_lex_state = 13}, + [1694] = {.lex_state = 9, .external_lex_state = 13}, + [1695] = {.lex_state = 9, .external_lex_state = 13}, [1696] = {.lex_state = 0, .external_lex_state = 16}, - [1697] = {.lex_state = 0, .external_lex_state = 16}, - [1698] = {.lex_state = 52, .external_lex_state = 14}, - [1699] = {.lex_state = 52, .external_lex_state = 14}, - [1700] = {.lex_state = 52, .external_lex_state = 14}, - [1701] = {.lex_state = 0, .external_lex_state = 16}, - [1702] = {.lex_state = 0, .external_lex_state = 16}, - [1703] = {.lex_state = 52, .external_lex_state = 14}, - [1704] = {.lex_state = 52, .external_lex_state = 14}, - [1705] = {.lex_state = 8, .external_lex_state = 13}, - [1706] = {.lex_state = 8, .external_lex_state = 13}, - [1707] = {.lex_state = 0, .external_lex_state = 16}, - [1708] = {.lex_state = 52, .external_lex_state = 14}, - [1709] = {.lex_state = 0, .external_lex_state = 16}, - [1710] = {.lex_state = 52, .external_lex_state = 14}, - [1711] = {.lex_state = 0, .external_lex_state = 16}, - [1712] = {.lex_state = 0, .external_lex_state = 16}, - [1713] = {.lex_state = 52, .external_lex_state = 14}, - [1714] = {.lex_state = 52, .external_lex_state = 14}, - [1715] = {.lex_state = 0, .external_lex_state = 16}, - [1716] = {.lex_state = 0, .external_lex_state = 16}, - [1717] = {.lex_state = 52, .external_lex_state = 14}, - [1718] = {.lex_state = 52, .external_lex_state = 14}, - [1719] = {.lex_state = 0, .external_lex_state = 16}, - [1720] = {.lex_state = 0, .external_lex_state = 16}, - [1721] = {.lex_state = 52, .external_lex_state = 13}, - [1722] = {.lex_state = 8, .external_lex_state = 13}, - [1723] = {.lex_state = 52, .external_lex_state = 13}, - [1724] = {.lex_state = 8, .external_lex_state = 13}, - [1725] = {.lex_state = 52, .external_lex_state = 13}, - [1726] = {.lex_state = 8, .external_lex_state = 13}, - [1727] = {.lex_state = 52, .external_lex_state = 13}, - [1728] = {.lex_state = 52, .external_lex_state = 13}, - [1729] = {.lex_state = 8, .external_lex_state = 13}, - [1730] = {.lex_state = 52, .external_lex_state = 13}, - [1731] = {.lex_state = 52, .external_lex_state = 13}, - [1732] = {.lex_state = 52, .external_lex_state = 13}, - [1733] = {.lex_state = 8, .external_lex_state = 13}, - [1734] = {.lex_state = 8, .external_lex_state = 13}, - [1735] = {.lex_state = 0, .external_lex_state = 16}, - [1736] = {.lex_state = 8, .external_lex_state = 14}, + [1697] = {.lex_state = 6, .external_lex_state = 14}, + [1698] = {.lex_state = 5, .external_lex_state = 15}, + [1699] = {.lex_state = 9, .external_lex_state = 14}, + [1700] = {.lex_state = 6, .external_lex_state = 14}, + [1701] = {.lex_state = 6, .external_lex_state = 14}, + [1702] = {.lex_state = 9, .external_lex_state = 14}, + [1703] = {.lex_state = 9, .external_lex_state = 14}, + [1704] = {.lex_state = 9, .external_lex_state = 14}, + [1705] = {.lex_state = 9, .external_lex_state = 14}, + [1706] = {.lex_state = 9, .external_lex_state = 14}, + [1707] = {.lex_state = 6, .external_lex_state = 14}, + [1708] = {.lex_state = 9, .external_lex_state = 14}, + [1709] = {.lex_state = 9, .external_lex_state = 9}, + [1710] = {.lex_state = 6, .external_lex_state = 14}, + [1711] = {.lex_state = 6, .external_lex_state = 14}, + [1712] = {.lex_state = 6, .external_lex_state = 14}, + [1713] = {.lex_state = 6, .external_lex_state = 14}, + [1714] = {.lex_state = 9, .external_lex_state = 14}, + [1715] = {.lex_state = 6, .external_lex_state = 14}, + [1716] = {.lex_state = 52, .external_lex_state = 12}, + [1717] = {.lex_state = 52, .external_lex_state = 12}, + [1718] = {.lex_state = 6, .external_lex_state = 14}, + [1719] = {.lex_state = 5, .external_lex_state = 15}, + [1720] = {.lex_state = 6, .external_lex_state = 14}, + [1721] = {.lex_state = 9, .external_lex_state = 14}, + [1722] = {.lex_state = 5, .external_lex_state = 15}, + [1723] = {.lex_state = 5, .external_lex_state = 15}, + [1724] = {.lex_state = 9, .external_lex_state = 13}, + [1725] = {.lex_state = 52, .external_lex_state = 12}, + [1726] = {.lex_state = 52, .external_lex_state = 12}, + [1727] = {.lex_state = 52, .external_lex_state = 12}, + [1728] = {.lex_state = 52, .external_lex_state = 12}, + [1729] = {.lex_state = 9, .external_lex_state = 14}, + [1730] = {.lex_state = 52, .external_lex_state = 12}, + [1731] = {.lex_state = 9, .external_lex_state = 13}, + [1732] = {.lex_state = 9, .external_lex_state = 13}, + [1733] = {.lex_state = 9, .external_lex_state = 13}, + [1734] = {.lex_state = 52, .external_lex_state = 12}, + [1735] = {.lex_state = 5, .external_lex_state = 15}, + [1736] = {.lex_state = 5, .external_lex_state = 15}, [1737] = {.lex_state = 52, .external_lex_state = 12}, - [1738] = {.lex_state = 8, .external_lex_state = 15}, - [1739] = {.lex_state = 8, .external_lex_state = 14}, - [1740] = {.lex_state = 8, .external_lex_state = 9}, - [1741] = {.lex_state = 8, .external_lex_state = 15}, - [1742] = {.lex_state = 8, .external_lex_state = 15}, - [1743] = {.lex_state = 8, .external_lex_state = 15}, - [1744] = {.lex_state = 8, .external_lex_state = 15}, - [1745] = {.lex_state = 8, .external_lex_state = 14}, - [1746] = {.lex_state = 8, .external_lex_state = 14}, - [1747] = {.lex_state = 8, .external_lex_state = 15}, - [1748] = {.lex_state = 8, .external_lex_state = 14}, - [1749] = {.lex_state = 8, .external_lex_state = 14}, - [1750] = {.lex_state = 8, .external_lex_state = 14}, - [1751] = {.lex_state = 8, .external_lex_state = 15}, - [1752] = {.lex_state = 8, .external_lex_state = 15}, - [1753] = {.lex_state = 8, .external_lex_state = 15}, - [1754] = {.lex_state = 8, .external_lex_state = 14}, - [1755] = {.lex_state = 8, .external_lex_state = 14}, + [1738] = {.lex_state = 6, .external_lex_state = 14}, + [1739] = {.lex_state = 6, .external_lex_state = 14}, + [1740] = {.lex_state = 9, .external_lex_state = 14}, + [1741] = {.lex_state = 52, .external_lex_state = 12}, + [1742] = {.lex_state = 52, .external_lex_state = 12}, + [1743] = {.lex_state = 52, .external_lex_state = 12}, + [1744] = {.lex_state = 52, .external_lex_state = 12}, + [1745] = {.lex_state = 9, .external_lex_state = 13}, + [1746] = {.lex_state = 52, .external_lex_state = 12}, + [1747] = {.lex_state = 9, .external_lex_state = 13}, + [1748] = {.lex_state = 52, .external_lex_state = 12}, + [1749] = {.lex_state = 6, .external_lex_state = 14}, + [1750] = {.lex_state = 9, .external_lex_state = 13}, + [1751] = {.lex_state = 6, .external_lex_state = 14}, + [1752] = {.lex_state = 9, .external_lex_state = 14}, + [1753] = {.lex_state = 9, .external_lex_state = 13}, + [1754] = {.lex_state = 9, .external_lex_state = 13}, + [1755] = {.lex_state = 52, .external_lex_state = 12}, [1756] = {.lex_state = 52, .external_lex_state = 12}, - [1757] = {.lex_state = 8, .external_lex_state = 14}, - [1758] = {.lex_state = 8, .external_lex_state = 15}, - [1759] = {.lex_state = 8, .external_lex_state = 13}, - [1760] = {.lex_state = 52, .external_lex_state = 12}, - [1761] = {.lex_state = 52, .external_lex_state = 12}, - [1762] = {.lex_state = 8, .external_lex_state = 15}, - [1763] = {.lex_state = 8, .external_lex_state = 13}, - [1764] = {.lex_state = 8, .external_lex_state = 13}, + [1757] = {.lex_state = 5, .external_lex_state = 15}, + [1758] = {.lex_state = 9, .external_lex_state = 13}, + [1759] = {.lex_state = 5, .external_lex_state = 15}, + [1760] = {.lex_state = 9, .external_lex_state = 14}, + [1761] = {.lex_state = 52, .external_lex_state = 9}, + [1762] = {.lex_state = 52, .external_lex_state = 12}, + [1763] = {.lex_state = 52, .external_lex_state = 12}, + [1764] = {.lex_state = 52, .external_lex_state = 12}, [1765] = {.lex_state = 52, .external_lex_state = 12}, - [1766] = {.lex_state = 8, .external_lex_state = 13}, - [1767] = {.lex_state = 8, .external_lex_state = 13}, - [1768] = {.lex_state = 8, .external_lex_state = 13}, - [1769] = {.lex_state = 52, .external_lex_state = 12}, + [1766] = {.lex_state = 52, .external_lex_state = 12}, + [1767] = {.lex_state = 0, .external_lex_state = 16}, + [1768] = {.lex_state = 9, .external_lex_state = 14}, + [1769] = {.lex_state = 52, .external_lex_state = 15}, [1770] = {.lex_state = 52, .external_lex_state = 9}, - [1771] = {.lex_state = 8, .external_lex_state = 13}, - [1772] = {.lex_state = 52, .external_lex_state = 12}, - [1773] = {.lex_state = 8, .external_lex_state = 13}, - [1774] = {.lex_state = 8, .external_lex_state = 15}, - [1775] = {.lex_state = 52, .external_lex_state = 12}, - [1776] = {.lex_state = 52, .external_lex_state = 12}, - [1777] = {.lex_state = 8, .external_lex_state = 13}, - [1778] = {.lex_state = 52, .external_lex_state = 12}, - [1779] = {.lex_state = 52, .external_lex_state = 12}, - [1780] = {.lex_state = 8, .external_lex_state = 13}, - [1781] = {.lex_state = 8, .external_lex_state = 15}, - [1782] = {.lex_state = 52, .external_lex_state = 12}, - [1783] = {.lex_state = 52, .external_lex_state = 12}, - [1784] = {.lex_state = 52, .external_lex_state = 12}, - [1785] = {.lex_state = 52, .external_lex_state = 12}, + [1771] = {.lex_state = 52, .external_lex_state = 12}, + [1772] = {.lex_state = 10, .external_lex_state = 17}, + [1773] = {.lex_state = 52, .external_lex_state = 13}, + [1774] = {.lex_state = 52, .external_lex_state = 15}, + [1775] = {.lex_state = 52, .external_lex_state = 15}, + [1776] = {.lex_state = 52, .external_lex_state = 15}, + [1777] = {.lex_state = 9, .external_lex_state = 14}, + [1778] = {.lex_state = 52, .external_lex_state = 13}, + [1779] = {.lex_state = 52, .external_lex_state = 15}, + [1780] = {.lex_state = 52, .external_lex_state = 13}, + [1781] = {.lex_state = 52, .external_lex_state = 15}, + [1782] = {.lex_state = 52, .external_lex_state = 13}, + [1783] = {.lex_state = 52, .external_lex_state = 2}, + [1784] = {.lex_state = 52, .external_lex_state = 14}, + [1785] = {.lex_state = 52, .external_lex_state = 13}, [1786] = {.lex_state = 52, .external_lex_state = 12}, - [1787] = {.lex_state = 52, .external_lex_state = 12}, + [1787] = {.lex_state = 52, .external_lex_state = 9}, [1788] = {.lex_state = 52, .external_lex_state = 12}, - [1789] = {.lex_state = 8, .external_lex_state = 15}, - [1790] = {.lex_state = 52, .external_lex_state = 12}, - [1791] = {.lex_state = 52, .external_lex_state = 12}, - [1792] = {.lex_state = 52, .external_lex_state = 12}, - [1793] = {.lex_state = 52, .external_lex_state = 12}, - [1794] = {.lex_state = 7, .external_lex_state = 13}, - [1795] = {.lex_state = 52, .external_lex_state = 13}, - [1796] = {.lex_state = 52, .external_lex_state = 14}, - [1797] = {.lex_state = 0, .external_lex_state = 16}, - [1798] = {.lex_state = 52, .external_lex_state = 15}, - [1799] = {.lex_state = 52, .external_lex_state = 9}, - [1800] = {.lex_state = 0, .external_lex_state = 16}, - [1801] = {.lex_state = 52, .external_lex_state = 13}, - [1802] = {.lex_state = 8, .external_lex_state = 15}, - [1803] = {.lex_state = 52, .external_lex_state = 12}, - [1804] = {.lex_state = 52, .external_lex_state = 14}, - [1805] = {.lex_state = 52, .external_lex_state = 9}, - [1806] = {.lex_state = 52, .external_lex_state = 14}, - [1807] = {.lex_state = 9, .external_lex_state = 17}, - [1808] = {.lex_state = 52, .external_lex_state = 12}, + [1789] = {.lex_state = 5, .external_lex_state = 14}, + [1790] = {.lex_state = 52, .external_lex_state = 13}, + [1791] = {.lex_state = 10, .external_lex_state = 17}, + [1792] = {.lex_state = 52, .external_lex_state = 13}, + [1793] = {.lex_state = 52, .external_lex_state = 15}, + [1794] = {.lex_state = 52, .external_lex_state = 9}, + [1795] = {.lex_state = 8, .external_lex_state = 13}, + [1796] = {.lex_state = 52, .external_lex_state = 9}, + [1797] = {.lex_state = 52, .external_lex_state = 9}, + [1798] = {.lex_state = 52, .external_lex_state = 9}, + [1799] = {.lex_state = 52, .external_lex_state = 15}, + [1800] = {.lex_state = 52, .external_lex_state = 12}, + [1801] = {.lex_state = 5, .external_lex_state = 14}, + [1802] = {.lex_state = 10, .external_lex_state = 17}, + [1803] = {.lex_state = 52, .external_lex_state = 9}, + [1804] = {.lex_state = 52, .external_lex_state = 13}, + [1805] = {.lex_state = 52, .external_lex_state = 15}, + [1806] = {.lex_state = 0, .external_lex_state = 16}, + [1807] = {.lex_state = 52, .external_lex_state = 14}, + [1808] = {.lex_state = 52, .external_lex_state = 13}, [1809] = {.lex_state = 52, .external_lex_state = 13}, - [1810] = {.lex_state = 52, .external_lex_state = 14}, - [1811] = {.lex_state = 52, .external_lex_state = 13}, - [1812] = {.lex_state = 52, .external_lex_state = 9}, - [1813] = {.lex_state = 52, .external_lex_state = 13}, + [1810] = {.lex_state = 52, .external_lex_state = 9}, + [1811] = {.lex_state = 52, .external_lex_state = 15}, + [1812] = {.lex_state = 10, .external_lex_state = 17}, + [1813] = {.lex_state = 8, .external_lex_state = 15}, [1814] = {.lex_state = 52, .external_lex_state = 13}, - [1815] = {.lex_state = 7, .external_lex_state = 14}, - [1816] = {.lex_state = 52, .external_lex_state = 13}, + [1815] = {.lex_state = 52, .external_lex_state = 9}, + [1816] = {.lex_state = 8, .external_lex_state = 12}, [1817] = {.lex_state = 52, .external_lex_state = 13}, - [1818] = {.lex_state = 52, .external_lex_state = 14}, - [1819] = {.lex_state = 52, .external_lex_state = 13}, - [1820] = {.lex_state = 52, .external_lex_state = 2}, - [1821] = {.lex_state = 9, .external_lex_state = 17}, - [1822] = {.lex_state = 52, .external_lex_state = 12}, - [1823] = {.lex_state = 9, .external_lex_state = 17}, - [1824] = {.lex_state = 52, .external_lex_state = 9}, - [1825] = {.lex_state = 52, .external_lex_state = 14}, - [1826] = {.lex_state = 52, .external_lex_state = 9}, - [1827] = {.lex_state = 52, .external_lex_state = 9}, - [1828] = {.lex_state = 52, .external_lex_state = 9}, - [1829] = {.lex_state = 9, .external_lex_state = 17}, + [1818] = {.lex_state = 52, .external_lex_state = 13}, + [1819] = {.lex_state = 52, .external_lex_state = 15}, + [1820] = {.lex_state = 52, .external_lex_state = 15}, + [1821] = {.lex_state = 52, .external_lex_state = 9}, + [1822] = {.lex_state = 52, .external_lex_state = 15}, + [1823] = {.lex_state = 52, .external_lex_state = 9}, + [1824] = {.lex_state = 52, .external_lex_state = 15}, + [1825] = {.lex_state = 52, .external_lex_state = 15}, + [1826] = {.lex_state = 52, .external_lex_state = 15}, + [1827] = {.lex_state = 52, .external_lex_state = 15}, + [1828] = {.lex_state = 52, .external_lex_state = 15}, + [1829] = {.lex_state = 52, .external_lex_state = 15}, [1830] = {.lex_state = 52, .external_lex_state = 13}, [1831] = {.lex_state = 52, .external_lex_state = 13}, - [1832] = {.lex_state = 52, .external_lex_state = 12}, - [1833] = {.lex_state = 52, .external_lex_state = 13}, - [1834] = {.lex_state = 52, .external_lex_state = 9}, - [1835] = {.lex_state = 52, .external_lex_state = 14}, - [1836] = {.lex_state = 52, .external_lex_state = 15}, - [1837] = {.lex_state = 52, .external_lex_state = 14}, - [1838] = {.lex_state = 7, .external_lex_state = 12}, - [1839] = {.lex_state = 52, .external_lex_state = 14}, - [1840] = {.lex_state = 52, .external_lex_state = 14}, - [1841] = {.lex_state = 52, .external_lex_state = 14}, + [1832] = {.lex_state = 52, .external_lex_state = 15}, + [1833] = {.lex_state = 52, .external_lex_state = 15}, + [1834] = {.lex_state = 52, .external_lex_state = 14}, + [1835] = {.lex_state = 52, .external_lex_state = 15}, + [1836] = {.lex_state = 52, .external_lex_state = 6}, + [1837] = {.lex_state = 52, .external_lex_state = 8}, + [1838] = {.lex_state = 52, .external_lex_state = 13}, + [1839] = {.lex_state = 52, .external_lex_state = 13}, + [1840] = {.lex_state = 8, .external_lex_state = 12}, + [1841] = {.lex_state = 52, .external_lex_state = 15}, [1842] = {.lex_state = 52, .external_lex_state = 14}, - [1843] = {.lex_state = 52, .external_lex_state = 9}, - [1844] = {.lex_state = 52, .external_lex_state = 13}, - [1845] = {.lex_state = 52, .external_lex_state = 14}, + [1843] = {.lex_state = 52, .external_lex_state = 12}, + [1844] = {.lex_state = 8, .external_lex_state = 15}, + [1845] = {.lex_state = 8, .external_lex_state = 12}, [1846] = {.lex_state = 52, .external_lex_state = 13}, - [1847] = {.lex_state = 52, .external_lex_state = 13}, - [1848] = {.lex_state = 52, .external_lex_state = 15}, - [1849] = {.lex_state = 52, .external_lex_state = 15}, - [1850] = {.lex_state = 52, .external_lex_state = 15}, + [1847] = {.lex_state = 52, .external_lex_state = 15}, + [1848] = {.lex_state = 52, .external_lex_state = 14}, + [1849] = {.lex_state = 8, .external_lex_state = 15}, + [1850] = {.lex_state = 52, .external_lex_state = 14}, [1851] = {.lex_state = 52, .external_lex_state = 12}, [1852] = {.lex_state = 52, .external_lex_state = 12}, - [1853] = {.lex_state = 7, .external_lex_state = 14}, - [1854] = {.lex_state = 52, .external_lex_state = 12}, - [1855] = {.lex_state = 52, .external_lex_state = 13}, - [1856] = {.lex_state = 7, .external_lex_state = 15}, - [1857] = {.lex_state = 52, .external_lex_state = 12}, - [1858] = {.lex_state = 52, .external_lex_state = 8}, - [1859] = {.lex_state = 7, .external_lex_state = 13}, + [1853] = {.lex_state = 52, .external_lex_state = 12}, + [1854] = {.lex_state = 8, .external_lex_state = 15}, + [1855] = {.lex_state = 52, .external_lex_state = 12}, + [1856] = {.lex_state = 52, .external_lex_state = 14}, + [1857] = {.lex_state = 52, .external_lex_state = 13}, + [1858] = {.lex_state = 52, .external_lex_state = 13}, + [1859] = {.lex_state = 52, .external_lex_state = 12}, [1860] = {.lex_state = 52, .external_lex_state = 12}, - [1861] = {.lex_state = 52, .external_lex_state = 13}, - [1862] = {.lex_state = 52, .external_lex_state = 9}, - [1863] = {.lex_state = 52, .external_lex_state = 14}, - [1864] = {.lex_state = 52, .external_lex_state = 15}, - [1865] = {.lex_state = 52, .external_lex_state = 14}, - [1866] = {.lex_state = 7, .external_lex_state = 14}, - [1867] = {.lex_state = 52, .external_lex_state = 13}, - [1868] = {.lex_state = 7, .external_lex_state = 14}, - [1869] = {.lex_state = 52, .external_lex_state = 15}, - [1870] = {.lex_state = 52, .external_lex_state = 12}, - [1871] = {.lex_state = 52, .external_lex_state = 12}, + [1861] = {.lex_state = 52, .external_lex_state = 12}, + [1862] = {.lex_state = 52, .external_lex_state = 7}, + [1863] = {.lex_state = 52, .external_lex_state = 12}, + [1864] = {.lex_state = 52, .external_lex_state = 12}, + [1865] = {.lex_state = 52, .external_lex_state = 12}, + [1866] = {.lex_state = 8, .external_lex_state = 13}, + [1867] = {.lex_state = 8, .external_lex_state = 14}, + [1868] = {.lex_state = 8, .external_lex_state = 12}, + [1869] = {.lex_state = 52, .external_lex_state = 12}, + [1870] = {.lex_state = 52, .external_lex_state = 14}, + [1871] = {.lex_state = 52, .external_lex_state = 14}, [1872] = {.lex_state = 52, .external_lex_state = 15}, - [1873] = {.lex_state = 52, .external_lex_state = 13}, - [1874] = {.lex_state = 52, .external_lex_state = 15}, - [1875] = {.lex_state = 7, .external_lex_state = 13}, - [1876] = {.lex_state = 52, .external_lex_state = 12}, - [1877] = {.lex_state = 52, .external_lex_state = 7}, - [1878] = {.lex_state = 52, .external_lex_state = 13}, - [1879] = {.lex_state = 52, .external_lex_state = 12}, + [1873] = {.lex_state = 52, .external_lex_state = 15}, + [1874] = {.lex_state = 52, .external_lex_state = 14}, + [1875] = {.lex_state = 8, .external_lex_state = 13}, + [1876] = {.lex_state = 52, .external_lex_state = 14}, + [1877] = {.lex_state = 52, .external_lex_state = 14}, + [1878] = {.lex_state = 52, .external_lex_state = 14}, + [1879] = {.lex_state = 52, .external_lex_state = 15}, [1880] = {.lex_state = 52, .external_lex_state = 13}, - [1881] = {.lex_state = 52, .external_lex_state = 14}, - [1882] = {.lex_state = 52, .external_lex_state = 12}, - [1883] = {.lex_state = 7, .external_lex_state = 12}, - [1884] = {.lex_state = 7, .external_lex_state = 12}, - [1885] = {.lex_state = 7, .external_lex_state = 13}, - [1886] = {.lex_state = 52, .external_lex_state = 9}, - [1887] = {.lex_state = 52, .external_lex_state = 14}, - [1888] = {.lex_state = 52, .external_lex_state = 15}, - [1889] = {.lex_state = 52, .external_lex_state = 12}, - [1890] = {.lex_state = 52, .external_lex_state = 12}, - [1891] = {.lex_state = 52, .external_lex_state = 15}, - [1892] = {.lex_state = 7, .external_lex_state = 12}, - [1893] = {.lex_state = 52, .external_lex_state = 14}, - [1894] = {.lex_state = 52, .external_lex_state = 6}, - [1895] = {.lex_state = 52, .external_lex_state = 15}, - [1896] = {.lex_state = 52, .external_lex_state = 15}, + [1881] = {.lex_state = 52, .external_lex_state = 15}, + [1882] = {.lex_state = 8, .external_lex_state = 13}, + [1883] = {.lex_state = 52, .external_lex_state = 15}, + [1884] = {.lex_state = 52, .external_lex_state = 15}, + [1885] = {.lex_state = 52, .external_lex_state = 12}, + [1886] = {.lex_state = 52, .external_lex_state = 14}, + [1887] = {.lex_state = 9, .external_lex_state = 13}, + [1888] = {.lex_state = 9, .external_lex_state = 9}, + [1889] = {.lex_state = 8, .external_lex_state = 12}, + [1890] = {.lex_state = 52, .external_lex_state = 15}, + [1891] = {.lex_state = 52, .external_lex_state = 9}, + [1892] = {.lex_state = 52, .external_lex_state = 14}, + [1893] = {.lex_state = 52, .external_lex_state = 15}, + [1894] = {.lex_state = 52, .external_lex_state = 13}, + [1895] = {.lex_state = 9, .external_lex_state = 9}, + [1896] = {.lex_state = 52, .external_lex_state = 14}, [1897] = {.lex_state = 0, .external_lex_state = 16}, [1898] = {.lex_state = 52, .external_lex_state = 15}, [1899] = {.lex_state = 52, .external_lex_state = 15}, - [1900] = {.lex_state = 52, .external_lex_state = 14}, - [1901] = {.lex_state = 7, .external_lex_state = 9}, - [1902] = {.lex_state = 8, .external_lex_state = 9}, - [1903] = {.lex_state = 52, .external_lex_state = 12}, - [1904] = {.lex_state = 52, .external_lex_state = 12}, - [1905] = {.lex_state = 52, .external_lex_state = 13}, - [1906] = {.lex_state = 52, .external_lex_state = 13}, + [1900] = {.lex_state = 52, .external_lex_state = 13}, + [1901] = {.lex_state = 52, .external_lex_state = 12}, + [1902] = {.lex_state = 52, .external_lex_state = 14}, + [1903] = {.lex_state = 52, .external_lex_state = 15}, + [1904] = {.lex_state = 52, .external_lex_state = 15}, + [1905] = {.lex_state = 52, .external_lex_state = 12}, + [1906] = {.lex_state = 52, .external_lex_state = 15}, [1907] = {.lex_state = 52, .external_lex_state = 14}, - [1908] = {.lex_state = 52, .external_lex_state = 14}, - [1909] = {.lex_state = 8, .external_lex_state = 15}, - [1910] = {.lex_state = 7, .external_lex_state = 12}, - [1911] = {.lex_state = 8, .external_lex_state = 13}, + [1908] = {.lex_state = 8, .external_lex_state = 9}, + [1909] = {.lex_state = 52, .external_lex_state = 13}, + [1910] = {.lex_state = 9, .external_lex_state = 9}, + [1911] = {.lex_state = 52, .external_lex_state = 15}, [1912] = {.lex_state = 52, .external_lex_state = 15}, - [1913] = {.lex_state = 52, .external_lex_state = 15}, - [1914] = {.lex_state = 52, .external_lex_state = 15}, - [1915] = {.lex_state = 52, .external_lex_state = 14}, - [1916] = {.lex_state = 52, .external_lex_state = 12}, - [1917] = {.lex_state = 8, .external_lex_state = 9}, - [1918] = {.lex_state = 7, .external_lex_state = 13}, - [1919] = {.lex_state = 8, .external_lex_state = 14}, - [1920] = {.lex_state = 8, .external_lex_state = 9}, - [1921] = {.lex_state = 0, .external_lex_state = 16}, - [1922] = {.lex_state = 8, .external_lex_state = 9}, - [1923] = {.lex_state = 8, .external_lex_state = 14}, - [1924] = {.lex_state = 52, .external_lex_state = 9}, - [1925] = {.lex_state = 52, .external_lex_state = 13}, - [1926] = {.lex_state = 52, .external_lex_state = 12}, + [1913] = {.lex_state = 9, .external_lex_state = 13}, + [1914] = {.lex_state = 52, .external_lex_state = 14}, + [1915] = {.lex_state = 8, .external_lex_state = 15}, + [1916] = {.lex_state = 52, .external_lex_state = 13}, + [1917] = {.lex_state = 52, .external_lex_state = 12}, + [1918] = {.lex_state = 8, .external_lex_state = 9}, + [1919] = {.lex_state = 52, .external_lex_state = 9}, + [1920] = {.lex_state = 52, .external_lex_state = 13}, + [1921] = {.lex_state = 9, .external_lex_state = 9}, + [1922] = {.lex_state = 52, .external_lex_state = 14}, + [1923] = {.lex_state = 52, .external_lex_state = 15}, + [1924] = {.lex_state = 9, .external_lex_state = 13}, + [1925] = {.lex_state = 52, .external_lex_state = 14}, + [1926] = {.lex_state = 9, .external_lex_state = 9}, [1927] = {.lex_state = 52, .external_lex_state = 13}, - [1928] = {.lex_state = 52, .external_lex_state = 9}, + [1928] = {.lex_state = 52, .external_lex_state = 15}, [1929] = {.lex_state = 52, .external_lex_state = 12}, - [1930] = {.lex_state = 7, .external_lex_state = 14}, - [1931] = {.lex_state = 52, .external_lex_state = 12}, - [1932] = {.lex_state = 52, .external_lex_state = 14}, - [1933] = {.lex_state = 52, .external_lex_state = 15}, - [1934] = {.lex_state = 52, .external_lex_state = 15}, - [1935] = {.lex_state = 8, .external_lex_state = 15}, - [1936] = {.lex_state = 52, .external_lex_state = 15}, - [1937] = {.lex_state = 52, .external_lex_state = 12}, - [1938] = {.lex_state = 8, .external_lex_state = 9}, - [1939] = {.lex_state = 52, .external_lex_state = 13}, - [1940] = {.lex_state = 7, .external_lex_state = 9}, + [1930] = {.lex_state = 52, .external_lex_state = 13}, + [1931] = {.lex_state = 52, .external_lex_state = 13}, + [1932] = {.lex_state = 52, .external_lex_state = 12}, + [1933] = {.lex_state = 0, .external_lex_state = 16}, + [1934] = {.lex_state = 9, .external_lex_state = 9}, + [1935] = {.lex_state = 52, .external_lex_state = 12}, + [1936] = {.lex_state = 9, .external_lex_state = 9}, + [1937] = {.lex_state = 9, .external_lex_state = 9}, + [1938] = {.lex_state = 52, .external_lex_state = 12}, + [1939] = {.lex_state = 0, .external_lex_state = 16}, + [1940] = {.lex_state = 52, .external_lex_state = 12}, [1941] = {.lex_state = 52, .external_lex_state = 13}, [1942] = {.lex_state = 0, .external_lex_state = 16}, - [1943] = {.lex_state = 8, .external_lex_state = 13}, + [1943] = {.lex_state = 0, .external_lex_state = 16}, [1944] = {.lex_state = 52, .external_lex_state = 12}, [1945] = {.lex_state = 52, .external_lex_state = 15}, - [1946] = {.lex_state = 52, .external_lex_state = 13}, - [1947] = {.lex_state = 8, .external_lex_state = 15}, - [1948] = {.lex_state = 52, .external_lex_state = 14}, - [1949] = {.lex_state = 52, .external_lex_state = 12}, - [1950] = {.lex_state = 8, .external_lex_state = 13}, - [1951] = {.lex_state = 52, .external_lex_state = 13}, - [1952] = {.lex_state = 8, .external_lex_state = 9}, - [1953] = {.lex_state = 52, .external_lex_state = 13}, - [1954] = {.lex_state = 52, .external_lex_state = 14}, - [1955] = {.lex_state = 52, .external_lex_state = 13}, - [1956] = {.lex_state = 8, .external_lex_state = 9}, - [1957] = {.lex_state = 52, .external_lex_state = 14}, - [1958] = {.lex_state = 8, .external_lex_state = 14}, - [1959] = {.lex_state = 8, .external_lex_state = 14}, - [1960] = {.lex_state = 0, .external_lex_state = 16}, - [1961] = {.lex_state = 0, .external_lex_state = 16}, - [1962] = {.lex_state = 52, .external_lex_state = 14}, - [1963] = {.lex_state = 52, .external_lex_state = 12}, - [1964] = {.lex_state = 52, .external_lex_state = 14}, - [1965] = {.lex_state = 7, .external_lex_state = 9}, - [1966] = {.lex_state = 52, .external_lex_state = 12}, - [1967] = {.lex_state = 8, .external_lex_state = 14}, - [1968] = {.lex_state = 8, .external_lex_state = 14}, - [1969] = {.lex_state = 52, .external_lex_state = 12}, - [1970] = {.lex_state = 8, .external_lex_state = 14}, - [1971] = {.lex_state = 52, .external_lex_state = 13}, - [1972] = {.lex_state = 52, .external_lex_state = 15}, - [1973] = {.lex_state = 0, .external_lex_state = 16}, - [1974] = {.lex_state = 52, .external_lex_state = 14}, - [1975] = {.lex_state = 52, .external_lex_state = 15}, - [1976] = {.lex_state = 52, .external_lex_state = 14}, - [1977] = {.lex_state = 52, .external_lex_state = 15}, - [1978] = {.lex_state = 52, .external_lex_state = 13}, + [1946] = {.lex_state = 52, .external_lex_state = 12}, + [1947] = {.lex_state = 52, .external_lex_state = 13}, + [1948] = {.lex_state = 52, .external_lex_state = 15}, + [1949] = {.lex_state = 0, .external_lex_state = 16}, + [1950] = {.lex_state = 52, .external_lex_state = 9}, + [1951] = {.lex_state = 0, .external_lex_state = 16}, + [1952] = {.lex_state = 52, .external_lex_state = 15}, + [1953] = {.lex_state = 52, .external_lex_state = 14}, + [1954] = {.lex_state = 0, .external_lex_state = 16}, + [1955] = {.lex_state = 52, .external_lex_state = 15}, + [1956] = {.lex_state = 52, .external_lex_state = 12}, + [1957] = {.lex_state = 8, .external_lex_state = 9}, + [1958] = {.lex_state = 52, .external_lex_state = 14}, + [1959] = {.lex_state = 52, .external_lex_state = 14}, + [1960] = {.lex_state = 52, .external_lex_state = 14}, + [1961] = {.lex_state = 9, .external_lex_state = 9}, + [1962] = {.lex_state = 52, .external_lex_state = 15}, + [1963] = {.lex_state = 52, .external_lex_state = 13}, + [1964] = {.lex_state = 52, .external_lex_state = 12}, + [1965] = {.lex_state = 52, .external_lex_state = 15}, + [1966] = {.lex_state = 52, .external_lex_state = 15}, + [1967] = {.lex_state = 52, .external_lex_state = 13}, + [1968] = {.lex_state = 52, .external_lex_state = 15}, + [1969] = {.lex_state = 9, .external_lex_state = 9}, + [1970] = {.lex_state = 52, .external_lex_state = 14}, + [1971] = {.lex_state = 52, .external_lex_state = 14}, + [1972] = {.lex_state = 52, .external_lex_state = 14}, + [1973] = {.lex_state = 52, .external_lex_state = 14}, + [1974] = {.lex_state = 52, .external_lex_state = 13}, + [1975] = {.lex_state = 52, .external_lex_state = 14}, + [1976] = {.lex_state = 52, .external_lex_state = 12}, + [1977] = {.lex_state = 52, .external_lex_state = 13}, + [1978] = {.lex_state = 52, .external_lex_state = 14}, [1979] = {.lex_state = 52, .external_lex_state = 12}, - [1980] = {.lex_state = 52, .external_lex_state = 15}, - [1981] = {.lex_state = 52, .external_lex_state = 9}, + [1980] = {.lex_state = 52, .external_lex_state = 14}, + [1981] = {.lex_state = 8, .external_lex_state = 13}, [1982] = {.lex_state = 52, .external_lex_state = 14}, - [1983] = {.lex_state = 8, .external_lex_state = 9}, - [1984] = {.lex_state = 8, .external_lex_state = 9}, - [1985] = {.lex_state = 52, .external_lex_state = 14}, - [1986] = {.lex_state = 8, .external_lex_state = 9}, - [1987] = {.lex_state = 52, .external_lex_state = 14}, - [1988] = {.lex_state = 8, .external_lex_state = 9}, - [1989] = {.lex_state = 8, .external_lex_state = 14}, - [1990] = {.lex_state = 8, .external_lex_state = 14}, - [1991] = {.lex_state = 52, .external_lex_state = 15}, - [1992] = {.lex_state = 52, .external_lex_state = 14}, - [1993] = {.lex_state = 52, .external_lex_state = 13}, - [1994] = {.lex_state = 52, .external_lex_state = 12}, - [1995] = {.lex_state = 0, .external_lex_state = 16}, + [1983] = {.lex_state = 9, .external_lex_state = 9}, + [1984] = {.lex_state = 52, .external_lex_state = 14}, + [1985] = {.lex_state = 9, .external_lex_state = 13}, + [1986] = {.lex_state = 52, .external_lex_state = 12}, + [1987] = {.lex_state = 52, .external_lex_state = 12}, + [1988] = {.lex_state = 52, .external_lex_state = 12}, + [1989] = {.lex_state = 52, .external_lex_state = 15}, + [1990] = {.lex_state = 52, .external_lex_state = 12}, + [1991] = {.lex_state = 52, .external_lex_state = 14}, + [1992] = {.lex_state = 52, .external_lex_state = 12}, + [1993] = {.lex_state = 52, .external_lex_state = 14}, + [1994] = {.lex_state = 52, .external_lex_state = 14}, + [1995] = {.lex_state = 9, .external_lex_state = 9}, [1996] = {.lex_state = 52, .external_lex_state = 14}, - [1997] = {.lex_state = 8, .external_lex_state = 14}, - [1998] = {.lex_state = 8, .external_lex_state = 13}, - [1999] = {.lex_state = 52, .external_lex_state = 13}, - [2000] = {.lex_state = 52, .external_lex_state = 14}, - [2001] = {.lex_state = 0, .external_lex_state = 16}, - [2002] = {.lex_state = 52, .external_lex_state = 12}, - [2003] = {.lex_state = 8, .external_lex_state = 14}, - [2004] = {.lex_state = 52, .external_lex_state = 15}, - [2005] = {.lex_state = 52, .external_lex_state = 15}, + [1997] = {.lex_state = 52, .external_lex_state = 14}, + [1998] = {.lex_state = 52, .external_lex_state = 14}, + [1999] = {.lex_state = 52, .external_lex_state = 14}, + [2000] = {.lex_state = 9, .external_lex_state = 14}, + [2001] = {.lex_state = 52, .external_lex_state = 12}, + [2002] = {.lex_state = 9, .external_lex_state = 13}, + [2003] = {.lex_state = 9, .external_lex_state = 13}, + [2004] = {.lex_state = 9, .external_lex_state = 13}, + [2005] = {.lex_state = 52, .external_lex_state = 14}, [2006] = {.lex_state = 52, .external_lex_state = 15}, - [2007] = {.lex_state = 52, .external_lex_state = 12}, - [2008] = {.lex_state = 52, .external_lex_state = 12}, - [2009] = {.lex_state = 52, .external_lex_state = 14}, + [2007] = {.lex_state = 52, .external_lex_state = 9}, + [2008] = {.lex_state = 52, .external_lex_state = 15}, + [2009] = {.lex_state = 52, .external_lex_state = 9}, [2010] = {.lex_state = 52, .external_lex_state = 14}, - [2011] = {.lex_state = 8, .external_lex_state = 13}, - [2012] = {.lex_state = 52, .external_lex_state = 15}, - [2013] = {.lex_state = 3, .external_lex_state = 12}, - [2014] = {.lex_state = 52, .external_lex_state = 15}, + [2011] = {.lex_state = 52, .external_lex_state = 14}, + [2012] = {.lex_state = 52, .external_lex_state = 13}, + [2013] = {.lex_state = 52, .external_lex_state = 14}, + [2014] = {.lex_state = 52, .external_lex_state = 13}, [2015] = {.lex_state = 52, .external_lex_state = 14}, [2016] = {.lex_state = 52, .external_lex_state = 12}, - [2017] = {.lex_state = 52, .external_lex_state = 9}, - [2018] = {.lex_state = 52, .external_lex_state = 15}, - [2019] = {.lex_state = 52, .external_lex_state = 15}, - [2020] = {.lex_state = 52, .external_lex_state = 15}, - [2021] = {.lex_state = 52, .external_lex_state = 12}, - [2022] = {.lex_state = 52, .external_lex_state = 15}, - [2023] = {.lex_state = 52, .external_lex_state = 13}, - [2024] = {.lex_state = 8, .external_lex_state = 15}, - [2025] = {.lex_state = 7, .external_lex_state = 9}, + [2017] = {.lex_state = 9, .external_lex_state = 13}, + [2018] = {.lex_state = 9, .external_lex_state = 13}, + [2019] = {.lex_state = 9, .external_lex_state = 13}, + [2020] = {.lex_state = 9, .external_lex_state = 14}, + [2021] = {.lex_state = 52, .external_lex_state = 15}, + [2022] = {.lex_state = 9, .external_lex_state = 13}, + [2023] = {.lex_state = 52, .external_lex_state = 15}, + [2024] = {.lex_state = 52, .external_lex_state = 14}, + [2025] = {.lex_state = 52, .external_lex_state = 15}, [2026] = {.lex_state = 52, .external_lex_state = 15}, - [2027] = {.lex_state = 52, .external_lex_state = 15}, - [2028] = {.lex_state = 52, .external_lex_state = 15}, - [2029] = {.lex_state = 52, .external_lex_state = 15}, - [2030] = {.lex_state = 8, .external_lex_state = 13}, - [2031] = {.lex_state = 8, .external_lex_state = 13}, - [2032] = {.lex_state = 52, .external_lex_state = 9}, - [2033] = {.lex_state = 52, .external_lex_state = 15}, - [2034] = {.lex_state = 52, .external_lex_state = 12}, - [2035] = {.lex_state = 52, .external_lex_state = 15}, - [2036] = {.lex_state = 52, .external_lex_state = 9}, - [2037] = {.lex_state = 52, .external_lex_state = 9}, - [2038] = {.lex_state = 52, .external_lex_state = 12}, + [2027] = {.lex_state = 52, .external_lex_state = 12}, + [2028] = {.lex_state = 3, .external_lex_state = 12}, + [2029] = {.lex_state = 52, .external_lex_state = 13}, + [2030] = {.lex_state = 52, .external_lex_state = 13}, + [2031] = {.lex_state = 52, .external_lex_state = 14}, + [2032] = {.lex_state = 52, .external_lex_state = 12}, + [2033] = {.lex_state = 9, .external_lex_state = 13}, + [2034] = {.lex_state = 52, .external_lex_state = 15}, + [2035] = {.lex_state = 52, .external_lex_state = 9}, + [2036] = {.lex_state = 52, .external_lex_state = 13}, + [2037] = {.lex_state = 52, .external_lex_state = 13}, + [2038] = {.lex_state = 9, .external_lex_state = 13}, [2039] = {.lex_state = 3, .external_lex_state = 12}, - [2040] = {.lex_state = 52, .external_lex_state = 15}, - [2041] = {.lex_state = 52, .external_lex_state = 12}, + [2040] = {.lex_state = 9, .external_lex_state = 13}, + [2041] = {.lex_state = 52, .external_lex_state = 14}, [2042] = {.lex_state = 52, .external_lex_state = 12}, - [2043] = {.lex_state = 52, .external_lex_state = 15}, - [2044] = {.lex_state = 52, .external_lex_state = 12}, - [2045] = {.lex_state = 52, .external_lex_state = 15}, - [2046] = {.lex_state = 52, .external_lex_state = 15}, - [2047] = {.lex_state = 52, .external_lex_state = 15}, + [2043] = {.lex_state = 52, .external_lex_state = 14}, + [2044] = {.lex_state = 9, .external_lex_state = 14}, + [2045] = {.lex_state = 52, .external_lex_state = 13}, + [2046] = {.lex_state = 52, .external_lex_state = 13}, + [2047] = {.lex_state = 52, .external_lex_state = 13}, [2048] = {.lex_state = 52, .external_lex_state = 12}, [2049] = {.lex_state = 52, .external_lex_state = 12}, - [2050] = {.lex_state = 52, .external_lex_state = 15}, - [2051] = {.lex_state = 52, .external_lex_state = 15}, - [2052] = {.lex_state = 52, .external_lex_state = 9}, - [2053] = {.lex_state = 52, .external_lex_state = 15}, - [2054] = {.lex_state = 52, .external_lex_state = 15}, - [2055] = {.lex_state = 52, .external_lex_state = 15}, - [2056] = {.lex_state = 52, .external_lex_state = 9}, - [2057] = {.lex_state = 52, .external_lex_state = 15}, - [2058] = {.lex_state = 52, .external_lex_state = 13}, - [2059] = {.lex_state = 52, .external_lex_state = 13}, - [2060] = {.lex_state = 52, .external_lex_state = 13}, - [2061] = {.lex_state = 8, .external_lex_state = 15}, - [2062] = {.lex_state = 8, .external_lex_state = 15}, + [2050] = {.lex_state = 52, .external_lex_state = 14}, + [2051] = {.lex_state = 52, .external_lex_state = 14}, + [2052] = {.lex_state = 52, .external_lex_state = 12}, + [2053] = {.lex_state = 52, .external_lex_state = 14}, + [2054] = {.lex_state = 3, .external_lex_state = 12}, + [2055] = {.lex_state = 52, .external_lex_state = 14}, + [2056] = {.lex_state = 52, .external_lex_state = 14}, + [2057] = {.lex_state = 52, .external_lex_state = 14}, + [2058] = {.lex_state = 52, .external_lex_state = 14}, + [2059] = {.lex_state = 52, .external_lex_state = 14}, + [2060] = {.lex_state = 8, .external_lex_state = 9}, + [2061] = {.lex_state = 52, .external_lex_state = 14}, + [2062] = {.lex_state = 52, .external_lex_state = 9}, [2063] = {.lex_state = 52, .external_lex_state = 12}, - [2064] = {.lex_state = 8, .external_lex_state = 13}, - [2065] = {.lex_state = 52, .external_lex_state = 15}, - [2066] = {.lex_state = 52, .external_lex_state = 12}, - [2067] = {.lex_state = 52, .external_lex_state = 15}, - [2068] = {.lex_state = 52, .external_lex_state = 15}, + [2064] = {.lex_state = 52, .external_lex_state = 9}, + [2065] = {.lex_state = 52, .external_lex_state = 12}, + [2066] = {.lex_state = 52, .external_lex_state = 15}, + [2067] = {.lex_state = 52, .external_lex_state = 14}, + [2068] = {.lex_state = 52, .external_lex_state = 9}, [2069] = {.lex_state = 52, .external_lex_state = 14}, - [2070] = {.lex_state = 52, .external_lex_state = 12}, - [2071] = {.lex_state = 52, .external_lex_state = 15}, - [2072] = {.lex_state = 52, .external_lex_state = 12}, - [2073] = {.lex_state = 52, .external_lex_state = 12}, - [2074] = {.lex_state = 52, .external_lex_state = 13}, - [2075] = {.lex_state = 52, .external_lex_state = 15}, - [2076] = {.lex_state = 8, .external_lex_state = 13}, - [2077] = {.lex_state = 8, .external_lex_state = 15}, - [2078] = {.lex_state = 8, .external_lex_state = 15}, - [2079] = {.lex_state = 8, .external_lex_state = 13}, - [2080] = {.lex_state = 52, .external_lex_state = 15}, - [2081] = {.lex_state = 52, .external_lex_state = 13}, - [2082] = {.lex_state = 52, .external_lex_state = 12}, - [2083] = {.lex_state = 8, .external_lex_state = 15}, - [2084] = {.lex_state = 8, .external_lex_state = 13}, - [2085] = {.lex_state = 52, .external_lex_state = 13}, - [2086] = {.lex_state = 52, .external_lex_state = 13}, - [2087] = {.lex_state = 52, .external_lex_state = 13}, - [2088] = {.lex_state = 52, .external_lex_state = 12}, - [2089] = {.lex_state = 52, .external_lex_state = 15}, - [2090] = {.lex_state = 8, .external_lex_state = 13}, - [2091] = {.lex_state = 52, .external_lex_state = 15}, - [2092] = {.lex_state = 8, .external_lex_state = 13}, - [2093] = {.lex_state = 52, .external_lex_state = 12}, - [2094] = {.lex_state = 52, .external_lex_state = 15}, - [2095] = {.lex_state = 52, .external_lex_state = 14}, + [2070] = {.lex_state = 52, .external_lex_state = 14}, + [2071] = {.lex_state = 52, .external_lex_state = 12}, + [2072] = {.lex_state = 52, .external_lex_state = 14}, + [2073] = {.lex_state = 52, .external_lex_state = 9}, + [2074] = {.lex_state = 52, .external_lex_state = 14}, + [2075] = {.lex_state = 52, .external_lex_state = 14}, + [2076] = {.lex_state = 52, .external_lex_state = 14}, + [2077] = {.lex_state = 52, .external_lex_state = 14}, + [2078] = {.lex_state = 52, .external_lex_state = 12}, + [2079] = {.lex_state = 52, .external_lex_state = 14}, + [2080] = {.lex_state = 52, .external_lex_state = 14}, + [2081] = {.lex_state = 52, .external_lex_state = 14}, + [2082] = {.lex_state = 52, .external_lex_state = 14}, + [2083] = {.lex_state = 52, .external_lex_state = 12}, + [2084] = {.lex_state = 52, .external_lex_state = 14}, + [2085] = {.lex_state = 52, .external_lex_state = 14}, + [2086] = {.lex_state = 52, .external_lex_state = 14}, + [2087] = {.lex_state = 52, .external_lex_state = 14}, + [2088] = {.lex_state = 52, .external_lex_state = 14}, + [2089] = {.lex_state = 52, .external_lex_state = 12}, + [2090] = {.lex_state = 52, .external_lex_state = 14}, + [2091] = {.lex_state = 52, .external_lex_state = 14}, + [2092] = {.lex_state = 52, .external_lex_state = 14}, + [2093] = {.lex_state = 52, .external_lex_state = 14}, + [2094] = {.lex_state = 52, .external_lex_state = 12}, + [2095] = {.lex_state = 52, .external_lex_state = 12}, [2096] = {.lex_state = 52, .external_lex_state = 15}, - [2097] = {.lex_state = 8, .external_lex_state = 13}, - [2098] = {.lex_state = 8, .external_lex_state = 15}, - [2099] = {.lex_state = 52, .external_lex_state = 15}, - [2100] = {.lex_state = 8, .external_lex_state = 9}, - [2101] = {.lex_state = 8, .external_lex_state = 13}, - [2102] = {.lex_state = 52, .external_lex_state = 15}, - [2103] = {.lex_state = 52, .external_lex_state = 15}, - [2104] = {.lex_state = 8, .external_lex_state = 14}, - [2105] = {.lex_state = 52, .external_lex_state = 14}, - [2106] = {.lex_state = 52, .external_lex_state = 14}, + [2097] = {.lex_state = 52, .external_lex_state = 14}, + [2098] = {.lex_state = 52, .external_lex_state = 12}, + [2099] = {.lex_state = 52, .external_lex_state = 18}, + [2100] = {.lex_state = 52, .external_lex_state = 9}, + [2101] = {.lex_state = 52, .external_lex_state = 15}, + [2102] = {.lex_state = 52, .external_lex_state = 13}, + [2103] = {.lex_state = 52, .external_lex_state = 13}, + [2104] = {.lex_state = 52, .external_lex_state = 13}, + [2105] = {.lex_state = 52, .external_lex_state = 15}, + [2106] = {.lex_state = 52, .external_lex_state = 13}, [2107] = {.lex_state = 52, .external_lex_state = 15}, [2108] = {.lex_state = 52, .external_lex_state = 12}, - [2109] = {.lex_state = 8, .external_lex_state = 15}, - [2110] = {.lex_state = 52, .external_lex_state = 15}, - [2111] = {.lex_state = 52, .external_lex_state = 14}, - [2112] = {.lex_state = 52, .external_lex_state = 15}, + [2109] = {.lex_state = 52, .external_lex_state = 12}, + [2110] = {.lex_state = 52, .external_lex_state = 9}, + [2111] = {.lex_state = 52, .external_lex_state = 15}, + [2112] = {.lex_state = 52, .external_lex_state = 12}, [2113] = {.lex_state = 52, .external_lex_state = 15}, - [2114] = {.lex_state = 52, .external_lex_state = 9}, + [2114] = {.lex_state = 9, .external_lex_state = 14}, [2115] = {.lex_state = 52, .external_lex_state = 15}, - [2116] = {.lex_state = 52, .external_lex_state = 15}, - [2117] = {.lex_state = 3, .external_lex_state = 12}, - [2118] = {.lex_state = 52, .external_lex_state = 15}, + [2116] = {.lex_state = 52, .external_lex_state = 9}, + [2117] = {.lex_state = 52, .external_lex_state = 15}, + [2118] = {.lex_state = 52, .external_lex_state = 9}, [2119] = {.lex_state = 52, .external_lex_state = 15}, - [2120] = {.lex_state = 52, .external_lex_state = 15}, - [2121] = {.lex_state = 52, .external_lex_state = 14}, - [2122] = {.lex_state = 52, .external_lex_state = 12}, - [2123] = {.lex_state = 52, .external_lex_state = 15}, - [2124] = {.lex_state = 52, .external_lex_state = 14}, - [2125] = {.lex_state = 52, .external_lex_state = 12}, + [2120] = {.lex_state = 52, .external_lex_state = 14}, + [2121] = {.lex_state = 52, .external_lex_state = 13}, + [2122] = {.lex_state = 52, .external_lex_state = 13}, + [2123] = {.lex_state = 52, .external_lex_state = 13}, + [2124] = {.lex_state = 52, .external_lex_state = 13}, + [2125] = {.lex_state = 52, .external_lex_state = 13}, [2126] = {.lex_state = 52, .external_lex_state = 12}, [2127] = {.lex_state = 52, .external_lex_state = 13}, - [2128] = {.lex_state = 52, .external_lex_state = 15}, - [2129] = {.lex_state = 52, .external_lex_state = 12}, - [2130] = {.lex_state = 52, .external_lex_state = 12}, - [2131] = {.lex_state = 52, .external_lex_state = 18}, + [2128] = {.lex_state = 52, .external_lex_state = 12}, + [2129] = {.lex_state = 52, .external_lex_state = 15}, + [2130] = {.lex_state = 52, .external_lex_state = 18}, + [2131] = {.lex_state = 52, .external_lex_state = 12}, [2132] = {.lex_state = 52, .external_lex_state = 12}, - [2133] = {.lex_state = 52, .external_lex_state = 12}, - [2134] = {.lex_state = 52, .external_lex_state = 12}, + [2133] = {.lex_state = 52, .external_lex_state = 15}, + [2134] = {.lex_state = 52, .external_lex_state = 13}, [2135] = {.lex_state = 52, .external_lex_state = 13}, - [2136] = {.lex_state = 52, .external_lex_state = 12}, + [2136] = {.lex_state = 52, .external_lex_state = 13}, [2137] = {.lex_state = 52, .external_lex_state = 13}, - [2138] = {.lex_state = 52, .external_lex_state = 12}, - [2139] = {.lex_state = 52, .external_lex_state = 12}, - [2140] = {.lex_state = 52, .external_lex_state = 12}, - [2141] = {.lex_state = 52, .external_lex_state = 12}, - [2142] = {.lex_state = 52, .external_lex_state = 12}, - [2143] = {.lex_state = 52, .external_lex_state = 12}, - [2144] = {.lex_state = 52, .external_lex_state = 12}, - [2145] = {.lex_state = 52, .external_lex_state = 12}, - [2146] = {.lex_state = 52, .external_lex_state = 12}, - [2147] = {.lex_state = 52, .external_lex_state = 12}, - [2148] = {.lex_state = 52, .external_lex_state = 12}, - [2149] = {.lex_state = 52, .external_lex_state = 12}, - [2150] = {.lex_state = 52, .external_lex_state = 12}, + [2138] = {.lex_state = 52, .external_lex_state = 13}, + [2139] = {.lex_state = 52, .external_lex_state = 13}, + [2140] = {.lex_state = 52, .external_lex_state = 13}, + [2141] = {.lex_state = 9, .external_lex_state = 14}, + [2142] = {.lex_state = 52, .external_lex_state = 15}, + [2143] = {.lex_state = 52, .external_lex_state = 13}, + [2144] = {.lex_state = 52, .external_lex_state = 13}, + [2145] = {.lex_state = 52, .external_lex_state = 13}, + [2146] = {.lex_state = 52, .external_lex_state = 13}, + [2147] = {.lex_state = 52, .external_lex_state = 13}, + [2148] = {.lex_state = 52, .external_lex_state = 13}, + [2149] = {.lex_state = 52, .external_lex_state = 13}, + [2150] = {.lex_state = 52, .external_lex_state = 13}, [2151] = {.lex_state = 52, .external_lex_state = 12}, - [2152] = {.lex_state = 52, .external_lex_state = 13}, - [2153] = {.lex_state = 52, .external_lex_state = 14}, - [2154] = {.lex_state = 52, .external_lex_state = 13}, + [2152] = {.lex_state = 52, .external_lex_state = 12}, + [2153] = {.lex_state = 52, .external_lex_state = 9}, + [2154] = {.lex_state = 52, .external_lex_state = 18}, [2155] = {.lex_state = 52, .external_lex_state = 9}, - [2156] = {.lex_state = 52, .external_lex_state = 9}, - [2157] = {.lex_state = 52, .external_lex_state = 9}, - [2158] = {.lex_state = 52, .external_lex_state = 14}, + [2156] = {.lex_state = 52, .external_lex_state = 14}, + [2157] = {.lex_state = 52, .external_lex_state = 15}, + [2158] = {.lex_state = 52, .external_lex_state = 13}, [2159] = {.lex_state = 52, .external_lex_state = 9}, - [2160] = {.lex_state = 52, .external_lex_state = 14}, - [2161] = {.lex_state = 52, .external_lex_state = 15}, - [2162] = {.lex_state = 52, .external_lex_state = 15}, - [2163] = {.lex_state = 52, .external_lex_state = 14}, + [2160] = {.lex_state = 52, .external_lex_state = 9}, + [2161] = {.lex_state = 9, .external_lex_state = 14}, + [2162] = {.lex_state = 52, .external_lex_state = 9}, + [2163] = {.lex_state = 52, .external_lex_state = 12}, [2164] = {.lex_state = 52, .external_lex_state = 15}, - [2165] = {.lex_state = 52, .external_lex_state = 14}, - [2166] = {.lex_state = 52, .external_lex_state = 13}, - [2167] = {.lex_state = 52, .external_lex_state = 13}, - [2168] = {.lex_state = 52, .external_lex_state = 13}, - [2169] = {.lex_state = 52, .external_lex_state = 13}, - [2170] = {.lex_state = 52, .external_lex_state = 13}, - [2171] = {.lex_state = 52, .external_lex_state = 14}, - [2172] = {.lex_state = 52, .external_lex_state = 13}, - [2173] = {.lex_state = 7, .external_lex_state = 15}, + [2165] = {.lex_state = 52, .external_lex_state = 15}, + [2166] = {.lex_state = 52, .external_lex_state = 14}, + [2167] = {.lex_state = 52, .external_lex_state = 14}, + [2168] = {.lex_state = 52, .external_lex_state = 12}, + [2169] = {.lex_state = 52, .external_lex_state = 12}, + [2170] = {.lex_state = 52, .external_lex_state = 15}, + [2171] = {.lex_state = 9, .external_lex_state = 14}, + [2172] = {.lex_state = 52, .external_lex_state = 14}, + [2173] = {.lex_state = 52, .external_lex_state = 15}, [2174] = {.lex_state = 52, .external_lex_state = 14}, [2175] = {.lex_state = 52, .external_lex_state = 9}, - [2176] = {.lex_state = 52, .external_lex_state = 14}, - [2177] = {.lex_state = 52, .external_lex_state = 13}, - [2178] = {.lex_state = 52, .external_lex_state = 13}, - [2179] = {.lex_state = 52, .external_lex_state = 13}, - [2180] = {.lex_state = 52, .external_lex_state = 13}, - [2181] = {.lex_state = 52, .external_lex_state = 13}, - [2182] = {.lex_state = 52, .external_lex_state = 13}, - [2183] = {.lex_state = 52, .external_lex_state = 13}, + [2176] = {.lex_state = 52, .external_lex_state = 15}, + [2177] = {.lex_state = 52, .external_lex_state = 12}, + [2178] = {.lex_state = 52, .external_lex_state = 9}, + [2179] = {.lex_state = 8, .external_lex_state = 14}, + [2180] = {.lex_state = 52, .external_lex_state = 15}, + [2181] = {.lex_state = 52, .external_lex_state = 9}, + [2182] = {.lex_state = 52, .external_lex_state = 15}, + [2183] = {.lex_state = 52, .external_lex_state = 9}, [2184] = {.lex_state = 52, .external_lex_state = 12}, - [2185] = {.lex_state = 52, .external_lex_state = 13}, - [2186] = {.lex_state = 52, .external_lex_state = 13}, - [2187] = {.lex_state = 52, .external_lex_state = 13}, - [2188] = {.lex_state = 52, .external_lex_state = 13}, - [2189] = {.lex_state = 52, .external_lex_state = 13}, + [2185] = {.lex_state = 52, .external_lex_state = 14}, + [2186] = {.lex_state = 52, .external_lex_state = 15}, + [2187] = {.lex_state = 52, .external_lex_state = 14}, + [2188] = {.lex_state = 52, .external_lex_state = 12}, + [2189] = {.lex_state = 52, .external_lex_state = 15}, [2190] = {.lex_state = 52, .external_lex_state = 14}, - [2191] = {.lex_state = 52, .external_lex_state = 13}, - [2192] = {.lex_state = 52, .external_lex_state = 13}, - [2193] = {.lex_state = 52, .external_lex_state = 13}, - [2194] = {.lex_state = 52, .external_lex_state = 14}, - [2195] = {.lex_state = 52, .external_lex_state = 15}, - [2196] = {.lex_state = 52, .external_lex_state = 12}, + [2191] = {.lex_state = 52, .external_lex_state = 15}, + [2192] = {.lex_state = 52, .external_lex_state = 15}, + [2193] = {.lex_state = 52, .external_lex_state = 15}, + [2194] = {.lex_state = 52, .external_lex_state = 15}, + [2195] = {.lex_state = 9, .external_lex_state = 14}, + [2196] = {.lex_state = 52, .external_lex_state = 15}, [2197] = {.lex_state = 52, .external_lex_state = 9}, [2198] = {.lex_state = 52, .external_lex_state = 14}, - [2199] = {.lex_state = 52, .external_lex_state = 9}, - [2200] = {.lex_state = 52, .external_lex_state = 9}, - [2201] = {.lex_state = 52, .external_lex_state = 15}, - [2202] = {.lex_state = 52, .external_lex_state = 14}, - [2203] = {.lex_state = 52, .external_lex_state = 13}, - [2204] = {.lex_state = 52, .external_lex_state = 14}, - [2205] = {.lex_state = 8, .external_lex_state = 15}, + [2199] = {.lex_state = 52, .external_lex_state = 12}, + [2200] = {.lex_state = 52, .external_lex_state = 15}, + [2201] = {.lex_state = 52, .external_lex_state = 12}, + [2202] = {.lex_state = 52, .external_lex_state = 12}, + [2203] = {.lex_state = 52, .external_lex_state = 12}, + [2204] = {.lex_state = 9, .external_lex_state = 14}, + [2205] = {.lex_state = 52, .external_lex_state = 15}, [2206] = {.lex_state = 52, .external_lex_state = 14}, - [2207] = {.lex_state = 52, .external_lex_state = 18}, - [2208] = {.lex_state = 52, .external_lex_state = 14}, - [2209] = {.lex_state = 52, .external_lex_state = 9}, - [2210] = {.lex_state = 52, .external_lex_state = 14}, - [2211] = {.lex_state = 52, .external_lex_state = 14}, - [2212] = {.lex_state = 52, .external_lex_state = 14}, - [2213] = {.lex_state = 52, .external_lex_state = 14}, - [2214] = {.lex_state = 52, .external_lex_state = 14}, - [2215] = {.lex_state = 52, .external_lex_state = 18}, + [2207] = {.lex_state = 52, .external_lex_state = 12}, + [2208] = {.lex_state = 52, .external_lex_state = 13}, + [2209] = {.lex_state = 52, .external_lex_state = 12}, + [2210] = {.lex_state = 52, .external_lex_state = 15}, + [2211] = {.lex_state = 52, .external_lex_state = 12}, + [2212] = {.lex_state = 52, .external_lex_state = 15}, + [2213] = {.lex_state = 52, .external_lex_state = 12}, + [2214] = {.lex_state = 52, .external_lex_state = 15}, + [2215] = {.lex_state = 52, .external_lex_state = 15}, [2216] = {.lex_state = 52, .external_lex_state = 9}, - [2217] = {.lex_state = 52, .external_lex_state = 9}, - [2218] = {.lex_state = 52, .external_lex_state = 9}, - [2219] = {.lex_state = 52, .external_lex_state = 14}, - [2220] = {.lex_state = 52, .external_lex_state = 14}, - [2221] = {.lex_state = 52, .external_lex_state = 14}, - [2222] = {.lex_state = 52, .external_lex_state = 14}, - [2223] = {.lex_state = 52, .external_lex_state = 14}, - [2224] = {.lex_state = 52, .external_lex_state = 12}, + [2217] = {.lex_state = 52, .external_lex_state = 15}, + [2218] = {.lex_state = 52, .external_lex_state = 13}, + [2219] = {.lex_state = 52, .external_lex_state = 12}, + [2220] = {.lex_state = 9, .external_lex_state = 14}, + [2221] = {.lex_state = 52, .external_lex_state = 18}, + [2222] = {.lex_state = 52, .external_lex_state = 15}, + [2223] = {.lex_state = 52, .external_lex_state = 18}, + [2224] = {.lex_state = 9, .external_lex_state = 14}, [2225] = {.lex_state = 52, .external_lex_state = 15}, - [2226] = {.lex_state = 52, .external_lex_state = 14}, - [2227] = {.lex_state = 52, .external_lex_state = 14}, - [2228] = {.lex_state = 52, .external_lex_state = 14}, + [2226] = {.lex_state = 52, .external_lex_state = 9}, + [2227] = {.lex_state = 52, .external_lex_state = 15}, + [2228] = {.lex_state = 52, .external_lex_state = 15}, [2229] = {.lex_state = 52, .external_lex_state = 9}, - [2230] = {.lex_state = 52, .external_lex_state = 9}, - [2231] = {.lex_state = 52, .external_lex_state = 15}, - [2232] = {.lex_state = 52, .external_lex_state = 15}, - [2233] = {.lex_state = 52, .external_lex_state = 14}, - [2234] = {.lex_state = 52, .external_lex_state = 18}, - [2235] = {.lex_state = 52, .external_lex_state = 14}, + [2230] = {.lex_state = 52, .external_lex_state = 12}, + [2231] = {.lex_state = 8, .external_lex_state = 14}, + [2232] = {.lex_state = 52, .external_lex_state = 14}, + [2233] = {.lex_state = 52, .external_lex_state = 13}, + [2234] = {.lex_state = 52, .external_lex_state = 15}, + [2235] = {.lex_state = 52, .external_lex_state = 13}, [2236] = {.lex_state = 52, .external_lex_state = 14}, - [2237] = {.lex_state = 52, .external_lex_state = 14}, + [2237] = {.lex_state = 52, .external_lex_state = 12}, [2238] = {.lex_state = 52, .external_lex_state = 9}, - [2239] = {.lex_state = 52, .external_lex_state = 9}, - [2240] = {.lex_state = 52, .external_lex_state = 14}, - [2241] = {.lex_state = 52, .external_lex_state = 14}, - [2242] = {.lex_state = 52, .external_lex_state = 14}, - [2243] = {.lex_state = 52, .external_lex_state = 14}, - [2244] = {.lex_state = 52, .external_lex_state = 13}, - [2245] = {.lex_state = 52, .external_lex_state = 9}, + [2239] = {.lex_state = 52, .external_lex_state = 15}, + [2240] = {.lex_state = 52, .external_lex_state = 15}, + [2241] = {.lex_state = 52, .external_lex_state = 15}, + [2242] = {.lex_state = 52, .external_lex_state = 12}, + [2243] = {.lex_state = 52, .external_lex_state = 15}, + [2244] = {.lex_state = 52, .external_lex_state = 15}, + [2245] = {.lex_state = 52, .external_lex_state = 15}, [2246] = {.lex_state = 52, .external_lex_state = 15}, - [2247] = {.lex_state = 52, .external_lex_state = 15}, - [2248] = {.lex_state = 8, .external_lex_state = 15}, - [2249] = {.lex_state = 52, .external_lex_state = 12}, + [2247] = {.lex_state = 52, .external_lex_state = 13}, + [2248] = {.lex_state = 52, .external_lex_state = 14}, + [2249] = {.lex_state = 52, .external_lex_state = 15}, [2250] = {.lex_state = 52, .external_lex_state = 15}, - [2251] = {.lex_state = 52, .external_lex_state = 18}, - [2252] = {.lex_state = 7, .external_lex_state = 15}, - [2253] = {.lex_state = 8, .external_lex_state = 15}, - [2254] = {.lex_state = 52, .external_lex_state = 12}, - [2255] = {.lex_state = 52, .external_lex_state = 14}, - [2256] = {.lex_state = 52, .external_lex_state = 15}, - [2257] = {.lex_state = 52, .external_lex_state = 9}, - [2258] = {.lex_state = 52, .external_lex_state = 14}, - [2259] = {.lex_state = 52, .external_lex_state = 14}, - [2260] = {.lex_state = 52, .external_lex_state = 14}, + [2251] = {.lex_state = 52, .external_lex_state = 9}, + [2252] = {.lex_state = 52, .external_lex_state = 13}, + [2253] = {.lex_state = 52, .external_lex_state = 13}, + [2254] = {.lex_state = 52, .external_lex_state = 15}, + [2255] = {.lex_state = 52, .external_lex_state = 15}, + [2256] = {.lex_state = 52, .external_lex_state = 13}, + [2257] = {.lex_state = 52, .external_lex_state = 15}, + [2258] = {.lex_state = 52, .external_lex_state = 15}, + [2259] = {.lex_state = 3, .external_lex_state = 12}, + [2260] = {.lex_state = 52, .external_lex_state = 12}, [2261] = {.lex_state = 52, .external_lex_state = 12}, - [2262] = {.lex_state = 52, .external_lex_state = 15}, - [2263] = {.lex_state = 52, .external_lex_state = 12}, - [2264] = {.lex_state = 52, .external_lex_state = 14}, - [2265] = {.lex_state = 52, .external_lex_state = 14}, + [2262] = {.lex_state = 52, .external_lex_state = 12}, + [2263] = {.lex_state = 52, .external_lex_state = 14}, + [2264] = {.lex_state = 3, .external_lex_state = 12}, + [2265] = {.lex_state = 52, .external_lex_state = 15}, [2266] = {.lex_state = 52, .external_lex_state = 13}, - [2267] = {.lex_state = 52, .external_lex_state = 13}, + [2267] = {.lex_state = 52, .external_lex_state = 12}, [2268] = {.lex_state = 52, .external_lex_state = 15}, - [2269] = {.lex_state = 52, .external_lex_state = 14}, - [2270] = {.lex_state = 8, .external_lex_state = 15}, - [2271] = {.lex_state = 52, .external_lex_state = 14}, - [2272] = {.lex_state = 52, .external_lex_state = 12}, + [2269] = {.lex_state = 52, .external_lex_state = 12}, + [2270] = {.lex_state = 52, .external_lex_state = 14}, + [2271] = {.lex_state = 52, .external_lex_state = 12}, + [2272] = {.lex_state = 52, .external_lex_state = 9}, [2273] = {.lex_state = 52, .external_lex_state = 14}, - [2274] = {.lex_state = 52, .external_lex_state = 14}, - [2275] = {.lex_state = 52, .external_lex_state = 14}, - [2276] = {.lex_state = 52, .external_lex_state = 13}, - [2277] = {.lex_state = 52, .external_lex_state = 13}, - [2278] = {.lex_state = 52, .external_lex_state = 12}, - [2279] = {.lex_state = 52, .external_lex_state = 15}, - [2280] = {.lex_state = 52, .external_lex_state = 13}, - [2281] = {.lex_state = 52, .external_lex_state = 12}, - [2282] = {.lex_state = 52, .external_lex_state = 12}, + [2274] = {.lex_state = 52, .external_lex_state = 15}, + [2275] = {.lex_state = 9, .external_lex_state = 14}, + [2276] = {.lex_state = 52, .external_lex_state = 12}, + [2277] = {.lex_state = 52, .external_lex_state = 14}, + [2278] = {.lex_state = 52, .external_lex_state = 13}, + [2279] = {.lex_state = 52, .external_lex_state = 13}, + [2280] = {.lex_state = 9, .external_lex_state = 14}, + [2281] = {.lex_state = 52, .external_lex_state = 15}, + [2282] = {.lex_state = 52, .external_lex_state = 9}, [2283] = {.lex_state = 52, .external_lex_state = 13}, - [2284] = {.lex_state = 52, .external_lex_state = 13}, - [2285] = {.lex_state = 52, .external_lex_state = 14}, - [2286] = {.lex_state = 52, .external_lex_state = 12}, - [2287] = {.lex_state = 52, .external_lex_state = 12}, - [2288] = {.lex_state = 52, .external_lex_state = 14}, - [2289] = {.lex_state = 52, .external_lex_state = 14}, - [2290] = {.lex_state = 52, .external_lex_state = 13}, - [2291] = {.lex_state = 52, .external_lex_state = 12}, + [2284] = {.lex_state = 52, .external_lex_state = 15}, + [2285] = {.lex_state = 52, .external_lex_state = 15}, + [2286] = {.lex_state = 52, .external_lex_state = 15}, + [2287] = {.lex_state = 52, .external_lex_state = 15}, + [2288] = {.lex_state = 52, .external_lex_state = 12}, + [2289] = {.lex_state = 52, .external_lex_state = 9}, + [2290] = {.lex_state = 52, .external_lex_state = 19}, + [2291] = {.lex_state = 52, .external_lex_state = 14}, [2292] = {.lex_state = 52, .external_lex_state = 12}, [2293] = {.lex_state = 52, .external_lex_state = 15}, - [2294] = {.lex_state = 52, .external_lex_state = 14}, - [2295] = {.lex_state = 52, .external_lex_state = 9}, - [2296] = {.lex_state = 52, .external_lex_state = 14}, + [2294] = {.lex_state = 52, .external_lex_state = 15}, + [2295] = {.lex_state = 52, .external_lex_state = 13}, + [2296] = {.lex_state = 52, .external_lex_state = 13}, [2297] = {.lex_state = 52, .external_lex_state = 15}, - [2298] = {.lex_state = 52, .external_lex_state = 15}, - [2299] = {.lex_state = 52, .external_lex_state = 15}, - [2300] = {.lex_state = 52, .external_lex_state = 9}, - [2301] = {.lex_state = 52, .external_lex_state = 12}, - [2302] = {.lex_state = 52, .external_lex_state = 12}, - [2303] = {.lex_state = 52, .external_lex_state = 14}, - [2304] = {.lex_state = 52, .external_lex_state = 14}, - [2305] = {.lex_state = 52, .external_lex_state = 9}, - [2306] = {.lex_state = 52, .external_lex_state = 12}, - [2307] = {.lex_state = 52, .external_lex_state = 9}, - [2308] = {.lex_state = 3, .external_lex_state = 12}, - [2309] = {.lex_state = 52, .external_lex_state = 14}, + [2298] = {.lex_state = 3, .external_lex_state = 12}, + [2299] = {.lex_state = 52, .external_lex_state = 14}, + [2300] = {.lex_state = 52, .external_lex_state = 15}, + [2301] = {.lex_state = 3, .external_lex_state = 12}, + [2302] = {.lex_state = 52, .external_lex_state = 15}, + [2303] = {.lex_state = 52, .external_lex_state = 13}, + [2304] = {.lex_state = 52, .external_lex_state = 13}, + [2305] = {.lex_state = 52, .external_lex_state = 12}, + [2306] = {.lex_state = 52, .external_lex_state = 15}, + [2307] = {.lex_state = 52, .external_lex_state = 13}, + [2308] = {.lex_state = 52, .external_lex_state = 13}, + [2309] = {.lex_state = 52, .external_lex_state = 12}, [2310] = {.lex_state = 52, .external_lex_state = 12}, - [2311] = {.lex_state = 52, .external_lex_state = 19}, + [2311] = {.lex_state = 52, .external_lex_state = 14}, [2312] = {.lex_state = 52, .external_lex_state = 14}, - [2313] = {.lex_state = 52, .external_lex_state = 14}, + [2313] = {.lex_state = 52, .external_lex_state = 15}, [2314] = {.lex_state = 52, .external_lex_state = 13}, - [2315] = {.lex_state = 52, .external_lex_state = 14}, - [2316] = {.lex_state = 52, .external_lex_state = 13}, - [2317] = {.lex_state = 52, .external_lex_state = 14}, - [2318] = {.lex_state = 52, .external_lex_state = 14}, - [2319] = {.lex_state = 52, .external_lex_state = 14}, - [2320] = {.lex_state = 8, .external_lex_state = 15}, - [2321] = {.lex_state = 52, .external_lex_state = 13}, - [2322] = {.lex_state = 52, .external_lex_state = 13}, - [2323] = {.lex_state = 52, .external_lex_state = 15}, - [2324] = {.lex_state = 52, .external_lex_state = 13}, - [2325] = {.lex_state = 52, .external_lex_state = 9}, - [2326] = {.lex_state = 52, .external_lex_state = 14}, - [2327] = {.lex_state = 9, .external_lex_state = 17}, - [2328] = {.lex_state = 52, .external_lex_state = 12}, - [2329] = {.lex_state = 52, .external_lex_state = 19}, - [2330] = {.lex_state = 52, .external_lex_state = 15}, - [2331] = {.lex_state = 52, .external_lex_state = 14}, - [2332] = {.lex_state = 52, .external_lex_state = 19}, - [2333] = {.lex_state = 52, .external_lex_state = 13}, - [2334] = {.lex_state = 52, .external_lex_state = 12}, + [2315] = {.lex_state = 52, .external_lex_state = 12}, + [2316] = {.lex_state = 52, .external_lex_state = 12}, + [2317] = {.lex_state = 52, .external_lex_state = 12}, + [2318] = {.lex_state = 52, .external_lex_state = 15}, + [2319] = {.lex_state = 52, .external_lex_state = 15}, + [2320] = {.lex_state = 52, .external_lex_state = 13}, + [2321] = {.lex_state = 52, .external_lex_state = 15}, + [2322] = {.lex_state = 52, .external_lex_state = 15}, + [2323] = {.lex_state = 52, .external_lex_state = 12}, + [2324] = {.lex_state = 52, .external_lex_state = 19}, + [2325] = {.lex_state = 3, .external_lex_state = 12}, + [2326] = {.lex_state = 52, .external_lex_state = 9}, + [2327] = {.lex_state = 3, .external_lex_state = 12}, + [2328] = {.lex_state = 52, .external_lex_state = 14}, + [2329] = {.lex_state = 52, .external_lex_state = 15}, + [2330] = {.lex_state = 52, .external_lex_state = 12}, + [2331] = {.lex_state = 52, .external_lex_state = 12}, + [2332] = {.lex_state = 52, .external_lex_state = 9}, + [2333] = {.lex_state = 3, .external_lex_state = 12}, + [2334] = {.lex_state = 10, .external_lex_state = 17}, [2335] = {.lex_state = 52, .external_lex_state = 12}, - [2336] = {.lex_state = 3, .external_lex_state = 12}, - [2337] = {.lex_state = 3, .external_lex_state = 12}, - [2338] = {.lex_state = 52, .external_lex_state = 12}, - [2339] = {.lex_state = 9, .external_lex_state = 17}, - [2340] = {.lex_state = 52, .external_lex_state = 14}, - [2341] = {.lex_state = 52, .external_lex_state = 14}, - [2342] = {.lex_state = 3, .external_lex_state = 12}, - [2343] = {.lex_state = 52, .external_lex_state = 15}, - [2344] = {.lex_state = 52, .external_lex_state = 9}, + [2336] = {.lex_state = 10, .external_lex_state = 17}, + [2337] = {.lex_state = 52, .external_lex_state = 14}, + [2338] = {.lex_state = 52, .external_lex_state = 15}, + [2339] = {.lex_state = 52, .external_lex_state = 15}, + [2340] = {.lex_state = 52, .external_lex_state = 15}, + [2341] = {.lex_state = 52, .external_lex_state = 13}, + [2342] = {.lex_state = 52, .external_lex_state = 12}, + [2343] = {.lex_state = 9, .external_lex_state = 14}, + [2344] = {.lex_state = 52, .external_lex_state = 15}, [2345] = {.lex_state = 52, .external_lex_state = 15}, - [2346] = {.lex_state = 52, .external_lex_state = 9}, - [2347] = {.lex_state = 52, .external_lex_state = 12}, - [2348] = {.lex_state = 52, .external_lex_state = 14}, - [2349] = {.lex_state = 52, .external_lex_state = 12}, - [2350] = {.lex_state = 52, .external_lex_state = 13}, - [2351] = {.lex_state = 52, .external_lex_state = 13}, - [2352] = {.lex_state = 52, .external_lex_state = 9}, + [2346] = {.lex_state = 52, .external_lex_state = 15}, + [2347] = {.lex_state = 52, .external_lex_state = 15}, + [2348] = {.lex_state = 52, .external_lex_state = 13}, + [2349] = {.lex_state = 52, .external_lex_state = 13}, + [2350] = {.lex_state = 52, .external_lex_state = 15}, + [2351] = {.lex_state = 52, .external_lex_state = 14}, + [2352] = {.lex_state = 52, .external_lex_state = 13}, [2353] = {.lex_state = 52, .external_lex_state = 13}, [2354] = {.lex_state = 52, .external_lex_state = 12}, - [2355] = {.lex_state = 52, .external_lex_state = 14}, - [2356] = {.lex_state = 8, .external_lex_state = 15}, - [2357] = {.lex_state = 52, .external_lex_state = 14}, - [2358] = {.lex_state = 52, .external_lex_state = 14}, - [2359] = {.lex_state = 52, .external_lex_state = 13}, - [2360] = {.lex_state = 52, .external_lex_state = 12}, - [2361] = {.lex_state = 52, .external_lex_state = 12}, - [2362] = {.lex_state = 52, .external_lex_state = 14}, - [2363] = {.lex_state = 52, .external_lex_state = 19}, + [2355] = {.lex_state = 52, .external_lex_state = 13}, + [2356] = {.lex_state = 52, .external_lex_state = 13}, + [2357] = {.lex_state = 52, .external_lex_state = 13}, + [2358] = {.lex_state = 52, .external_lex_state = 15}, + [2359] = {.lex_state = 52, .external_lex_state = 9}, + [2360] = {.lex_state = 52, .external_lex_state = 13}, + [2361] = {.lex_state = 52, .external_lex_state = 15}, + [2362] = {.lex_state = 52, .external_lex_state = 15}, + [2363] = {.lex_state = 52, .external_lex_state = 15}, [2364] = {.lex_state = 52, .external_lex_state = 14}, - [2365] = {.lex_state = 52, .external_lex_state = 13}, - [2366] = {.lex_state = 52, .external_lex_state = 13}, - [2367] = {.lex_state = 52, .external_lex_state = 9}, - [2368] = {.lex_state = 52, .external_lex_state = 14}, - [2369] = {.lex_state = 52, .external_lex_state = 15}, - [2370] = {.lex_state = 52, .external_lex_state = 14}, - [2371] = {.lex_state = 52, .external_lex_state = 14}, - [2372] = {.lex_state = 52, .external_lex_state = 14}, - [2373] = {.lex_state = 52, .external_lex_state = 14}, - [2374] = {.lex_state = 52, .external_lex_state = 9}, + [2365] = {.lex_state = 52, .external_lex_state = 14}, + [2366] = {.lex_state = 52, .external_lex_state = 12}, + [2367] = {.lex_state = 52, .external_lex_state = 12}, + [2368] = {.lex_state = 52, .external_lex_state = 9}, + [2369] = {.lex_state = 52, .external_lex_state = 14}, + [2370] = {.lex_state = 52, .external_lex_state = 12}, + [2371] = {.lex_state = 52, .external_lex_state = 13}, + [2372] = {.lex_state = 52, .external_lex_state = 15}, + [2373] = {.lex_state = 52, .external_lex_state = 15}, + [2374] = {.lex_state = 52, .external_lex_state = 15}, [2375] = {.lex_state = 52, .external_lex_state = 13}, [2376] = {.lex_state = 52, .external_lex_state = 14}, - [2377] = {.lex_state = 52, .external_lex_state = 13}, - [2378] = {.lex_state = 52, .external_lex_state = 13}, - [2379] = {.lex_state = 52, .external_lex_state = 12}, - [2380] = {.lex_state = 52, .external_lex_state = 13}, - [2381] = {.lex_state = 52, .external_lex_state = 9}, - [2382] = {.lex_state = 52, .external_lex_state = 14}, - [2383] = {.lex_state = 52, .external_lex_state = 14}, - [2384] = {.lex_state = 52, .external_lex_state = 12}, - [2385] = {.lex_state = 52, .external_lex_state = 14}, - [2386] = {.lex_state = 52, .external_lex_state = 14}, - [2387] = {.lex_state = 52, .external_lex_state = 15}, - [2388] = {.lex_state = 52, .external_lex_state = 13}, - [2389] = {.lex_state = 52, .external_lex_state = 14}, - [2390] = {.lex_state = 52, .external_lex_state = 13}, - [2391] = {.lex_state = 52, .external_lex_state = 14}, - [2392] = {.lex_state = 3, .external_lex_state = 12}, - [2393] = {.lex_state = 52, .external_lex_state = 14}, - [2394] = {.lex_state = 52, .external_lex_state = 13}, - [2395] = {.lex_state = 52, .external_lex_state = 13}, - [2396] = {.lex_state = 52, .external_lex_state = 14}, - [2397] = {.lex_state = 8, .external_lex_state = 15}, - [2398] = {.lex_state = 3, .external_lex_state = 12}, - [2399] = {.lex_state = 3, .external_lex_state = 12}, + [2377] = {.lex_state = 52, .external_lex_state = 19}, + [2378] = {.lex_state = 52, .external_lex_state = 15}, + [2379] = {.lex_state = 52, .external_lex_state = 15}, + [2380] = {.lex_state = 52, .external_lex_state = 15}, + [2381] = {.lex_state = 52, .external_lex_state = 13}, + [2382] = {.lex_state = 52, .external_lex_state = 13}, + [2383] = {.lex_state = 52, .external_lex_state = 9}, + [2384] = {.lex_state = 10, .external_lex_state = 17}, + [2385] = {.lex_state = 52, .external_lex_state = 15}, + [2386] = {.lex_state = 52, .external_lex_state = 13}, + [2387] = {.lex_state = 52, .external_lex_state = 14}, + [2388] = {.lex_state = 52, .external_lex_state = 9}, + [2389] = {.lex_state = 52, .external_lex_state = 9}, + [2390] = {.lex_state = 52, .external_lex_state = 14}, + [2391] = {.lex_state = 52, .external_lex_state = 15}, + [2392] = {.lex_state = 52, .external_lex_state = 12}, + [2393] = {.lex_state = 10, .external_lex_state = 17}, + [2394] = {.lex_state = 52, .external_lex_state = 9}, + [2395] = {.lex_state = 52, .external_lex_state = 12}, + [2396] = {.lex_state = 52, .external_lex_state = 9}, + [2397] = {.lex_state = 52, .external_lex_state = 12}, + [2398] = {.lex_state = 52, .external_lex_state = 15}, + [2399] = {.lex_state = 52, .external_lex_state = 15}, [2400] = {.lex_state = 52, .external_lex_state = 15}, - [2401] = {.lex_state = 52, .external_lex_state = 14}, - [2402] = {.lex_state = 9, .external_lex_state = 17}, - [2403] = {.lex_state = 52, .external_lex_state = 9}, - [2404] = {.lex_state = 52, .external_lex_state = 14}, - [2405] = {.lex_state = 52, .external_lex_state = 13}, - [2406] = {.lex_state = 52, .external_lex_state = 12}, - [2407] = {.lex_state = 52, .external_lex_state = 13}, - [2408] = {.lex_state = 52, .external_lex_state = 9}, - [2409] = {.lex_state = 52, .external_lex_state = 12}, - [2410] = {.lex_state = 52, .external_lex_state = 14}, + [2401] = {.lex_state = 52, .external_lex_state = 13}, + [2402] = {.lex_state = 52, .external_lex_state = 15}, + [2403] = {.lex_state = 52, .external_lex_state = 19}, + [2404] = {.lex_state = 52, .external_lex_state = 12}, + [2405] = {.lex_state = 52, .external_lex_state = 15}, + [2406] = {.lex_state = 52, .external_lex_state = 15}, + [2407] = {.lex_state = 10, .external_lex_state = 17}, + [2408] = {.lex_state = 52, .external_lex_state = 13}, + [2409] = {.lex_state = 52, .external_lex_state = 13}, + [2410] = {.lex_state = 52, .external_lex_state = 19}, [2411] = {.lex_state = 52, .external_lex_state = 12}, - [2412] = {.lex_state = 52, .external_lex_state = 14}, - [2413] = {.lex_state = 52, .external_lex_state = 14}, - [2414] = {.lex_state = 52, .external_lex_state = 13}, + [2412] = {.lex_state = 52, .external_lex_state = 15}, + [2413] = {.lex_state = 52, .external_lex_state = 12}, + [2414] = {.lex_state = 52, .external_lex_state = 9}, [2415] = {.lex_state = 52, .external_lex_state = 15}, - [2416] = {.lex_state = 52, .external_lex_state = 14}, - [2417] = {.lex_state = 52, .external_lex_state = 14}, - [2418] = {.lex_state = 52, .external_lex_state = 14}, - [2419] = {.lex_state = 52, .external_lex_state = 14}, - [2420] = {.lex_state = 52, .external_lex_state = 13}, - [2421] = {.lex_state = 52, .external_lex_state = 13}, - [2422] = {.lex_state = 52, .external_lex_state = 14}, + [2416] = {.lex_state = 52, .external_lex_state = 15}, + [2417] = {.lex_state = 52, .external_lex_state = 9}, + [2418] = {.lex_state = 52, .external_lex_state = 15}, + [2419] = {.lex_state = 52, .external_lex_state = 12}, + [2420] = {.lex_state = 52, .external_lex_state = 15}, + [2421] = {.lex_state = 52, .external_lex_state = 15}, + [2422] = {.lex_state = 52, .external_lex_state = 9}, [2423] = {.lex_state = 52, .external_lex_state = 12}, - [2424] = {.lex_state = 52, .external_lex_state = 14}, - [2425] = {.lex_state = 52, .external_lex_state = 12}, - [2426] = {.lex_state = 52, .external_lex_state = 14}, - [2427] = {.lex_state = 9, .external_lex_state = 17}, + [2424] = {.lex_state = 52, .external_lex_state = 12}, + [2425] = {.lex_state = 52, .external_lex_state = 9}, + [2426] = {.lex_state = 52, .external_lex_state = 15}, + [2427] = {.lex_state = 52, .external_lex_state = 15}, [2428] = {.lex_state = 52, .external_lex_state = 14}, - [2429] = {.lex_state = 52, .external_lex_state = 9}, + [2429] = {.lex_state = 52, .external_lex_state = 13}, [2430] = {.lex_state = 52, .external_lex_state = 14}, - [2431] = {.lex_state = 52, .external_lex_state = 9}, - [2432] = {.lex_state = 52, .external_lex_state = 9}, - [2433] = {.lex_state = 52, .external_lex_state = 12}, - [2434] = {.lex_state = 52, .external_lex_state = 9}, - [2435] = {.lex_state = 52, .external_lex_state = 12}, - [2436] = {.lex_state = 52, .external_lex_state = 9}, - [2437] = {.lex_state = 52, .external_lex_state = 14}, - [2438] = {.lex_state = 52, .external_lex_state = 14}, + [2431] = {.lex_state = 52, .external_lex_state = 15}, + [2432] = {.lex_state = 52, .external_lex_state = 15}, + [2433] = {.lex_state = 52, .external_lex_state = 13}, + [2434] = {.lex_state = 52, .external_lex_state = 13}, + [2435] = {.lex_state = 52, .external_lex_state = 13}, + [2436] = {.lex_state = 52, .external_lex_state = 14}, + [2437] = {.lex_state = 52, .external_lex_state = 9}, + [2438] = {.lex_state = 52, .external_lex_state = 13}, [2439] = {.lex_state = 52, .external_lex_state = 14}, [2440] = {.lex_state = 52, .external_lex_state = 13}, - [2441] = {.lex_state = 52, .external_lex_state = 15}, - [2442] = {.lex_state = 52, .external_lex_state = 15}, - [2443] = {.lex_state = 52, .external_lex_state = 14}, - [2444] = {.lex_state = 52, .external_lex_state = 14}, + [2441] = {.lex_state = 52, .external_lex_state = 13}, + [2442] = {.lex_state = 52, .external_lex_state = 13}, + [2443] = {.lex_state = 52, .external_lex_state = 13}, + [2444] = {.lex_state = 52, .external_lex_state = 13}, [2445] = {.lex_state = 52, .external_lex_state = 13}, [2446] = {.lex_state = 52, .external_lex_state = 13}, - [2447] = {.lex_state = 52, .external_lex_state = 13}, - [2448] = {.lex_state = 52, .external_lex_state = 9}, + [2447] = {.lex_state = 52, .external_lex_state = 15}, + [2448] = {.lex_state = 9, .external_lex_state = 14}, [2449] = {.lex_state = 52, .external_lex_state = 19}, [2450] = {.lex_state = 52, .external_lex_state = 13}, - [2451] = {.lex_state = 52, .external_lex_state = 13}, - [2452] = {.lex_state = 52, .external_lex_state = 13}, - [2453] = {.lex_state = 52, .external_lex_state = 14}, - [2454] = {.lex_state = 52, .external_lex_state = 14}, - [2455] = {.lex_state = 52, .external_lex_state = 13}, - [2456] = {.lex_state = 52, .external_lex_state = 13}, - [2457] = {.lex_state = 52, .external_lex_state = 9}, - [2458] = {.lex_state = 52, .external_lex_state = 13}, + [2451] = {.lex_state = 52, .external_lex_state = 12}, + [2452] = {.lex_state = 52, .external_lex_state = 15}, + [2453] = {.lex_state = 52, .external_lex_state = 15}, + [2454] = {.lex_state = 52, .external_lex_state = 9}, + [2455] = {.lex_state = 52, .external_lex_state = 9}, + [2456] = {.lex_state = 52, .external_lex_state = 12}, + [2457] = {.lex_state = 52, .external_lex_state = 14}, + [2458] = {.lex_state = 52, .external_lex_state = 14}, [2459] = {.lex_state = 52, .external_lex_state = 13}, - [2460] = {.lex_state = 52, .external_lex_state = 13}, - [2461] = {.lex_state = 52, .external_lex_state = 13}, - [2462] = {.lex_state = 52, .external_lex_state = 13}, - [2463] = {.lex_state = 52, .external_lex_state = 9}, - [2464] = {.lex_state = 52, .external_lex_state = 14}, - [2465] = {.lex_state = 3, .external_lex_state = 12}, - [2466] = {.lex_state = 52, .external_lex_state = 15}, - [2467] = {.lex_state = 52, .external_lex_state = 13}, - [2468] = {.lex_state = 52, .external_lex_state = 15}, - [2469] = {.lex_state = 52, .external_lex_state = 15}, + [2460] = {.lex_state = 52, .external_lex_state = 15}, + [2461] = {.lex_state = 52, .external_lex_state = 14}, + [2462] = {.lex_state = 52, .external_lex_state = 14}, + [2463] = {.lex_state = 52, .external_lex_state = 12}, + [2464] = {.lex_state = 52, .external_lex_state = 12}, + [2465] = {.lex_state = 9, .external_lex_state = 14}, + [2466] = {.lex_state = 52, .external_lex_state = 19}, + [2467] = {.lex_state = 9, .external_lex_state = 14}, + [2468] = {.lex_state = 9, .external_lex_state = 14}, + [2469] = {.lex_state = 9, .external_lex_state = 14}, [2470] = {.lex_state = 52, .external_lex_state = 14}, [2471] = {.lex_state = 52, .external_lex_state = 15}, - [2472] = {.lex_state = 52, .external_lex_state = 9}, - [2473] = {.lex_state = 52, .external_lex_state = 15}, - [2474] = {.lex_state = 8, .external_lex_state = 15}, - [2475] = {.lex_state = 52, .external_lex_state = 12}, - [2476] = {.lex_state = 8, .external_lex_state = 15}, - [2477] = {.lex_state = 8, .external_lex_state = 15}, - [2478] = {.lex_state = 52, .external_lex_state = 12}, - [2479] = {.lex_state = 52, .external_lex_state = 12}, - [2480] = {.lex_state = 52, .external_lex_state = 12}, - [2481] = {.lex_state = 52, .external_lex_state = 13}, + [2472] = {.lex_state = 52, .external_lex_state = 12}, + [2473] = {.lex_state = 52, .external_lex_state = 14}, + [2474] = {.lex_state = 52, .external_lex_state = 14}, + [2475] = {.lex_state = 52, .external_lex_state = 14}, + [2476] = {.lex_state = 3, .external_lex_state = 12}, + [2477] = {.lex_state = 52, .external_lex_state = 13}, + [2478] = {.lex_state = 52, .external_lex_state = 15}, + [2479] = {.lex_state = 52, .external_lex_state = 15}, + [2480] = {.lex_state = 52, .external_lex_state = 15}, + [2481] = {.lex_state = 52, .external_lex_state = 15}, [2482] = {.lex_state = 52, .external_lex_state = 14}, - [2483] = {.lex_state = 52, .external_lex_state = 15}, - [2484] = {.lex_state = 52, .external_lex_state = 15}, - [2485] = {.lex_state = 52, .external_lex_state = 9}, - [2486] = {.lex_state = 52, .external_lex_state = 15}, - [2487] = {.lex_state = 3, .external_lex_state = 12}, - [2488] = {.lex_state = 52, .external_lex_state = 14}, - [2489] = {.lex_state = 52, .external_lex_state = 14}, - [2490] = {.lex_state = 52, .external_lex_state = 19}, + [2483] = {.lex_state = 52, .external_lex_state = 12}, + [2484] = {.lex_state = 52, .external_lex_state = 9}, + [2485] = {.lex_state = 52, .external_lex_state = 13}, + [2486] = {.lex_state = 3, .external_lex_state = 12}, + [2487] = {.lex_state = 52, .external_lex_state = 19}, + [2488] = {.lex_state = 52, .external_lex_state = 13}, + [2489] = {.lex_state = 52, .external_lex_state = 9}, + [2490] = {.lex_state = 52, .external_lex_state = 15}, [2491] = {.lex_state = 52, .external_lex_state = 15}, - [2492] = {.lex_state = 52, .external_lex_state = 12}, - [2493] = {.lex_state = 52, .external_lex_state = 12}, - [2494] = {.lex_state = 52, .external_lex_state = 19}, - [2495] = {.lex_state = 52, .external_lex_state = 14}, - [2496] = {.lex_state = 52, .external_lex_state = 13}, - [2497] = {.lex_state = 52, .external_lex_state = 15}, - [2498] = {.lex_state = 52, .external_lex_state = 15}, - [2499] = {.lex_state = 52, .external_lex_state = 14}, + [2492] = {.lex_state = 52, .external_lex_state = 9}, + [2493] = {.lex_state = 52, .external_lex_state = 14}, + [2494] = {.lex_state = 52, .external_lex_state = 14}, + [2495] = {.lex_state = 52, .external_lex_state = 15}, + [2496] = {.lex_state = 52, .external_lex_state = 15}, + [2497] = {.lex_state = 52, .external_lex_state = 14}, + [2498] = {.lex_state = 52, .external_lex_state = 12}, + [2499] = {.lex_state = 10, .external_lex_state = 14}, [2500] = {.lex_state = 52, .external_lex_state = 14}, - [2501] = {.lex_state = 52, .external_lex_state = 14}, + [2501] = {.lex_state = 52, .external_lex_state = 15}, [2502] = {.lex_state = 52, .external_lex_state = 14}, - [2503] = {.lex_state = 52, .external_lex_state = 13}, - [2504] = {.lex_state = 9, .external_lex_state = 17}, - [2505] = {.lex_state = 52, .external_lex_state = 13}, - [2506] = {.lex_state = 52, .external_lex_state = 14}, - [2507] = {.lex_state = 52, .external_lex_state = 15}, - [2508] = {.lex_state = 52, .external_lex_state = 12}, - [2509] = {.lex_state = 52, .external_lex_state = 19}, - [2510] = {.lex_state = 52, .external_lex_state = 15}, - [2511] = {.lex_state = 52, .external_lex_state = 15}, - [2512] = {.lex_state = 52, .external_lex_state = 14}, + [2503] = {.lex_state = 52, .external_lex_state = 18}, + [2504] = {.lex_state = 52, .external_lex_state = 15}, + [2505] = {.lex_state = 52, .external_lex_state = 9}, + [2506] = {.lex_state = 52, .external_lex_state = 9}, + [2507] = {.lex_state = 52, .external_lex_state = 14}, + [2508] = {.lex_state = 52, .external_lex_state = 14}, + [2509] = {.lex_state = 52, .external_lex_state = 9}, + [2510] = {.lex_state = 10, .external_lex_state = 14}, + [2511] = {.lex_state = 52, .external_lex_state = 14}, + [2512] = {.lex_state = 52, .external_lex_state = 13}, [2513] = {.lex_state = 52, .external_lex_state = 14}, - [2514] = {.lex_state = 52, .external_lex_state = 15}, - [2515] = {.lex_state = 52, .external_lex_state = 15}, + [2514] = {.lex_state = 52, .external_lex_state = 14}, + [2515] = {.lex_state = 52, .external_lex_state = 18}, [2516] = {.lex_state = 52, .external_lex_state = 14}, - [2517] = {.lex_state = 52, .external_lex_state = 9}, - [2518] = {.lex_state = 52, .external_lex_state = 15}, - [2519] = {.lex_state = 52, .external_lex_state = 9}, - [2520] = {.lex_state = 9, .external_lex_state = 15}, - [2521] = {.lex_state = 52, .external_lex_state = 18}, - [2522] = {.lex_state = 52, .external_lex_state = 9}, - [2523] = {.lex_state = 52, .external_lex_state = 14}, - [2524] = {.lex_state = 52, .external_lex_state = 15}, - [2525] = {.lex_state = 52, .external_lex_state = 13}, - [2526] = {.lex_state = 52, .external_lex_state = 12}, - [2527] = {.lex_state = 9, .external_lex_state = 15}, - [2528] = {.lex_state = 52, .external_lex_state = 18}, - [2529] = {.lex_state = 52, .external_lex_state = 18}, - [2530] = {.lex_state = 52, .external_lex_state = 18}, - [2531] = {.lex_state = 52, .external_lex_state = 15}, + [2517] = {.lex_state = 52, .external_lex_state = 18}, + [2518] = {.lex_state = 52, .external_lex_state = 14}, + [2519] = {.lex_state = 52, .external_lex_state = 14}, + [2520] = {.lex_state = 52, .external_lex_state = 14}, + [2521] = {.lex_state = 52, .external_lex_state = 15}, + [2522] = {.lex_state = 52, .external_lex_state = 14}, + [2523] = {.lex_state = 52, .external_lex_state = 18}, + [2524] = {.lex_state = 52, .external_lex_state = 13}, + [2525] = {.lex_state = 52, .external_lex_state = 14}, + [2526] = {.lex_state = 52, .external_lex_state = 15}, + [2527] = {.lex_state = 52, .external_lex_state = 9}, + [2528] = {.lex_state = 52, .external_lex_state = 9}, + [2529] = {.lex_state = 52, .external_lex_state = 9}, + [2530] = {.lex_state = 52, .external_lex_state = 9}, + [2531] = {.lex_state = 52, .external_lex_state = 18}, [2532] = {.lex_state = 52, .external_lex_state = 18}, [2533] = {.lex_state = 52, .external_lex_state = 15}, [2534] = {.lex_state = 52, .external_lex_state = 15}, - [2535] = {.lex_state = 52, .external_lex_state = 13}, - [2536] = {.lex_state = 52, .external_lex_state = 15}, - [2537] = {.lex_state = 52, .external_lex_state = 12}, - [2538] = {.lex_state = 52, .external_lex_state = 12}, - [2539] = {.lex_state = 52, .external_lex_state = 18}, - [2540] = {.lex_state = 52, .external_lex_state = 18}, + [2535] = {.lex_state = 52, .external_lex_state = 12}, + [2536] = {.lex_state = 52, .external_lex_state = 13}, + [2537] = {.lex_state = 52, .external_lex_state = 14}, + [2538] = {.lex_state = 52, .external_lex_state = 15}, + [2539] = {.lex_state = 52, .external_lex_state = 15}, + [2540] = {.lex_state = 52, .external_lex_state = 14}, [2541] = {.lex_state = 52, .external_lex_state = 15}, - [2542] = {.lex_state = 52, .external_lex_state = 12}, - [2543] = {.lex_state = 52, .external_lex_state = 15}, - [2544] = {.lex_state = 52, .external_lex_state = 12}, - [2545] = {.lex_state = 52, .external_lex_state = 14}, - [2546] = {.lex_state = 52, .external_lex_state = 15}, - [2547] = {.lex_state = 52, .external_lex_state = 14}, - [2548] = {.lex_state = 52, .external_lex_state = 13}, - [2549] = {.lex_state = 52, .external_lex_state = 14}, - [2550] = {.lex_state = 52, .external_lex_state = 14}, - [2551] = {.lex_state = 52, .external_lex_state = 14}, - [2552] = {.lex_state = 52, .external_lex_state = 18}, + [2542] = {.lex_state = 10, .external_lex_state = 14}, + [2543] = {.lex_state = 52, .external_lex_state = 14}, + [2544] = {.lex_state = 52, .external_lex_state = 15}, + [2545] = {.lex_state = 52, .external_lex_state = 9}, + [2546] = {.lex_state = 52, .external_lex_state = 9}, + [2547] = {.lex_state = 52, .external_lex_state = 18}, + [2548] = {.lex_state = 52, .external_lex_state = 9}, + [2549] = {.lex_state = 52, .external_lex_state = 9}, + [2550] = {.lex_state = 52, .external_lex_state = 9}, + [2551] = {.lex_state = 52, .external_lex_state = 15}, + [2552] = {.lex_state = 52, .external_lex_state = 15}, [2553] = {.lex_state = 52, .external_lex_state = 15}, - [2554] = {.lex_state = 52, .external_lex_state = 18}, - [2555] = {.lex_state = 52, .external_lex_state = 13}, - [2556] = {.lex_state = 52, .external_lex_state = 15}, - [2557] = {.lex_state = 52, .external_lex_state = 9}, - [2558] = {.lex_state = 52, .external_lex_state = 9}, - [2559] = {.lex_state = 52, .external_lex_state = 15}, - [2560] = {.lex_state = 52, .external_lex_state = 15}, - [2561] = {.lex_state = 52, .external_lex_state = 13}, - [2562] = {.lex_state = 52, .external_lex_state = 9}, - [2563] = {.lex_state = 52, .external_lex_state = 15}, - [2564] = {.lex_state = 9, .external_lex_state = 15}, - [2565] = {.lex_state = 52, .external_lex_state = 15}, - [2566] = {.lex_state = 52, .external_lex_state = 9}, - [2567] = {.lex_state = 52, .external_lex_state = 18}, + [2554] = {.lex_state = 52, .external_lex_state = 9}, + [2555] = {.lex_state = 52, .external_lex_state = 9}, + [2556] = {.lex_state = 52, .external_lex_state = 14}, + [2557] = {.lex_state = 52, .external_lex_state = 18}, + [2558] = {.lex_state = 10, .external_lex_state = 14}, + [2559] = {.lex_state = 10, .external_lex_state = 14}, + [2560] = {.lex_state = 52, .external_lex_state = 13}, + [2561] = {.lex_state = 10, .external_lex_state = 14}, + [2562] = {.lex_state = 10, .external_lex_state = 14}, + [2563] = {.lex_state = 10, .external_lex_state = 14}, + [2564] = {.lex_state = 52, .external_lex_state = 14}, + [2565] = {.lex_state = 52, .external_lex_state = 14}, + [2566] = {.lex_state = 52, .external_lex_state = 18}, + [2567] = {.lex_state = 52, .external_lex_state = 14}, [2568] = {.lex_state = 52, .external_lex_state = 9}, - [2569] = {.lex_state = 52, .external_lex_state = 18}, - [2570] = {.lex_state = 52, .external_lex_state = 9}, - [2571] = {.lex_state = 52, .external_lex_state = 14}, - [2572] = {.lex_state = 9, .external_lex_state = 15}, - [2573] = {.lex_state = 52, .external_lex_state = 18}, - [2574] = {.lex_state = 52, .external_lex_state = 18}, - [2575] = {.lex_state = 52, .external_lex_state = 15}, + [2569] = {.lex_state = 52, .external_lex_state = 12}, + [2570] = {.lex_state = 52, .external_lex_state = 18}, + [2571] = {.lex_state = 52, .external_lex_state = 18}, + [2572] = {.lex_state = 52, .external_lex_state = 15}, + [2573] = {.lex_state = 52, .external_lex_state = 9}, + [2574] = {.lex_state = 52, .external_lex_state = 15}, + [2575] = {.lex_state = 52, .external_lex_state = 18}, [2576] = {.lex_state = 52, .external_lex_state = 18}, - [2577] = {.lex_state = 52, .external_lex_state = 9}, - [2578] = {.lex_state = 52, .external_lex_state = 9}, - [2579] = {.lex_state = 52, .external_lex_state = 14}, - [2580] = {.lex_state = 52, .external_lex_state = 14}, - [2581] = {.lex_state = 52, .external_lex_state = 15}, - [2582] = {.lex_state = 52, .external_lex_state = 18}, - [2583] = {.lex_state = 52, .external_lex_state = 9}, - [2584] = {.lex_state = 52, .external_lex_state = 13}, - [2585] = {.lex_state = 9, .external_lex_state = 15}, - [2586] = {.lex_state = 9, .external_lex_state = 15}, - [2587] = {.lex_state = 9, .external_lex_state = 15}, - [2588] = {.lex_state = 9, .external_lex_state = 15}, - [2589] = {.lex_state = 9, .external_lex_state = 15}, - [2590] = {.lex_state = 52, .external_lex_state = 15}, - [2591] = {.lex_state = 52, .external_lex_state = 9}, + [2577] = {.lex_state = 52, .external_lex_state = 13}, + [2578] = {.lex_state = 52, .external_lex_state = 13}, + [2579] = {.lex_state = 52, .external_lex_state = 13}, + [2580] = {.lex_state = 52, .external_lex_state = 13}, + [2581] = {.lex_state = 52, .external_lex_state = 12}, + [2582] = {.lex_state = 52, .external_lex_state = 12}, + [2583] = {.lex_state = 52, .external_lex_state = 18}, + [2584] = {.lex_state = 52, .external_lex_state = 18}, + [2585] = {.lex_state = 52, .external_lex_state = 18}, + [2586] = {.lex_state = 52, .external_lex_state = 9}, + [2587] = {.lex_state = 52, .external_lex_state = 18}, + [2588] = {.lex_state = 52, .external_lex_state = 18}, + [2589] = {.lex_state = 52, .external_lex_state = 9}, + [2590] = {.lex_state = 52, .external_lex_state = 13}, + [2591] = {.lex_state = 52, .external_lex_state = 14}, [2592] = {.lex_state = 52, .external_lex_state = 15}, - [2593] = {.lex_state = 52, .external_lex_state = 18}, - [2594] = {.lex_state = 52, .external_lex_state = 15}, - [2595] = {.lex_state = 52, .external_lex_state = 9}, - [2596] = {.lex_state = 52, .external_lex_state = 13}, - [2597] = {.lex_state = 52, .external_lex_state = 14}, - [2598] = {.lex_state = 52, .external_lex_state = 9}, - [2599] = {.lex_state = 52, .external_lex_state = 13}, - [2600] = {.lex_state = 9, .external_lex_state = 15}, - [2601] = {.lex_state = 52, .external_lex_state = 14}, + [2593] = {.lex_state = 4, .external_lex_state = 14}, + [2594] = {.lex_state = 52, .external_lex_state = 14}, + [2595] = {.lex_state = 52, .external_lex_state = 14}, + [2596] = {.lex_state = 52, .external_lex_state = 15}, + [2597] = {.lex_state = 52, .external_lex_state = 15}, + [2598] = {.lex_state = 52, .external_lex_state = 14}, + [2599] = {.lex_state = 52, .external_lex_state = 12}, + [2600] = {.lex_state = 52, .external_lex_state = 13}, + [2601] = {.lex_state = 52, .external_lex_state = 12}, [2602] = {.lex_state = 52, .external_lex_state = 15}, - [2603] = {.lex_state = 52, .external_lex_state = 18}, - [2604] = {.lex_state = 52, .external_lex_state = 9}, - [2605] = {.lex_state = 52, .external_lex_state = 18}, + [2603] = {.lex_state = 52, .external_lex_state = 14}, + [2604] = {.lex_state = 52, .external_lex_state = 12}, + [2605] = {.lex_state = 52, .external_lex_state = 14}, [2606] = {.lex_state = 52, .external_lex_state = 14}, - [2607] = {.lex_state = 52, .external_lex_state = 15}, - [2608] = {.lex_state = 52, .external_lex_state = 9}, - [2609] = {.lex_state = 52, .external_lex_state = 15}, + [2607] = {.lex_state = 52, .external_lex_state = 14}, + [2608] = {.lex_state = 52, .external_lex_state = 14}, + [2609] = {.lex_state = 52, .external_lex_state = 12}, [2610] = {.lex_state = 52, .external_lex_state = 15}, - [2611] = {.lex_state = 52, .external_lex_state = 14}, - [2612] = {.lex_state = 52, .external_lex_state = 13}, - [2613] = {.lex_state = 52, .external_lex_state = 9}, - [2614] = {.lex_state = 52, .external_lex_state = 15}, - [2615] = {.lex_state = 52, .external_lex_state = 14}, - [2616] = {.lex_state = 52, .external_lex_state = 12}, + [2611] = {.lex_state = 52, .external_lex_state = 13}, + [2612] = {.lex_state = 52, .external_lex_state = 14}, + [2613] = {.lex_state = 52, .external_lex_state = 14}, + [2614] = {.lex_state = 52, .external_lex_state = 12}, + [2615] = {.lex_state = 52, .external_lex_state = 12}, + [2616] = {.lex_state = 4, .external_lex_state = 14}, [2617] = {.lex_state = 52, .external_lex_state = 12}, - [2618] = {.lex_state = 52, .external_lex_state = 13}, + [2618] = {.lex_state = 52, .external_lex_state = 15}, [2619] = {.lex_state = 52, .external_lex_state = 12}, - [2620] = {.lex_state = 52, .external_lex_state = 15}, - [2621] = {.lex_state = 52, .external_lex_state = 14}, - [2622] = {.lex_state = 52, .external_lex_state = 12}, - [2623] = {.lex_state = 52, .external_lex_state = 15}, + [2620] = {.lex_state = 4, .external_lex_state = 14}, + [2621] = {.lex_state = 52, .external_lex_state = 15}, + [2622] = {.lex_state = 52, .external_lex_state = 14}, + [2623] = {.lex_state = 52, .external_lex_state = 14}, [2624] = {.lex_state = 52, .external_lex_state = 15}, - [2625] = {.lex_state = 52, .external_lex_state = 15}, - [2626] = {.lex_state = 52, .external_lex_state = 15}, + [2625] = {.lex_state = 52, .external_lex_state = 14}, + [2626] = {.lex_state = 52, .external_lex_state = 13}, [2627] = {.lex_state = 52, .external_lex_state = 15}, - [2628] = {.lex_state = 52, .external_lex_state = 14}, - [2629] = {.lex_state = 52, .external_lex_state = 13}, - [2630] = {.lex_state = 4, .external_lex_state = 15}, - [2631] = {.lex_state = 52, .external_lex_state = 15}, - [2632] = {.lex_state = 52, .external_lex_state = 12}, + [2628] = {.lex_state = 52, .external_lex_state = 12}, + [2629] = {.lex_state = 52, .external_lex_state = 12}, + [2630] = {.lex_state = 52, .external_lex_state = 15}, + [2631] = {.lex_state = 52, .external_lex_state = 13}, + [2632] = {.lex_state = 52, .external_lex_state = 13}, [2633] = {.lex_state = 52, .external_lex_state = 12}, - [2634] = {.lex_state = 52, .external_lex_state = 15}, + [2634] = {.lex_state = 52, .external_lex_state = 12}, [2635] = {.lex_state = 52, .external_lex_state = 14}, [2636] = {.lex_state = 52, .external_lex_state = 14}, - [2637] = {.lex_state = 52, .external_lex_state = 15}, - [2638] = {.lex_state = 52, .external_lex_state = 15}, - [2639] = {.lex_state = 52, .external_lex_state = 15}, - [2640] = {.lex_state = 52, .external_lex_state = 15}, - [2641] = {.lex_state = 52, .external_lex_state = 12}, + [2637] = {.lex_state = 52, .external_lex_state = 14}, + [2638] = {.lex_state = 52, .external_lex_state = 14}, + [2639] = {.lex_state = 52, .external_lex_state = 14}, + [2640] = {.lex_state = 52, .external_lex_state = 13}, + [2641] = {.lex_state = 52, .external_lex_state = 14}, [2642] = {.lex_state = 52, .external_lex_state = 14}, - [2643] = {.lex_state = 52, .external_lex_state = 14}, - [2644] = {.lex_state = 52, .external_lex_state = 14}, - [2645] = {.lex_state = 4, .external_lex_state = 15}, - [2646] = {.lex_state = 52, .external_lex_state = 12}, - [2647] = {.lex_state = 52, .external_lex_state = 13}, - [2648] = {.lex_state = 52, .external_lex_state = 12}, - [2649] = {.lex_state = 4, .external_lex_state = 15}, + [2643] = {.lex_state = 52, .external_lex_state = 12}, + [2644] = {.lex_state = 52, .external_lex_state = 12}, + [2645] = {.lex_state = 52, .external_lex_state = 14}, + [2646] = {.lex_state = 52, .external_lex_state = 14}, + [2647] = {.lex_state = 52, .external_lex_state = 14}, + [2648] = {.lex_state = 52, .external_lex_state = 14}, + [2649] = {.lex_state = 52, .external_lex_state = 12}, [2650] = {.lex_state = 52, .external_lex_state = 14}, - [2651] = {.lex_state = 52, .external_lex_state = 15}, - [2652] = {.lex_state = 52, .external_lex_state = 13}, - [2653] = {.lex_state = 52, .external_lex_state = 15}, - [2654] = {.lex_state = 52, .external_lex_state = 12}, - [2655] = {.lex_state = 52, .external_lex_state = 15}, - [2656] = {.lex_state = 52, .external_lex_state = 12}, - [2657] = {.lex_state = 52, .external_lex_state = 15}, - [2658] = {.lex_state = 52, .external_lex_state = 14}, - [2659] = {.lex_state = 52, .external_lex_state = 14}, + [2651] = {.lex_state = 52, .external_lex_state = 12}, + [2652] = {.lex_state = 52, .external_lex_state = 14}, + [2653] = {.lex_state = 52, .external_lex_state = 14}, + [2654] = {.lex_state = 52, .external_lex_state = 14}, + [2655] = {.lex_state = 52, .external_lex_state = 12}, + [2656] = {.lex_state = 52, .external_lex_state = 14}, + [2657] = {.lex_state = 52, .external_lex_state = 14}, + [2658] = {.lex_state = 52, .external_lex_state = 15}, + [2659] = {.lex_state = 52, .external_lex_state = 13}, [2660] = {.lex_state = 52, .external_lex_state = 15}, - [2661] = {.lex_state = 52, .external_lex_state = 15}, - [2662] = {.lex_state = 52, .external_lex_state = 15}, - [2663] = {.lex_state = 52, .external_lex_state = 12}, + [2661] = {.lex_state = 52, .external_lex_state = 14}, + [2662] = {.lex_state = 52, .external_lex_state = 14}, + [2663] = {.lex_state = 52, .external_lex_state = 13}, [2664] = {.lex_state = 52, .external_lex_state = 14}, - [2665] = {.lex_state = 52, .external_lex_state = 13}, - [2666] = {.lex_state = 52, .external_lex_state = 13}, - [2667] = {.lex_state = 52, .external_lex_state = 13}, + [2665] = {.lex_state = 52, .external_lex_state = 14}, + [2666] = {.lex_state = 52, .external_lex_state = 14}, + [2667] = {.lex_state = 52, .external_lex_state = 15}, [2668] = {.lex_state = 52, .external_lex_state = 14}, - [2669] = {.lex_state = 52, .external_lex_state = 15}, - [2670] = {.lex_state = 52, .external_lex_state = 15}, - [2671] = {.lex_state = 52, .external_lex_state = 12}, - [2672] = {.lex_state = 4, .external_lex_state = 15}, - [2673] = {.lex_state = 52, .external_lex_state = 14}, - [2674] = {.lex_state = 52, .external_lex_state = 12}, - [2675] = {.lex_state = 52, .external_lex_state = 15}, - [2676] = {.lex_state = 52, .external_lex_state = 12}, - [2677] = {.lex_state = 52, .external_lex_state = 12}, - [2678] = {.lex_state = 4, .external_lex_state = 15}, + [2669] = {.lex_state = 52, .external_lex_state = 14}, + [2670] = {.lex_state = 52, .external_lex_state = 12}, + [2671] = {.lex_state = 52, .external_lex_state = 14}, + [2672] = {.lex_state = 52, .external_lex_state = 13}, + [2673] = {.lex_state = 52, .external_lex_state = 12}, + [2674] = {.lex_state = 4, .external_lex_state = 14}, + [2675] = {.lex_state = 52, .external_lex_state = 14}, + [2676] = {.lex_state = 52, .external_lex_state = 14}, + [2677] = {.lex_state = 52, .external_lex_state = 13}, + [2678] = {.lex_state = 52, .external_lex_state = 14}, [2679] = {.lex_state = 52, .external_lex_state = 15}, - [2680] = {.lex_state = 52, .external_lex_state = 15}, + [2680] = {.lex_state = 52, .external_lex_state = 13}, [2681] = {.lex_state = 52, .external_lex_state = 15}, - [2682] = {.lex_state = 52, .external_lex_state = 15}, - [2683] = {.lex_state = 52, .external_lex_state = 14}, - [2684] = {.lex_state = 4, .external_lex_state = 15}, - [2685] = {.lex_state = 52, .external_lex_state = 13}, - [2686] = {.lex_state = 52, .external_lex_state = 15}, + [2682] = {.lex_state = 52, .external_lex_state = 14}, + [2683] = {.lex_state = 52, .external_lex_state = 15}, + [2684] = {.lex_state = 52, .external_lex_state = 14}, + [2685] = {.lex_state = 52, .external_lex_state = 14}, + [2686] = {.lex_state = 52, .external_lex_state = 14}, [2687] = {.lex_state = 52, .external_lex_state = 14}, - [2688] = {.lex_state = 52, .external_lex_state = 15}, - [2689] = {.lex_state = 52, .external_lex_state = 13}, - [2690] = {.lex_state = 52, .external_lex_state = 12}, - [2691] = {.lex_state = 52, .external_lex_state = 14}, + [2688] = {.lex_state = 52, .external_lex_state = 14}, + [2689] = {.lex_state = 52, .external_lex_state = 12}, + [2690] = {.lex_state = 52, .external_lex_state = 14}, + [2691] = {.lex_state = 52, .external_lex_state = 15}, [2692] = {.lex_state = 52, .external_lex_state = 14}, - [2693] = {.lex_state = 52, .external_lex_state = 15}, + [2693] = {.lex_state = 52, .external_lex_state = 14}, [2694] = {.lex_state = 52, .external_lex_state = 14}, - [2695] = {.lex_state = 52, .external_lex_state = 13}, - [2696] = {.lex_state = 52, .external_lex_state = 15}, - [2697] = {.lex_state = 52, .external_lex_state = 15}, - [2698] = {.lex_state = 52, .external_lex_state = 15}, - [2699] = {.lex_state = 52, .external_lex_state = 12}, - [2700] = {.lex_state = 52, .external_lex_state = 15}, - [2701] = {.lex_state = 52, .external_lex_state = 15}, + [2695] = {.lex_state = 52, .external_lex_state = 14}, + [2696] = {.lex_state = 52, .external_lex_state = 14}, + [2697] = {.lex_state = 52, .external_lex_state = 12}, + [2698] = {.lex_state = 52, .external_lex_state = 12}, + [2699] = {.lex_state = 52, .external_lex_state = 14}, + [2700] = {.lex_state = 52, .external_lex_state = 12}, + [2701] = {.lex_state = 52, .external_lex_state = 14}, [2702] = {.lex_state = 52, .external_lex_state = 15}, - [2703] = {.lex_state = 52, .external_lex_state = 12}, + [2703] = {.lex_state = 52, .external_lex_state = 14}, [2704] = {.lex_state = 52, .external_lex_state = 14}, - [2705] = {.lex_state = 52, .external_lex_state = 15}, - [2706] = {.lex_state = 52, .external_lex_state = 14}, - [2707] = {.lex_state = 52, .external_lex_state = 15}, - [2708] = {.lex_state = 52, .external_lex_state = 14}, + [2705] = {.lex_state = 52, .external_lex_state = 13}, + [2706] = {.lex_state = 52, .external_lex_state = 13}, + [2707] = {.lex_state = 52, .external_lex_state = 14}, + [2708] = {.lex_state = 52, .external_lex_state = 12}, [2709] = {.lex_state = 52, .external_lex_state = 15}, - [2710] = {.lex_state = 52, .external_lex_state = 15}, - [2711] = {.lex_state = 52, .external_lex_state = 15}, - [2712] = {.lex_state = 52, .external_lex_state = 15}, - [2713] = {.lex_state = 52, .external_lex_state = 13}, - [2714] = {.lex_state = 52, .external_lex_state = 15}, + [2710] = {.lex_state = 52, .external_lex_state = 14}, + [2711] = {.lex_state = 52, .external_lex_state = 13}, + [2712] = {.lex_state = 52, .external_lex_state = 14}, + [2713] = {.lex_state = 52, .external_lex_state = 15}, + [2714] = {.lex_state = 52, .external_lex_state = 13}, [2715] = {.lex_state = 52, .external_lex_state = 14}, - [2716] = {.lex_state = 52, .external_lex_state = 15}, + [2716] = {.lex_state = 52, .external_lex_state = 12}, [2717] = {.lex_state = 52, .external_lex_state = 15}, - [2718] = {.lex_state = 52, .external_lex_state = 13}, - [2719] = {.lex_state = 52, .external_lex_state = 13}, - [2720] = {.lex_state = 52, .external_lex_state = 12}, - [2721] = {.lex_state = 52, .external_lex_state = 15}, - [2722] = {.lex_state = 52, .external_lex_state = 13}, - [2723] = {.lex_state = 52, .external_lex_state = 13}, - [2724] = {.lex_state = 52, .external_lex_state = 13}, - [2725] = {.lex_state = 52, .external_lex_state = 12}, - [2726] = {.lex_state = 52, .external_lex_state = 15}, - [2727] = {.lex_state = 52, .external_lex_state = 15}, + [2718] = {.lex_state = 52, .external_lex_state = 14}, + [2719] = {.lex_state = 52, .external_lex_state = 14}, + [2720] = {.lex_state = 52, .external_lex_state = 13}, + [2721] = {.lex_state = 52, .external_lex_state = 14}, + [2722] = {.lex_state = 52, .external_lex_state = 14}, + [2723] = {.lex_state = 52, .external_lex_state = 14}, + [2724] = {.lex_state = 52, .external_lex_state = 12}, + [2725] = {.lex_state = 52, .external_lex_state = 13}, + [2726] = {.lex_state = 52, .external_lex_state = 14}, + [2727] = {.lex_state = 52, .external_lex_state = 13}, [2728] = {.lex_state = 52, .external_lex_state = 15}, - [2729] = {.lex_state = 52, .external_lex_state = 12}, - [2730] = {.lex_state = 52, .external_lex_state = 14}, - [2731] = {.lex_state = 52, .external_lex_state = 12}, - [2732] = {.lex_state = 52, .external_lex_state = 15}, - [2733] = {.lex_state = 52, .external_lex_state = 15}, - [2734] = {.lex_state = 52, .external_lex_state = 15}, - [2735] = {.lex_state = 52, .external_lex_state = 15}, + [2729] = {.lex_state = 52, .external_lex_state = 15}, + [2730] = {.lex_state = 52, .external_lex_state = 12}, + [2731] = {.lex_state = 52, .external_lex_state = 14}, + [2732] = {.lex_state = 52, .external_lex_state = 14}, + [2733] = {.lex_state = 52, .external_lex_state = 14}, + [2734] = {.lex_state = 52, .external_lex_state = 12}, + [2735] = {.lex_state = 52, .external_lex_state = 12}, [2736] = {.lex_state = 52, .external_lex_state = 15}, - [2737] = {.lex_state = 52, .external_lex_state = 15}, - [2738] = {.lex_state = 52, .external_lex_state = 15}, - [2739] = {.lex_state = 52, .external_lex_state = 12}, + [2737] = {.lex_state = 52, .external_lex_state = 14}, + [2738] = {.lex_state = 52, .external_lex_state = 14}, + [2739] = {.lex_state = 52, .external_lex_state = 15}, [2740] = {.lex_state = 52, .external_lex_state = 12}, - [2741] = {.lex_state = 52, .external_lex_state = 15}, - [2742] = {.lex_state = 52, .external_lex_state = 15}, - [2743] = {.lex_state = 52, .external_lex_state = 15}, - [2744] = {.lex_state = 52, .external_lex_state = 12}, + [2741] = {.lex_state = 52, .external_lex_state = 12}, + [2742] = {.lex_state = 52, .external_lex_state = 14}, + [2743] = {.lex_state = 52, .external_lex_state = 13}, + [2744] = {.lex_state = 52, .external_lex_state = 14}, [2745] = {.lex_state = 52, .external_lex_state = 15}, - [2746] = {.lex_state = 52, .external_lex_state = 15}, - [2747] = {.lex_state = 52, .external_lex_state = 15}, - [2748] = {.lex_state = 52, .external_lex_state = 12}, + [2746] = {.lex_state = 52, .external_lex_state = 12}, + [2747] = {.lex_state = 52, .external_lex_state = 14}, + [2748] = {.lex_state = 4, .external_lex_state = 14}, [2749] = {.lex_state = 52, .external_lex_state = 14}, - [2750] = {.lex_state = 52, .external_lex_state = 15}, - [2751] = {.lex_state = 52, .external_lex_state = 15}, - [2752] = {.lex_state = 52, .external_lex_state = 12}, + [2750] = {.lex_state = 52, .external_lex_state = 14}, + [2751] = {.lex_state = 52, .external_lex_state = 12}, + [2752] = {.lex_state = 52, .external_lex_state = 15}, [2753] = {.lex_state = 52, .external_lex_state = 12}, - [2754] = {.lex_state = 52, .external_lex_state = 15}, - [2755] = {.lex_state = 52, .external_lex_state = 15}, - [2756] = {.lex_state = 52, .external_lex_state = 15}, - [2757] = {.lex_state = 52, .external_lex_state = 15}, - [2758] = {.lex_state = 52, .external_lex_state = 12}, - [2759] = {.lex_state = 52, .external_lex_state = 13}, - [2760] = {.lex_state = 52, .external_lex_state = 15}, - [2761] = {.lex_state = 52, .external_lex_state = 13}, - [2762] = {.lex_state = 52, .external_lex_state = 13}, - [2763] = {.lex_state = 52, .external_lex_state = 12}, - [2764] = {.lex_state = 52, .external_lex_state = 12}, - [2765] = {.lex_state = 52, .external_lex_state = 15}, - [2766] = {.lex_state = 52, .external_lex_state = 14}, - [2767] = {.lex_state = 52, .external_lex_state = 15}, - [2768] = {.lex_state = 52, .external_lex_state = 15}, - [2769] = {.lex_state = 52, .external_lex_state = 12}, - [2770] = {.lex_state = 52, .external_lex_state = 14}, + [2754] = {.lex_state = 52, .external_lex_state = 14}, + [2755] = {.lex_state = 52, .external_lex_state = 14}, + [2756] = {.lex_state = 52, .external_lex_state = 13}, + [2757] = {.lex_state = 52, .external_lex_state = 14}, + [2758] = {.lex_state = 52, .external_lex_state = 14}, + [2759] = {.lex_state = 52, .external_lex_state = 12}, + [2760] = {.lex_state = 52, .external_lex_state = 12}, + [2761] = {.lex_state = 52, .external_lex_state = 14}, + [2762] = {.lex_state = 52, .external_lex_state = 14}, + [2763] = {.lex_state = 52, .external_lex_state = 15}, + [2764] = {.lex_state = 52, .external_lex_state = 15}, + [2765] = {.lex_state = 52, .external_lex_state = 14}, + [2766] = {.lex_state = 52, .external_lex_state = 15}, + [2767] = {.lex_state = 4, .external_lex_state = 14}, + [2768] = {.lex_state = 52, .external_lex_state = 14}, + [2769] = {.lex_state = 4, .external_lex_state = 14}, + [2770] = {.lex_state = 52, .external_lex_state = 15}, [2771] = {.lex_state = 52, .external_lex_state = 15}, - [2772] = {.lex_state = 52, .external_lex_state = 15}, + [2772] = {.lex_state = 52, .external_lex_state = 14}, [2773] = {.lex_state = 52, .external_lex_state = 14}, - [2774] = {.lex_state = 52, .external_lex_state = 15}, - [2775] = {.lex_state = 52, .external_lex_state = 15}, + [2774] = {.lex_state = 52, .external_lex_state = 12}, + [2775] = {.lex_state = 52, .external_lex_state = 14}, [2776] = {.lex_state = 52, .external_lex_state = 13}, - [2777] = {.lex_state = 52, .external_lex_state = 15}, - [2778] = {.lex_state = 52, .external_lex_state = 14}, - [2779] = {.lex_state = 52, .external_lex_state = 12}, - [2780] = {.lex_state = 52, .external_lex_state = 14}, - [2781] = {.lex_state = 4, .external_lex_state = 15}, + [2777] = {.lex_state = 4, .external_lex_state = 14}, + [2778] = {.lex_state = 52, .external_lex_state = 15}, + [2779] = {.lex_state = 52, .external_lex_state = 14}, + [2780] = {.lex_state = 52, .external_lex_state = 12}, + [2781] = {.lex_state = 52, .external_lex_state = 14}, [2782] = {.lex_state = 52, .external_lex_state = 14}, - [2783] = {.lex_state = 52, .external_lex_state = 15}, - [2784] = {.lex_state = 52, .external_lex_state = 15}, - [2785] = {.lex_state = 52, .external_lex_state = 12}, - [2786] = {.lex_state = 4, .external_lex_state = 15}, + [2783] = {.lex_state = 52, .external_lex_state = 12}, + [2784] = {.lex_state = 52, .external_lex_state = 14}, + [2785] = {.lex_state = 52, .external_lex_state = 14}, + [2786] = {.lex_state = 52, .external_lex_state = 14}, [2787] = {.lex_state = 52, .external_lex_state = 15}, - [2788] = {.lex_state = 52, .external_lex_state = 12}, + [2788] = {.lex_state = 52, .external_lex_state = 15}, [2789] = {.lex_state = 52, .external_lex_state = 12}, - [2790] = {.lex_state = 52, .external_lex_state = 14}, - [2791] = {.lex_state = 52, .external_lex_state = 12}, - [2792] = {.lex_state = 52, .external_lex_state = 12}, - [2793] = {.lex_state = 52, .external_lex_state = 15}, - [2794] = {.lex_state = 52, .external_lex_state = 15}, - [2795] = {.lex_state = 52, .external_lex_state = 15}, - [2796] = {.lex_state = 52, .external_lex_state = 15}, - [2797] = {.lex_state = 52, .external_lex_state = 15}, - [2798] = {.lex_state = 52, .external_lex_state = 15}, - [2799] = {.lex_state = 52, .external_lex_state = 13}, - [2800] = {.lex_state = 52, .external_lex_state = 15}, - [2801] = {.lex_state = 52, .external_lex_state = 15}, - [2802] = {.lex_state = 52, .external_lex_state = 15}, - [2803] = {.lex_state = 52, .external_lex_state = 15}, - [2804] = {.lex_state = 52, .external_lex_state = 15}, - [2805] = {.lex_state = 52, .external_lex_state = 15}, - [2806] = {.lex_state = 52, .external_lex_state = 15}, - [2807] = {.lex_state = 52, .external_lex_state = 12}, - [2808] = {.lex_state = 52, .external_lex_state = 15}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -10349,11 +10354,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_def] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), [anon_sym_global] = ACTIONS(1), [anon_sym_nonlocal] = ACTIONS(1), [anon_sym_exec] = ACTIONS(1), [anon_sym_type] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), @@ -10417,24 +10422,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_escape_interpolation] = ACTIONS(1), [sym_string_end] = ACTIONS(1), }, - [1] = { - [sym_module] = STATE(2732), + [STATE(1)] = { + [sym_module] = STATE(2699), [sym__statement] = STATE(64), [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), [sym_if_statement] = STATE(64), [sym_match_statement] = STATE(64), [sym_for_statement] = STATE(64), @@ -10442,48 +10447,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(64), [sym_with_statement] = STATE(64), [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), [sym_class_definition] = STATE(64), [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1784), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [aux_sym_decorated_definition_repeat1] = STATE(1784), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10531,73 +10536,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(81), }, - [2] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(726), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(2)] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(648), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10645,73 +10650,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [3] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(3)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(786), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10759,73 +10764,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [4] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(802), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(4)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(787), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10873,73 +10878,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [5] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(819), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(5)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(797), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10987,73 +10992,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [6] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(813), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(6)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(809), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11101,73 +11106,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [7] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(827), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(7)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11215,73 +11220,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [8] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(731), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(8)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(700), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11329,73 +11334,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [9] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(733), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(9)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(654), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11440,76 +11445,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [10] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(740), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(10)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(817), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11557,73 +11562,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [11] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(712), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(11)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(819), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11671,23 +11676,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [12] = { + [STATE(12)] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_for_statement] = STATE(62), @@ -11695,49 +11700,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(62), [sym_with_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(671), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(824), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11782,76 +11787,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [13] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(747), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(13)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(721), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11899,73 +11904,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [14] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(750), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(14)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(718), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12013,73 +12018,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [15] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(752), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(15)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(665), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12124,76 +12129,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [16] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(729), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(16)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(696), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12238,76 +12243,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [17] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(715), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(17)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(829), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12355,73 +12360,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [18] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(768), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(18)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(830), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12469,23 +12474,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [19] = { + [STATE(19)] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_for_statement] = STATE(62), @@ -12493,49 +12498,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(62), [sym_with_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(673), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(706), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12580,76 +12585,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [20] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(680), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(20)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(2587), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12694,76 +12699,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [21] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(772), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(21)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(833), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12811,73 +12816,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [22] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(716), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(22)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(836), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12925,23 +12930,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [23] = { + [STATE(23)] = { [sym__statement] = STATE(70), [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(70), [sym_match_statement] = STATE(70), [sym_for_statement] = STATE(70), @@ -12949,49 +12954,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(70), [sym_with_statement] = STATE(70), [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(70), [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2552), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(2575), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13039,187 +13044,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [24] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(778), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), - [sym_string_start] = ACTIONS(81), - }, - [25] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(785), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(24)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(2517), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13264,76 +13155,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [26] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2528), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(25)] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(674), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13378,76 +13269,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [27] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2532), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(26)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(675), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13492,76 +13383,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [28] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(788), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(27)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(837), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13609,23 +13500,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [29] = { + [STATE(28)] = { [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_for_statement] = STATE(62), @@ -13633,49 +13524,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(62), [sym_with_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(678), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(838), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13720,76 +13611,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [30] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(1821), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(29)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(2570), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13834,76 +13725,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [31] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2573), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(30)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(1791), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13948,76 +13839,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [32] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2574), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(31)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(842), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14062,26 +13953,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [33] = { + [STATE(32)] = { [sym__statement] = STATE(70), [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(70), [sym_match_statement] = STATE(70), [sym_for_statement] = STATE(70), @@ -14089,49 +13980,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(70), [sym_with_statement] = STATE(70), [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(70), [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(2582), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(2532), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14179,73 +14070,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [34] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(620), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(33)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(617), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14290,26 +14181,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [35] = { + [STATE(34)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14317,49 +14208,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(714), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(613), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14404,26 +14295,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [36] = { + [STATE(35)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14431,49 +14322,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(780), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(714), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14518,26 +14409,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [37] = { + [STATE(36)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14545,49 +14436,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(793), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(733), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14632,26 +14523,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [38] = { + [STATE(37)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14659,49 +14550,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(803), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(734), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14746,26 +14637,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [39] = { + [STATE(38)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14773,49 +14664,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(762), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(741), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14860,26 +14751,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [40] = { + [STATE(39)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -14887,49 +14778,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(766), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(749), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14974,26 +14865,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [41] = { + [STATE(40)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15001,49 +14892,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(775), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(751), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15088,26 +14979,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [42] = { + [STATE(41)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15115,49 +15006,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(745), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(704), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15202,76 +15093,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [43] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(42)] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(659), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15319,73 +15210,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [44] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(698), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(43)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(756), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15433,23 +15324,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [45] = { + [STATE(44)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15457,49 +15348,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), + [sym_decorator] = STATE(1807), [sym_block] = STATE(758), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15544,26 +15435,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [46] = { + [STATE(45)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15571,49 +15462,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), + [sym_decorator] = STATE(1807), [sym_block] = STATE(761), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15658,26 +15549,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [47] = { + [STATE(46)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -15685,49 +15576,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(764), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(720), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15772,76 +15663,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [48] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(623), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(47)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(713), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15886,76 +15777,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [49] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(718), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(48)] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(702), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16000,76 +15891,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [50] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(789), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(49)] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(667), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16114,76 +16005,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, - [51] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(687), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(50)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(767), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16231,73 +16122,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [52] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(660), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(51)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(768), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16342,26 +16233,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [53] = { + [STATE(52)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -16369,49 +16260,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(797), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(699), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16456,26 +16347,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [54] = { + [STATE(53)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -16483,49 +16374,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(772), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16570,26 +16461,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [55] = { + [STATE(54)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -16597,49 +16488,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(806), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(776), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16684,76 +16575,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [56] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(834), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(55)] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(694), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16801,23 +16692,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [57] = { + [STATE(56)] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(695), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(115), + [sym_string_start] = ACTIONS(81), + }, + [STATE(57)] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -16825,49 +16830,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(835), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(778), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16912,76 +16917,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [58] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(675), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(58)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(780), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17029,73 +17034,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [59] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(681), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(59)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(782), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17140,76 +17145,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [60] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(1823), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(60)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(1772), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17257,73 +17262,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, - [61] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1836), - [sym_block] = STATE(679), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(61)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1807), + [sym_block] = STATE(2571), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17368,75 +17373,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [62] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(62)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17484,23 +17489,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(117), [sym_string_start] = ACTIONS(81), }, - [63] = { + [STATE(63)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), [sym_if_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_for_statement] = STATE(63), @@ -17508,161 +17513,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(63), [sym_with_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [sym_decorator] = STATE(1784), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_match] = ACTIONS(161), - [anon_sym_async] = ACTIONS(164), - [anon_sym_for] = ACTIONS(167), - [anon_sym_while] = ACTIONS(170), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(176), - [anon_sym_def] = ACTIONS(179), - [anon_sym_global] = ACTIONS(182), - [anon_sym_nonlocal] = ACTIONS(185), - [anon_sym_exec] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_class] = ACTIONS(194), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_AT] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_not] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(212), - [anon_sym_yield] = ACTIONS(215), - [sym_ellipsis] = ACTIONS(218), - [sym_integer] = ACTIONS(221), - [sym_float] = ACTIONS(218), - [anon_sym_await] = ACTIONS(224), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_none] = ACTIONS(221), + [aux_sym_decorated_definition_repeat1] = STATE(1784), + [ts_builtin_sym_end] = ACTIONS(119), + [sym_identifier] = ACTIONS(121), + [anon_sym_import] = ACTIONS(124), + [anon_sym_from] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_print] = ACTIONS(136), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_return] = ACTIONS(142), + [anon_sym_del] = ACTIONS(145), + [anon_sym_raise] = ACTIONS(148), + [anon_sym_pass] = ACTIONS(151), + [anon_sym_break] = ACTIONS(154), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_if] = ACTIONS(160), + [anon_sym_match] = ACTIONS(163), + [anon_sym_async] = ACTIONS(166), + [anon_sym_for] = ACTIONS(169), + [anon_sym_while] = ACTIONS(172), + [anon_sym_try] = ACTIONS(175), + [anon_sym_with] = ACTIONS(178), + [anon_sym_def] = ACTIONS(181), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), + [anon_sym_class] = ACTIONS(196), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_not] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(205), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [sym_integer] = ACTIONS(223), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(226), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_none] = ACTIONS(223), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(227), [sym_string_start] = ACTIONS(229), }, - [64] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [STATE(64)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1784), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1784), [ts_builtin_sym_end] = ACTIONS(232), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -17710,72 +17715,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(81), }, - [65] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(65)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17823,72 +17828,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(234), [sym_string_start] = ACTIONS(81), }, - [66] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(66)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(121), + [anon_sym_import] = ACTIONS(124), + [anon_sym_from] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_print] = ACTIONS(136), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_return] = ACTIONS(142), + [anon_sym_del] = ACTIONS(145), + [anon_sym_raise] = ACTIONS(148), + [anon_sym_pass] = ACTIONS(151), + [anon_sym_break] = ACTIONS(154), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_if] = ACTIONS(236), + [anon_sym_match] = ACTIONS(239), + [anon_sym_async] = ACTIONS(242), + [anon_sym_for] = ACTIONS(245), + [anon_sym_while] = ACTIONS(248), + [anon_sym_try] = ACTIONS(251), + [anon_sym_with] = ACTIONS(254), + [anon_sym_def] = ACTIONS(257), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), + [anon_sym_class] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_not] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(205), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [sym_integer] = ACTIONS(223), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(226), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_none] = ACTIONS(223), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(119), + [sym_string_start] = ACTIONS(229), + }, + [STATE(67)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17933,188 +18051,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(236), + [sym__dedent] = ACTIONS(263), [sym_string_start] = ACTIONS(81), }, - [67] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [ts_builtin_sym_end] = ACTIONS(227), - [sym_identifier] = ACTIONS(119), - [anon_sym_import] = ACTIONS(122), - [anon_sym_from] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_print] = ACTIONS(134), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_return] = ACTIONS(140), - [anon_sym_del] = ACTIONS(143), - [anon_sym_raise] = ACTIONS(146), - [anon_sym_pass] = ACTIONS(149), - [anon_sym_break] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_if] = ACTIONS(238), - [anon_sym_match] = ACTIONS(241), - [anon_sym_async] = ACTIONS(244), - [anon_sym_for] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_try] = ACTIONS(253), - [anon_sym_with] = ACTIONS(256), - [anon_sym_def] = ACTIONS(259), - [anon_sym_global] = ACTIONS(182), - [anon_sym_nonlocal] = ACTIONS(185), - [anon_sym_exec] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_class] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_AT] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_not] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_lambda] = ACTIONS(212), - [anon_sym_yield] = ACTIONS(215), - [sym_ellipsis] = ACTIONS(218), - [sym_integer] = ACTIONS(221), - [sym_float] = ACTIONS(218), - [anon_sym_await] = ACTIONS(224), - [sym_true] = ACTIONS(221), - [sym_false] = ACTIONS(221), - [sym_none] = ACTIONS(221), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(229), - }, - [68] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(68)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18162,72 +18167,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(265), [sym_string_start] = ACTIONS(81), }, - [69] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(69)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18275,72 +18280,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(267), [sym_string_start] = ACTIONS(81), }, - [70] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(70)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18388,72 +18393,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(269), [sym_string_start] = ACTIONS(81), }, - [71] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(71)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18501,72 +18506,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(271), [sym_string_start] = ACTIONS(81), }, - [72] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1836), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1836), + [STATE(72)] = { + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1807), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18614,42 +18619,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(273), [sym_string_start] = ACTIONS(81), }, - [73] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_type_parameter] = STATE(2062), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_type] = STATE(2248), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(73)] = { + [sym_named_expression] = STATE(1714), + [sym__named_expression_lhs] = STATE(2777), + [sym_type_parameter] = STATE(2224), + [sym_list_splat_pattern] = STATE(1294), + [sym_as_pattern] = STATE(1714), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(964), + [sym_not_operator] = STATE(1714), + [sym_boolean_operator] = STATE(1714), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_comparison_operator] = STATE(1714), + [sym_lambda] = STATE(1714), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_type] = STATE(2171), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_conditional_expression] = STATE(1714), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -18666,9 +18671,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(304), + [anon_sym_type] = ACTIONS(304), [anon_sym_LBRACK] = ACTIONS(306), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(308), @@ -18719,41 +18724,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(328), }, - [74] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_type] = STATE(2248), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(74)] = { + [sym_named_expression] = STATE(1714), + [sym__named_expression_lhs] = STATE(2777), + [sym_list_splat_pattern] = STATE(1294), + [sym_as_pattern] = STATE(1714), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(964), + [sym_not_operator] = STATE(1714), + [sym_boolean_operator] = STATE(1714), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_comparison_operator] = STATE(1714), + [sym_lambda] = STATE(1714), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_type] = STATE(2171), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_conditional_expression] = STATE(1714), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -18765,14 +18770,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), + [anon_sym_COLON] = ACTIONS(302), [anon_sym_match] = ACTIONS(297), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(299), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_exec] = ACTIONS(290), - [anon_sym_type] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(304), + [anon_sym_type] = ACTIONS(304), [anon_sym_LBRACK] = ACTIONS(330), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(308), @@ -18823,65 +18828,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(328), }, - [75] = { - [sym__simple_statements] = STATE(749), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(75)] = { + [sym__simple_statements] = STATE(827), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(642), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(643), + [sym_subscript] = STATE(643), + [sym_call] = STATE(1126), + [sym_type] = STATE(2204), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(333), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18923,65 +18928,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(357), [sym_string_start] = ACTIONS(81), }, - [76] = { - [sym__simple_statements] = STATE(767), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(76)] = { + [sym__simple_statements] = STATE(839), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(642), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(643), + [sym_subscript] = STATE(643), + [sym_call] = STATE(1126), + [sym_type] = STATE(2204), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(333), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19023,65 +19028,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(361), [sym_string_start] = ACTIONS(81), }, - [77] = { - [sym__simple_statements] = STATE(760), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(77)] = { + [sym__simple_statements] = STATE(766), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(642), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(643), + [sym_subscript] = STATE(643), + [sym_call] = STATE(1126), + [sym_type] = STATE(2204), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(333), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19123,65 +19128,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(365), [sym_string_start] = ACTIONS(81), }, - [78] = { - [sym__simple_statements] = STATE(798), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(78)] = { + [sym__simple_statements] = STATE(834), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(642), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(643), + [sym_subscript] = STATE(643), + [sym_call] = STATE(1126), + [sym_type] = STATE(2204), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(333), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19223,65 +19228,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(369), [sym_string_start] = ACTIONS(81), }, - [79] = { - [sym__simple_statements] = STATE(773), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(79)] = { + [sym__simple_statements] = STATE(774), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(642), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(643), + [sym_subscript] = STATE(643), + [sym_call] = STATE(1126), + [sym_type] = STATE(2204), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(333), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19323,65 +19328,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(373), [sym_string_start] = ACTIONS(81), }, - [80] = { - [sym__simple_statements] = STATE(779), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(80)] = { + [sym__simple_statements] = STATE(773), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(642), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(643), + [sym_subscript] = STATE(643), + [sym_call] = STATE(1126), + [sym_type] = STATE(2204), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(333), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19423,65 +19428,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(377), [sym_string_start] = ACTIONS(81), }, - [81] = { - [sym__simple_statements] = STATE(830), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(81)] = { + [sym__simple_statements] = STATE(835), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(642), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(643), + [sym_subscript] = STATE(643), + [sym_call] = STATE(1126), + [sym_type] = STATE(2204), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(333), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19523,65 +19528,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(381), [sym_string_start] = ACTIONS(81), }, - [82] = { - [sym__simple_statements] = STATE(786), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(640), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(641), - [sym_subscript] = STATE(641), - [sym_call] = STATE(1081), - [sym_type] = STATE(2109), - [sym_splat_type] = STATE(2098), - [sym_generic_type] = STATE(2098), - [sym_union_type] = STATE(2098), - [sym_constrained_type] = STATE(2098), - [sym_member_type] = STATE(2098), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(82)] = { + [sym__simple_statements] = STATE(781), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(642), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1673), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(643), + [sym_subscript] = STATE(643), + [sym_call] = STATE(1126), + [sym_type] = STATE(2204), + [sym_splat_type] = STATE(2161), + [sym_generic_type] = STATE(2161), + [sym_union_type] = STATE(2161), + [sym_constrained_type] = STATE(2161), + [sym_member_type] = STATE(2161), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(333), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19623,36 +19628,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(385), [sym_string_start] = ACTIONS(81), }, - [83] = { - [sym_chevron] = STATE(2156), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_list_splat_pattern] = STATE(1135), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(870), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(83)] = { + [sym_chevron] = STATE(2153), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_list_splat_pattern] = STATE(1084), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(867), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_attribute] = STATE(1126), + [sym_subscript] = STATE(1126), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(387), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19669,9 +19674,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(395), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_exec] = ACTIONS(395), [anon_sym_type] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(304), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(404), @@ -19722,36 +19727,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [84] = { - [sym_chevron] = STATE(2156), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_list_splat_pattern] = STATE(1135), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(870), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(84)] = { + [sym_chevron] = STATE(2153), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_list_splat_pattern] = STATE(1084), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(867), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_attribute] = STATE(1126), + [sym_subscript] = STATE(1126), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(387), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19763,14 +19768,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(397), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), + [anon_sym_COLON] = ACTIONS(302), [anon_sym_match] = ACTIONS(399), [anon_sym_async] = ACTIONS(395), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_exec] = ACTIONS(395), [anon_sym_type] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(304), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(404), @@ -19821,35 +19826,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [85] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(85)] = { + [sym_named_expression] = STATE(1714), + [sym__named_expression_lhs] = STATE(2777), + [sym_list_splat_pattern] = STATE(1294), + [sym_as_pattern] = STATE(1714), + [sym_expression] = STATE(1870), + [sym_primary_expression] = STATE(964), + [sym_not_operator] = STATE(1714), + [sym_boolean_operator] = STATE(1714), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_comparison_operator] = STATE(1714), + [sym_lambda] = STATE(1714), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_conditional_expression] = STATE(1714), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19861,14 +19866,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), + [anon_sym_COLON] = ACTIONS(302), [anon_sym_match] = ACTIONS(297), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_exec] = ACTIONS(290), [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(304), [anon_sym_LBRACK] = ACTIONS(330), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(308), @@ -19919,35 +19924,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(328), }, - [86] = { - [sym_named_expression] = STATE(1738), - [sym__named_expression_lhs] = STATE(2678), - [sym_list_splat_pattern] = STATE(1325), - [sym_as_pattern] = STATE(1738), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(971), - [sym_not_operator] = STATE(1738), - [sym_boolean_operator] = STATE(1738), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_comparison_operator] = STATE(1738), - [sym_lambda] = STATE(1738), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_conditional_expression] = STATE(1738), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(86)] = { + [sym_named_expression] = STATE(1714), + [sym__named_expression_lhs] = STATE(2777), + [sym_list_splat_pattern] = STATE(1294), + [sym_as_pattern] = STATE(1714), + [sym_expression] = STATE(1874), + [sym_primary_expression] = STATE(964), + [sym_not_operator] = STATE(1714), + [sym_boolean_operator] = STATE(1714), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_comparison_operator] = STATE(1714), + [sym_lambda] = STATE(1714), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_conditional_expression] = STATE(1714), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -19959,14 +19964,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), + [anon_sym_COLON] = ACTIONS(302), [anon_sym_match] = ACTIONS(297), [anon_sym_async] = ACTIONS(290), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_exec] = ACTIONS(290), [anon_sym_type] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(304), [anon_sym_LBRACK] = ACTIONS(330), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(308), @@ -20017,59 +20022,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(328), }, - [87] = { - [sym__simple_statements] = STATE(823), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(87)] = { + [sym__simple_statements] = STATE(759), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20110,59 +20115,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(423), [sym_string_start] = ACTIONS(81), }, - [88] = { - [sym__simple_statements] = STATE(832), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(88)] = { + [sym__simple_statements] = STATE(683), + [sym_import_statement] = STATE(2389), + [sym_future_import_statement] = STATE(2389), + [sym_import_from_statement] = STATE(2389), + [sym_print_statement] = STATE(2389), + [sym_assert_statement] = STATE(2389), + [sym_expression_statement] = STATE(2389), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2389), + [sym_delete_statement] = STATE(2389), + [sym_raise_statement] = STATE(2389), + [sym_pass_statement] = STATE(2389), + [sym_break_statement] = STATE(2389), + [sym_continue_statement] = STATE(2389), + [sym_global_statement] = STATE(2389), + [sym_nonlocal_statement] = STATE(2389), + [sym_exec_statement] = STATE(2389), + [sym_type_alias_statement] = STATE(2389), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2389), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20203,59 +20208,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(427), [sym_string_start] = ACTIONS(81), }, - [89] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(89)] = { + [sym__simple_statements] = STATE(744), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20296,59 +20301,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(431), [sym_string_start] = ACTIONS(81), }, - [90] = { - [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(90)] = { + [sym__simple_statements] = STATE(748), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20389,59 +20394,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(435), [sym_string_start] = ACTIONS(81), }, - [91] = { - [sym__simple_statements] = STATE(844), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(91)] = { + [sym__simple_statements] = STATE(620), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20482,59 +20487,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(439), [sym_string_start] = ACTIONS(81), }, - [92] = { - [sym__simple_statements] = STATE(615), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(92)] = { + [sym__simple_statements] = STATE(750), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20575,59 +20580,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(443), [sym_string_start] = ACTIONS(81), }, - [93] = { - [sym__simple_statements] = STATE(763), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(93)] = { + [sym__simple_statements] = STATE(788), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20668,59 +20673,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(447), [sym_string_start] = ACTIONS(81), }, - [94] = { - [sym__simple_statements] = STATE(809), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(94)] = { + [sym__simple_statements] = STATE(722), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20761,59 +20766,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(451), [sym_string_start] = ACTIONS(81), }, - [95] = { - [sym__simple_statements] = STATE(774), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(95)] = { + [sym__simple_statements] = STATE(715), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20854,59 +20859,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(455), [sym_string_start] = ACTIONS(81), }, - [96] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(96)] = { + [sym__simple_statements] = STATE(789), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20947,59 +20952,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(459), [sym_string_start] = ACTIONS(81), }, - [97] = { - [sym__simple_statements] = STATE(725), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(97)] = { + [sym__simple_statements] = STATE(655), + [sym_import_statement] = STATE(2282), + [sym_future_import_statement] = STATE(2282), + [sym_import_from_statement] = STATE(2282), + [sym_print_statement] = STATE(2282), + [sym_assert_statement] = STATE(2282), + [sym_expression_statement] = STATE(2282), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2282), + [sym_delete_statement] = STATE(2282), + [sym_raise_statement] = STATE(2282), + [sym_pass_statement] = STATE(2282), + [sym_break_statement] = STATE(2282), + [sym_continue_statement] = STATE(2282), + [sym_global_statement] = STATE(2282), + [sym_nonlocal_statement] = STATE(2282), + [sym_exec_statement] = STATE(2282), + [sym_type_alias_statement] = STATE(2282), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2282), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21040,59 +21045,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(463), [sym_string_start] = ACTIONS(81), }, - [98] = { - [sym__simple_statements] = STATE(709), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(98)] = { + [sym__simple_statements] = STATE(650), + [sym_import_statement] = STATE(2389), + [sym_future_import_statement] = STATE(2389), + [sym_import_from_statement] = STATE(2389), + [sym_print_statement] = STATE(2389), + [sym_assert_statement] = STATE(2389), + [sym_expression_statement] = STATE(2389), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2389), + [sym_delete_statement] = STATE(2389), + [sym_raise_statement] = STATE(2389), + [sym_pass_statement] = STATE(2389), + [sym_break_statement] = STATE(2389), + [sym_continue_statement] = STATE(2389), + [sym_global_statement] = STATE(2389), + [sym_nonlocal_statement] = STATE(2389), + [sym_exec_statement] = STATE(2389), + [sym_type_alias_statement] = STATE(2389), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2389), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21133,59 +21138,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(81), }, - [99] = { - [sym__simple_statements] = STATE(721), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(99)] = { + [sym__simple_statements] = STATE(645), + [sym_import_statement] = STATE(2414), + [sym_future_import_statement] = STATE(2414), + [sym_import_from_statement] = STATE(2414), + [sym_print_statement] = STATE(2414), + [sym_assert_statement] = STATE(2414), + [sym_expression_statement] = STATE(2414), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2414), + [sym_delete_statement] = STATE(2414), + [sym_raise_statement] = STATE(2414), + [sym_pass_statement] = STATE(2414), + [sym_break_statement] = STATE(2414), + [sym_continue_statement] = STATE(2414), + [sym_global_statement] = STATE(2414), + [sym_nonlocal_statement] = STATE(2414), + [sym_exec_statement] = STATE(2414), + [sym_type_alias_statement] = STATE(2414), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2414), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21226,59 +21231,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(81), }, - [100] = { - [sym__simple_statements] = STATE(746), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(100)] = { + [sym__simple_statements] = STATE(708), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21319,59 +21324,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(81), }, - [101] = { - [sym__simple_statements] = STATE(2540), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(101)] = { + [sym__simple_statements] = STATE(717), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21412,59 +21417,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(81), }, - [102] = { - [sym__simple_statements] = STATE(831), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(102)] = { + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21505,59 +21510,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(81), }, - [103] = { - [sym__simple_statements] = STATE(699), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(103)] = { + [sym__simple_statements] = STATE(760), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21598,59 +21603,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(81), }, - [104] = { - [sym__simple_statements] = STATE(686), - [sym_import_statement] = STATE(2429), - [sym_future_import_statement] = STATE(2429), - [sym_import_from_statement] = STATE(2429), - [sym_print_statement] = STATE(2429), - [sym_assert_statement] = STATE(2429), - [sym_expression_statement] = STATE(2429), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2429), - [sym_delete_statement] = STATE(2429), - [sym_raise_statement] = STATE(2429), - [sym_pass_statement] = STATE(2429), - [sym_break_statement] = STATE(2429), - [sym_continue_statement] = STATE(2429), - [sym_global_statement] = STATE(2429), - [sym_nonlocal_statement] = STATE(2429), - [sym_exec_statement] = STATE(2429), - [sym_type_alias_statement] = STATE(2429), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(104)] = { + [sym__simple_statements] = STATE(831), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21691,59 +21696,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(81), }, - [105] = { - [sym__simple_statements] = STATE(2539), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(105)] = { + [sym__simple_statements] = STATE(705), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21784,59 +21789,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(81), }, - [106] = { - [sym__simple_statements] = STATE(724), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(106)] = { + [sym__simple_statements] = STATE(668), + [sym_import_statement] = STATE(2282), + [sym_future_import_statement] = STATE(2282), + [sym_import_from_statement] = STATE(2282), + [sym_print_statement] = STATE(2282), + [sym_assert_statement] = STATE(2282), + [sym_expression_statement] = STATE(2282), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2282), + [sym_delete_statement] = STATE(2282), + [sym_raise_statement] = STATE(2282), + [sym_pass_statement] = STATE(2282), + [sym_break_statement] = STATE(2282), + [sym_continue_statement] = STATE(2282), + [sym_global_statement] = STATE(2282), + [sym_nonlocal_statement] = STATE(2282), + [sym_exec_statement] = STATE(2282), + [sym_type_alias_statement] = STATE(2282), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2282), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21877,59 +21882,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(81), }, - [107] = { - [sym__simple_statements] = STATE(826), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(107)] = { + [sym__simple_statements] = STATE(2585), + [sym_import_statement] = STATE(2359), + [sym_future_import_statement] = STATE(2359), + [sym_import_from_statement] = STATE(2359), + [sym_print_statement] = STATE(2359), + [sym_assert_statement] = STATE(2359), + [sym_expression_statement] = STATE(2359), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2359), + [sym_delete_statement] = STATE(2359), + [sym_raise_statement] = STATE(2359), + [sym_pass_statement] = STATE(2359), + [sym_break_statement] = STATE(2359), + [sym_continue_statement] = STATE(2359), + [sym_global_statement] = STATE(2359), + [sym_nonlocal_statement] = STATE(2359), + [sym_exec_statement] = STATE(2359), + [sym_type_alias_statement] = STATE(2359), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2359), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21970,59 +21975,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(618), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(108)] = { + [sym__simple_statements] = STATE(802), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22063,59 +22068,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(717), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(109)] = { + [sym__simple_statements] = STATE(2588), + [sym_import_statement] = STATE(2359), + [sym_future_import_statement] = STATE(2359), + [sym_import_from_statement] = STATE(2359), + [sym_print_statement] = STATE(2359), + [sym_assert_statement] = STATE(2359), + [sym_expression_statement] = STATE(2359), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2359), + [sym_delete_statement] = STATE(2359), + [sym_raise_statement] = STATE(2359), + [sym_pass_statement] = STATE(2359), + [sym_break_statement] = STATE(2359), + [sym_continue_statement] = STATE(2359), + [sym_global_statement] = STATE(2359), + [sym_nonlocal_statement] = STATE(2359), + [sym_exec_statement] = STATE(2359), + [sym_type_alias_statement] = STATE(2359), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2359), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22156,59 +22161,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(737), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(110)] = { + [sym__simple_statements] = STATE(656), + [sym_import_statement] = STATE(2326), + [sym_future_import_statement] = STATE(2326), + [sym_import_from_statement] = STATE(2326), + [sym_print_statement] = STATE(2326), + [sym_assert_statement] = STATE(2326), + [sym_expression_statement] = STATE(2326), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2326), + [sym_delete_statement] = STATE(2326), + [sym_raise_statement] = STATE(2326), + [sym_pass_statement] = STATE(2326), + [sym_break_statement] = STATE(2326), + [sym_continue_statement] = STATE(2326), + [sym_global_statement] = STATE(2326), + [sym_nonlocal_statement] = STATE(2326), + [sym_exec_statement] = STATE(2326), + [sym_type_alias_statement] = STATE(2326), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2326), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22249,59 +22254,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(732), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(111)] = { + [sym__simple_statements] = STATE(816), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22342,59 +22347,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(112)] = { + [sym__simple_statements] = STATE(806), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22435,59 +22440,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(113)] = { + [sym__simple_statements] = STATE(769), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22528,59 +22533,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(816), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(114)] = { + [sym__simple_statements] = STATE(820), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22621,59 +22626,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(651), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(115)] = { + [sym__simple_statements] = STATE(687), + [sym_import_statement] = STATE(2389), + [sym_future_import_statement] = STATE(2389), + [sym_import_from_statement] = STATE(2389), + [sym_print_statement] = STATE(2389), + [sym_assert_statement] = STATE(2389), + [sym_expression_statement] = STATE(2389), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2389), + [sym_delete_statement] = STATE(2389), + [sym_raise_statement] = STATE(2389), + [sym_pass_statement] = STATE(2389), + [sym_break_statement] = STATE(2389), + [sym_continue_statement] = STATE(2389), + [sym_global_statement] = STATE(2389), + [sym_nonlocal_statement] = STATE(2389), + [sym_exec_statement] = STATE(2389), + [sym_type_alias_statement] = STATE(2389), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2389), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22714,59 +22719,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(2521), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(116)] = { + [sym__simple_statements] = STATE(612), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22807,59 +22812,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(711), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(117)] = { + [sym__simple_statements] = STATE(701), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22900,59 +22905,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(783), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(118)] = { + [sym__simple_statements] = STATE(808), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22993,59 +22998,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(2554), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(119)] = { + [sym__simple_statements] = STATE(811), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23086,59 +23091,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(824), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(120)] = { + [sym__simple_statements] = STATE(821), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23179,59 +23184,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(690), - [sym_import_statement] = STATE(2403), - [sym_future_import_statement] = STATE(2403), - [sym_import_from_statement] = STATE(2403), - [sym_print_statement] = STATE(2403), - [sym_assert_statement] = STATE(2403), - [sym_expression_statement] = STATE(2403), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2403), - [sym_delete_statement] = STATE(2403), - [sym_raise_statement] = STATE(2403), - [sym_pass_statement] = STATE(2403), - [sym_break_statement] = STATE(2403), - [sym_continue_statement] = STATE(2403), - [sym_global_statement] = STATE(2403), - [sym_nonlocal_statement] = STATE(2403), - [sym_exec_statement] = STATE(2403), - [sym_type_alias_statement] = STATE(2403), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(121)] = { + [sym__simple_statements] = STATE(810), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23272,59 +23277,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(800), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(122)] = { + [sym__simple_statements] = STATE(2584), + [sym_import_statement] = STATE(2359), + [sym_future_import_statement] = STATE(2359), + [sym_import_from_statement] = STATE(2359), + [sym_print_statement] = STATE(2359), + [sym_assert_statement] = STATE(2359), + [sym_expression_statement] = STATE(2359), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2359), + [sym_delete_statement] = STATE(2359), + [sym_raise_statement] = STATE(2359), + [sym_pass_statement] = STATE(2359), + [sym_break_statement] = STATE(2359), + [sym_continue_statement] = STATE(2359), + [sym_global_statement] = STATE(2359), + [sym_nonlocal_statement] = STATE(2359), + [sym_exec_statement] = STATE(2359), + [sym_type_alias_statement] = STATE(2359), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2359), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23365,59 +23370,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(701), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(123)] = { + [sym__simple_statements] = STATE(791), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23458,59 +23463,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(665), - [sym_import_statement] = STATE(2300), - [sym_future_import_statement] = STATE(2300), - [sym_import_from_statement] = STATE(2300), - [sym_print_statement] = STATE(2300), - [sym_assert_statement] = STATE(2300), - [sym_expression_statement] = STATE(2300), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2300), - [sym_delete_statement] = STATE(2300), - [sym_raise_statement] = STATE(2300), - [sym_pass_statement] = STATE(2300), - [sym_break_statement] = STATE(2300), - [sym_continue_statement] = STATE(2300), - [sym_global_statement] = STATE(2300), - [sym_nonlocal_statement] = STATE(2300), - [sym_exec_statement] = STATE(2300), - [sym_type_alias_statement] = STATE(2300), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(124)] = { + [sym__simple_statements] = STATE(725), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23551,59 +23556,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(81), }, - [125] = { - [sym__simple_statements] = STATE(833), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(125)] = { + [sym__simple_statements] = STATE(2523), + [sym_import_statement] = STATE(2359), + [sym_future_import_statement] = STATE(2359), + [sym_import_from_statement] = STATE(2359), + [sym_print_statement] = STATE(2359), + [sym_assert_statement] = STATE(2359), + [sym_expression_statement] = STATE(2359), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2359), + [sym_delete_statement] = STATE(2359), + [sym_raise_statement] = STATE(2359), + [sym_pass_statement] = STATE(2359), + [sym_break_statement] = STATE(2359), + [sym_continue_statement] = STATE(2359), + [sym_global_statement] = STATE(2359), + [sym_nonlocal_statement] = STATE(2359), + [sym_exec_statement] = STATE(2359), + [sym_type_alias_statement] = STATE(2359), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2359), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23644,59 +23649,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(81), }, - [126] = { - [sym__simple_statements] = STATE(1829), - [sym_import_statement] = STATE(2463), - [sym_future_import_statement] = STATE(2463), - [sym_import_from_statement] = STATE(2463), - [sym_print_statement] = STATE(2463), - [sym_assert_statement] = STATE(2463), - [sym_expression_statement] = STATE(2463), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2463), - [sym_delete_statement] = STATE(2463), - [sym_raise_statement] = STATE(2463), - [sym_pass_statement] = STATE(2463), - [sym_break_statement] = STATE(2463), - [sym_continue_statement] = STATE(2463), - [sym_global_statement] = STATE(2463), - [sym_nonlocal_statement] = STATE(2463), - [sym_exec_statement] = STATE(2463), - [sym_type_alias_statement] = STATE(2463), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(126)] = { + [sym__simple_statements] = STATE(2576), + [sym_import_statement] = STATE(2359), + [sym_future_import_statement] = STATE(2359), + [sym_import_from_statement] = STATE(2359), + [sym_print_statement] = STATE(2359), + [sym_assert_statement] = STATE(2359), + [sym_expression_statement] = STATE(2359), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2359), + [sym_delete_statement] = STATE(2359), + [sym_raise_statement] = STATE(2359), + [sym_pass_statement] = STATE(2359), + [sym_break_statement] = STATE(2359), + [sym_continue_statement] = STATE(2359), + [sym_global_statement] = STATE(2359), + [sym_nonlocal_statement] = STATE(2359), + [sym_exec_statement] = STATE(2359), + [sym_type_alias_statement] = STATE(2359), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2359), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23737,59 +23742,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(81), }, - [127] = { - [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2346), - [sym_future_import_statement] = STATE(2346), - [sym_import_from_statement] = STATE(2346), - [sym_print_statement] = STATE(2346), - [sym_assert_statement] = STATE(2346), - [sym_expression_statement] = STATE(2346), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2346), - [sym_delete_statement] = STATE(2346), - [sym_raise_statement] = STATE(2346), - [sym_pass_statement] = STATE(2346), - [sym_break_statement] = STATE(2346), - [sym_continue_statement] = STATE(2346), - [sym_global_statement] = STATE(2346), - [sym_nonlocal_statement] = STATE(2346), - [sym_exec_statement] = STATE(2346), - [sym_type_alias_statement] = STATE(2346), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(127)] = { + [sym__simple_statements] = STATE(777), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23830,59 +23835,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(81), }, - [128] = { - [sym__simple_statements] = STATE(756), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(128)] = { + [sym__simple_statements] = STATE(710), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23923,59 +23928,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(81), }, - [129] = { - [sym__simple_statements] = STATE(743), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(129)] = { + [sym__simple_statements] = STATE(1802), + [sym_import_statement] = STATE(2489), + [sym_future_import_statement] = STATE(2489), + [sym_import_from_statement] = STATE(2489), + [sym_print_statement] = STATE(2489), + [sym_assert_statement] = STATE(2489), + [sym_expression_statement] = STATE(2489), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2489), + [sym_delete_statement] = STATE(2489), + [sym_raise_statement] = STATE(2489), + [sym_pass_statement] = STATE(2489), + [sym_break_statement] = STATE(2489), + [sym_continue_statement] = STATE(2489), + [sym_global_statement] = STATE(2489), + [sym_nonlocal_statement] = STATE(2489), + [sym_exec_statement] = STATE(2489), + [sym_type_alias_statement] = STATE(2489), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2489), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24016,59 +24021,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(81), }, - [130] = { - [sym__simple_statements] = STATE(839), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(130)] = { + [sym__simple_statements] = STATE(735), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24109,59 +24114,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(81), }, - [131] = { - [sym__simple_statements] = STATE(734), - [sym_import_statement] = STATE(2457), - [sym_future_import_statement] = STATE(2457), - [sym_import_from_statement] = STATE(2457), - [sym_print_statement] = STATE(2457), - [sym_assert_statement] = STATE(2457), - [sym_expression_statement] = STATE(2457), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2457), - [sym_delete_statement] = STATE(2457), - [sym_raise_statement] = STATE(2457), - [sym_pass_statement] = STATE(2457), - [sym_break_statement] = STATE(2457), - [sym_continue_statement] = STATE(2457), - [sym_global_statement] = STATE(2457), - [sym_nonlocal_statement] = STATE(2457), - [sym_exec_statement] = STATE(2457), - [sym_type_alias_statement] = STATE(2457), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(131)] = { + [sym__simple_statements] = STATE(736), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24202,59 +24207,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(81), }, - [132] = { - [sym__simple_statements] = STATE(1807), - [sym_import_statement] = STATE(2463), - [sym_future_import_statement] = STATE(2463), - [sym_import_from_statement] = STATE(2463), - [sym_print_statement] = STATE(2463), - [sym_assert_statement] = STATE(2463), - [sym_expression_statement] = STATE(2463), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2463), - [sym_delete_statement] = STATE(2463), - [sym_raise_statement] = STATE(2463), - [sym_pass_statement] = STATE(2463), - [sym_break_statement] = STATE(2463), - [sym_continue_statement] = STATE(2463), - [sym_global_statement] = STATE(2463), - [sym_nonlocal_statement] = STATE(2463), - [sym_exec_statement] = STATE(2463), - [sym_type_alias_statement] = STATE(2463), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(132)] = { + [sym__simple_statements] = STATE(2531), + [sym_import_statement] = STATE(2359), + [sym_future_import_statement] = STATE(2359), + [sym_import_from_statement] = STATE(2359), + [sym_print_statement] = STATE(2359), + [sym_assert_statement] = STATE(2359), + [sym_expression_statement] = STATE(2359), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2359), + [sym_delete_statement] = STATE(2359), + [sym_raise_statement] = STATE(2359), + [sym_pass_statement] = STATE(2359), + [sym_break_statement] = STATE(2359), + [sym_continue_statement] = STATE(2359), + [sym_global_statement] = STATE(2359), + [sym_nonlocal_statement] = STATE(2359), + [sym_exec_statement] = STATE(2359), + [sym_type_alias_statement] = STATE(2359), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2359), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24295,59 +24300,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(81), }, - [133] = { - [sym__simple_statements] = STATE(807), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(133)] = { + [sym__simple_statements] = STATE(1812), + [sym_import_statement] = STATE(2489), + [sym_future_import_statement] = STATE(2489), + [sym_import_from_statement] = STATE(2489), + [sym_print_statement] = STATE(2489), + [sym_assert_statement] = STATE(2489), + [sym_expression_statement] = STATE(2489), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2489), + [sym_delete_statement] = STATE(2489), + [sym_raise_statement] = STATE(2489), + [sym_pass_statement] = STATE(2489), + [sym_break_statement] = STATE(2489), + [sym_continue_statement] = STATE(2489), + [sym_global_statement] = STATE(2489), + [sym_nonlocal_statement] = STATE(2489), + [sym_exec_statement] = STATE(2489), + [sym_type_alias_statement] = STATE(2489), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2489), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24388,59 +24393,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(81), }, - [134] = { - [sym__simple_statements] = STATE(2576), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(134)] = { + [sym__simple_statements] = STATE(719), + [sym_import_statement] = STATE(2388), + [sym_future_import_statement] = STATE(2388), + [sym_import_from_statement] = STATE(2388), + [sym_print_statement] = STATE(2388), + [sym_assert_statement] = STATE(2388), + [sym_expression_statement] = STATE(2388), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2388), + [sym_delete_statement] = STATE(2388), + [sym_raise_statement] = STATE(2388), + [sym_pass_statement] = STATE(2388), + [sym_break_statement] = STATE(2388), + [sym_continue_statement] = STATE(2388), + [sym_global_statement] = STATE(2388), + [sym_nonlocal_statement] = STATE(2388), + [sym_exec_statement] = STATE(2388), + [sym_type_alias_statement] = STATE(2388), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2388), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24481,59 +24486,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, - [135] = { - [sym__simple_statements] = STATE(2529), - [sym_import_statement] = STATE(2374), - [sym_future_import_statement] = STATE(2374), - [sym_import_from_statement] = STATE(2374), - [sym_print_statement] = STATE(2374), - [sym_assert_statement] = STATE(2374), - [sym_expression_statement] = STATE(2374), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2374), - [sym_delete_statement] = STATE(2374), - [sym_raise_statement] = STATE(2374), - [sym_pass_statement] = STATE(2374), - [sym_break_statement] = STATE(2374), - [sym_continue_statement] = STATE(2374), - [sym_global_statement] = STATE(2374), - [sym_nonlocal_statement] = STATE(2374), - [sym_exec_statement] = STATE(2374), - [sym_type_alias_statement] = STATE(2374), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(135)] = { + [sym__simple_statements] = STATE(716), + [sym_import_statement] = STATE(2492), + [sym_future_import_statement] = STATE(2492), + [sym_import_from_statement] = STATE(2492), + [sym_print_statement] = STATE(2492), + [sym_assert_statement] = STATE(2492), + [sym_expression_statement] = STATE(2492), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2492), + [sym_delete_statement] = STATE(2492), + [sym_raise_statement] = STATE(2492), + [sym_pass_statement] = STATE(2492), + [sym_break_statement] = STATE(2492), + [sym_continue_statement] = STATE(2492), + [sym_global_statement] = STATE(2492), + [sym_nonlocal_statement] = STATE(2492), + [sym_exec_statement] = STATE(2492), + [sym_type_alias_statement] = STATE(2492), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2492), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24574,59 +24579,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, - [136] = { - [sym__simple_statements] = STATE(705), - [sym_import_statement] = STATE(2305), - [sym_future_import_statement] = STATE(2305), - [sym_import_from_statement] = STATE(2305), - [sym_print_statement] = STATE(2305), - [sym_assert_statement] = STATE(2305), - [sym_expression_statement] = STATE(2305), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2305), - [sym_delete_statement] = STATE(2305), - [sym_raise_statement] = STATE(2305), - [sym_pass_statement] = STATE(2305), - [sym_break_statement] = STATE(2305), - [sym_continue_statement] = STATE(2305), - [sym_global_statement] = STATE(2305), - [sym_nonlocal_statement] = STATE(2305), - [sym_exec_statement] = STATE(2305), - [sym_type_alias_statement] = STATE(2305), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(136)] = { + [sym__simple_statements] = STATE(671), + [sym_import_statement] = STATE(2282), + [sym_future_import_statement] = STATE(2282), + [sym_import_from_statement] = STATE(2282), + [sym_print_statement] = STATE(2282), + [sym_assert_statement] = STATE(2282), + [sym_expression_statement] = STATE(2282), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2282), + [sym_delete_statement] = STATE(2282), + [sym_raise_statement] = STATE(2282), + [sym_pass_statement] = STATE(2282), + [sym_break_statement] = STATE(2282), + [sym_continue_statement] = STATE(2282), + [sym_global_statement] = STATE(2282), + [sym_nonlocal_statement] = STATE(2282), + [sym_exec_statement] = STATE(2282), + [sym_type_alias_statement] = STATE(2282), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2282), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24667,58 +24672,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(619), [sym_string_start] = ACTIONS(81), }, - [137] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(137)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24758,58 +24763,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(621), [sym_string_start] = ACTIONS(81), }, - [138] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(138)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24849,58 +24854,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(623), [sym_string_start] = ACTIONS(81), }, - [139] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(139)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24940,58 +24945,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(625), [sym_string_start] = ACTIONS(81), }, - [140] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(140)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25031,58 +25036,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(627), [sym_string_start] = ACTIONS(81), }, - [141] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(141)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25122,58 +25127,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(629), [sym_string_start] = ACTIONS(81), }, - [142] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(142)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25213,58 +25218,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(631), [sym_string_start] = ACTIONS(81), }, - [143] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(143)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25304,58 +25309,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(633), [sym_string_start] = ACTIONS(81), }, - [144] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(144)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25395,58 +25400,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(635), [sym_string_start] = ACTIONS(81), }, - [145] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(145)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25486,58 +25491,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(637), [sym_string_start] = ACTIONS(81), }, - [146] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(146)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25577,58 +25582,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(639), [sym_string_start] = ACTIONS(81), }, - [147] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(147)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25668,58 +25673,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(641), [sym_string_start] = ACTIONS(81), }, - [148] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(148)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25759,58 +25764,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(643), [sym_string_start] = ACTIONS(81), }, - [149] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(149)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25850,58 +25855,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(645), [sym_string_start] = ACTIONS(81), }, - [150] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(150)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25941,58 +25946,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(647), [sym_string_start] = ACTIONS(81), }, - [151] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(151)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26032,58 +26037,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(649), [sym_string_start] = ACTIONS(81), }, - [152] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(152)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26123,58 +26128,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(651), [sym_string_start] = ACTIONS(81), }, - [153] = { - [sym_import_statement] = STATE(2557), - [sym_future_import_statement] = STATE(2557), - [sym_import_from_statement] = STATE(2557), - [sym_print_statement] = STATE(2557), - [sym_assert_statement] = STATE(2557), - [sym_expression_statement] = STATE(2557), - [sym_named_expression] = STATE(1679), - [sym__named_expression_lhs] = STATE(2672), - [sym_return_statement] = STATE(2557), - [sym_delete_statement] = STATE(2557), - [sym_raise_statement] = STATE(2557), - [sym_pass_statement] = STATE(2557), - [sym_break_statement] = STATE(2557), - [sym_continue_statement] = STATE(2557), - [sym_global_statement] = STATE(2557), - [sym_nonlocal_statement] = STATE(2557), - [sym_exec_statement] = STATE(2557), - [sym_type_alias_statement] = STATE(2557), - [sym_pattern] = STATE(1652), - [sym_tuple_pattern] = STATE(1650), - [sym_list_pattern] = STATE(1650), - [sym_list_splat_pattern] = STATE(645), - [sym_as_pattern] = STATE(1679), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(968), - [sym_not_operator] = STATE(1679), - [sym_boolean_operator] = STATE(1679), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_comparison_operator] = STATE(1679), - [sym_lambda] = STATE(1679), - [sym_assignment] = STATE(2604), - [sym_augmented_assignment] = STATE(2604), - [sym_pattern_list] = STATE(1660), - [sym_yield] = STATE(2604), - [sym_attribute] = STATE(646), - [sym_subscript] = STATE(646), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_conditional_expression] = STATE(1679), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(153)] = { + [sym_import_statement] = STATE(2506), + [sym_future_import_statement] = STATE(2506), + [sym_import_from_statement] = STATE(2506), + [sym_print_statement] = STATE(2506), + [sym_assert_statement] = STATE(2506), + [sym_expression_statement] = STATE(2506), + [sym_named_expression] = STATE(1640), + [sym__named_expression_lhs] = STATE(2769), + [sym_return_statement] = STATE(2506), + [sym_delete_statement] = STATE(2506), + [sym_raise_statement] = STATE(2506), + [sym_pass_statement] = STATE(2506), + [sym_break_statement] = STATE(2506), + [sym_continue_statement] = STATE(2506), + [sym_global_statement] = STATE(2506), + [sym_nonlocal_statement] = STATE(2506), + [sym_exec_statement] = STATE(2506), + [sym_type_alias_statement] = STATE(2506), + [sym_pattern] = STATE(1616), + [sym_tuple_pattern] = STATE(1619), + [sym_list_pattern] = STATE(1619), + [sym_list_splat_pattern] = STATE(641), + [sym_as_pattern] = STATE(1640), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1640), + [sym_boolean_operator] = STATE(1640), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_comparison_operator] = STATE(1640), + [sym_lambda] = STATE(1640), + [sym_assignment] = STATE(2506), + [sym_augmented_assignment] = STATE(2568), + [sym_pattern_list] = STATE(1624), + [sym_yield] = STATE(2568), + [sym_attribute] = STATE(638), + [sym_subscript] = STATE(638), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_conditional_expression] = STATE(1640), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26213,26 +26218,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(81), }, - [154] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(154)] = { + [sym_list_splat_pattern] = STATE(1084), + [sym_primary_expression] = STATE(971), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_attribute] = STATE(1126), + [sym_subscript] = STATE(1126), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26244,14 +26249,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(304), + [anon_sym_COLON] = ACTIONS(294), [anon_sym_match] = ACTIONS(659), [anon_sym_async] = ACTIONS(657), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_exec] = ACTIONS(657), [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(304), [anon_sym_LBRACK] = ACTIONS(661), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(663), @@ -26301,26 +26306,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [155] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(155)] = { + [sym_list_splat_pattern] = STATE(1084), + [sym_primary_expression] = STATE(971), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_attribute] = STATE(1126), + [sym_subscript] = STATE(1126), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26332,14 +26337,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), + [anon_sym_COLON] = ACTIONS(302), [anon_sym_match] = ACTIONS(659), [anon_sym_async] = ACTIONS(657), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(302), [anon_sym_exec] = ACTIONS(657), [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(304), [anon_sym_LBRACK] = ACTIONS(661), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(663), @@ -26389,26 +26394,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [156] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(156)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), [anon_sym_SEMI] = ACTIONS(667), [anon_sym_DOT] = ACTIONS(669), @@ -26424,9 +26429,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(678), [anon_sym_in] = ACTIONS(674), [anon_sym_STAR_STAR] = ACTIONS(669), + [anon_sym_EQ] = ACTIONS(674), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(682), [anon_sym_AT] = ACTIONS(669), [anon_sym_DASH] = ACTIONS(684), @@ -26476,26 +26481,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(667), [sym_string_start] = ACTIONS(328), }, - [157] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), - [sym_string] = STATE(969), - [sym_await] = STATE(1081), + [STATE(157)] = { + [sym_list_splat_pattern] = STATE(1084), + [sym_primary_expression] = STATE(971), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_attribute] = STATE(1126), + [sym_subscript] = STATE(1126), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -26513,9 +26518,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(657), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), [anon_sym_exec] = ACTIONS(657), [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(661), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(65), @@ -26552,176 +26557,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [158] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(704), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [159] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_from] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(667), - [sym_string_start] = ACTIONS(328), - }, - [160] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(158)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), [anon_sym_DOT] = ACTIONS(669), [anon_sym_LPAREN] = ACTIONS(672), @@ -26729,21 +26584,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(674), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(688), [anon_sym_if] = ACTIONS(674), [anon_sym_COLON] = ACTIONS(667), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), [anon_sym_for] = ACTIONS(674), [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(674), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(688), [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(688), [anon_sym_LBRACE] = ACTIONS(311), [anon_sym_RBRACE] = ACTIONS(667), [anon_sym_PLUS] = ACTIONS(316), @@ -26751,11 +26606,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(674), [anon_sym_or] = ACTIONS(674), [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH_SLASH] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), [anon_sym_TILDE] = ACTIONS(316), [anon_sym_is] = ACTIONS(674), [anon_sym_LT] = ACTIONS(674), @@ -26777,126 +26632,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(328), }, - [161] = { - [sym_list_splat_pattern] = STATE(1135), - [sym_primary_expression] = STATE(976), - [sym_binary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_attribute] = STATE(1081), - [sym_subscript] = STATE(1081), - [sym_call] = STATE(1081), - [sym_list] = STATE(1081), - [sym_set] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_dictionary] = STATE(1081), - [sym_list_comprehension] = STATE(1081), - [sym_dictionary_comprehension] = STATE(1081), - [sym_set_comprehension] = STATE(1081), - [sym_generator_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenated_string] = STATE(1081), + [STATE(159)] = { + [sym_list_splat_pattern] = STATE(1238), + [sym_primary_expression] = STATE(994), + [sym_binary_operator] = STATE(1138), + [sym_unary_operator] = STATE(1138), + [sym_attribute] = STATE(1138), + [sym_subscript] = STATE(1138), + [sym_call] = STATE(1138), + [sym_list] = STATE(1138), + [sym_set] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_dictionary] = STATE(1138), + [sym_list_comprehension] = STATE(1138), + [sym_dictionary_comprehension] = STATE(1138), + [sym_set_comprehension] = STATE(1138), + [sym_generator_expression] = STATE(1138), + [sym_parenthesized_expression] = STATE(1138), + [sym_concatenated_string] = STATE(1138), [sym_string] = STATE(969), - [sym_await] = STATE(1081), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(655), - [anon_sym_print] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(659), - [anon_sym_async] = ACTIONS(657), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(657), - [anon_sym_type] = ACTIONS(659), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(665), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(277), - [sym_string_start] = ACTIONS(81), - }, - [162] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), + [sym_await] = STATE(1138), + [sym_identifier] = ACTIONS(691), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(693), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_print] = ACTIONS(697), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), + [anon_sym_match] = ACTIONS(699), + [anon_sym_async] = ACTIONS(697), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_exec] = ACTIONS(697), + [anon_sym_type] = ACTIONS(699), + [anon_sym_LBRACK] = ACTIONS(701), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(703), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(703), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -26906,7 +26686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(703), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -26915,63 +26695,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(704), + [sym_ellipsis] = ACTIONS(707), [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), + [sym_integer] = ACTIONS(691), + [sym_float] = ACTIONS(707), + [anon_sym_await] = ACTIONS(709), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_none] = ACTIONS(691), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [163] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [sym_string_start] = ACTIONS(711), + }, + [STATE(160)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_DOT] = ACTIONS(669), + [anon_sym_from] = ACTIONS(674), [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(667), + [anon_sym_as] = ACTIONS(674), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_else] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_if] = ACTIONS(674), + [anon_sym_COLON] = ACTIONS(667), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_in] = ACTIONS(674), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(674), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(277), + [anon_sym_AT] = ACTIONS(688), [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(688), [anon_sym_LBRACE] = ACTIONS(311), [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_not] = ACTIONS(674), + [anon_sym_and] = ACTIONS(674), + [anon_sym_or] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH_SLASH] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(316), + [anon_sym_is] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_LT_EQ] = ACTIONS(667), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_GT_EQ] = ACTIONS(667), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_LT_GT] = ACTIONS(667), + [sym_ellipsis] = ACTIONS(322), + [sym_integer] = ACTIONS(324), + [sym_float] = ACTIONS(322), + [anon_sym_await] = ACTIONS(686), + [sym_true] = ACTIONS(324), + [sym_false] = ACTIONS(324), + [sym_none] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(667), + [sym_string_start] = ACTIONS(328), + }, + [STATE(161)] = { + [sym_list_splat_pattern] = STATE(1084), + [sym_primary_expression] = STATE(971), + [sym_binary_operator] = STATE(1126), + [sym_unary_operator] = STATE(1126), + [sym_attribute] = STATE(1126), + [sym_subscript] = STATE(1126), + [sym_call] = STATE(1126), + [sym_list] = STATE(1126), + [sym_set] = STATE(1126), + [sym_tuple] = STATE(1126), + [sym_dictionary] = STATE(1126), + [sym_list_comprehension] = STATE(1126), + [sym_dictionary_comprehension] = STATE(1126), + [sym_set_comprehension] = STATE(1126), + [sym_generator_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_concatenated_string] = STATE(1126), + [sym_string] = STATE(962), + [sym_await] = STATE(1126), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_from] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_print] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_match] = ACTIONS(659), + [anon_sym_async] = ACTIONS(657), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(657), + [anon_sym_type] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(661), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -26981,7 +26836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(316), + [anon_sym_TILDE] = ACTIONS(65), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -26990,111 +26845,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(665), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(328), + [sym__newline] = ACTIONS(277), + [sym_string_start] = ACTIONS(81), }, - [164] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(710), + [STATE(162)] = { + [sym_list_splat_pattern] = STATE(1238), + [sym_primary_expression] = STATE(994), + [sym_binary_operator] = STATE(1138), + [sym_unary_operator] = STATE(1138), + [sym_attribute] = STATE(1138), + [sym_subscript] = STATE(1138), + [sym_call] = STATE(1138), + [sym_list] = STATE(1138), + [sym_set] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_dictionary] = STATE(1138), + [sym_list_comprehension] = STATE(1138), + [sym_dictionary_comprehension] = STATE(1138), + [sym_set_comprehension] = STATE(1138), + [sym_generator_expression] = STATE(1138), + [sym_parenthesized_expression] = STATE(1138), + [sym_concatenated_string] = STATE(1138), + [sym_string] = STATE(969), + [sym_await] = STATE(1138), + [sym_identifier] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_print] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(700), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(704), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_match] = ACTIONS(699), + [anon_sym_async] = ACTIONS(697), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(697), + [anon_sym_type] = ACTIONS(699), + [anon_sym_LBRACK] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(707), + [sym_type_conversion] = ACTIONS(277), + [sym_integer] = ACTIONS(691), + [sym_float] = ACTIONS(707), + [anon_sym_await] = ACTIONS(709), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_none] = ACTIONS(691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(711), + }, + [STATE(163)] = { + [sym_list_splat_pattern] = STATE(1238), + [sym_primary_expression] = STATE(994), + [sym_binary_operator] = STATE(1138), + [sym_unary_operator] = STATE(1138), + [sym_attribute] = STATE(1138), + [sym_subscript] = STATE(1138), + [sym_call] = STATE(1138), + [sym_list] = STATE(1138), + [sym_set] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_dictionary] = STATE(1138), + [sym_list_comprehension] = STATE(1138), + [sym_dictionary_comprehension] = STATE(1138), + [sym_set_comprehension] = STATE(1138), + [sym_generator_expression] = STATE(1138), + [sym_parenthesized_expression] = STATE(1138), + [sym_concatenated_string] = STATE(1138), + [sym_string] = STATE(969), + [sym_await] = STATE(1138), + [sym_identifier] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_print] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_match] = ACTIONS(699), + [anon_sym_async] = ACTIONS(697), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(697), + [anon_sym_type] = ACTIONS(699), + [anon_sym_LBRACK] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(707), + [sym_type_conversion] = ACTIONS(277), + [sym_integer] = ACTIONS(691), + [sym_float] = ACTIONS(707), + [anon_sym_await] = ACTIONS(709), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_none] = ACTIONS(691), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [165] = { - [sym_list_splat_pattern] = STATE(1229), - [sym_primary_expression] = STATE(999), - [sym_binary_operator] = STATE(1152), - [sym_unary_operator] = STATE(1152), - [sym_attribute] = STATE(1152), - [sym_subscript] = STATE(1152), - [sym_call] = STATE(1152), - [sym_list] = STATE(1152), - [sym_set] = STATE(1152), - [sym_tuple] = STATE(1152), - [sym_dictionary] = STATE(1152), - [sym_list_comprehension] = STATE(1152), - [sym_dictionary_comprehension] = STATE(1152), - [sym_set_comprehension] = STATE(1152), - [sym_generator_expression] = STATE(1152), - [sym_parenthesized_expression] = STATE(1152), - [sym_concatenated_string] = STATE(1152), - [sym_string] = STATE(980), - [sym_await] = STATE(1152), + [sym_string_start] = ACTIONS(711), + }, + [STATE(164)] = { + [sym_list_splat_pattern] = STATE(1142), + [sym_primary_expression] = STATE(1000), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(985), + [sym_await] = STATE(1268), [sym_identifier] = ACTIONS(713), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(715), @@ -27114,11 +27045,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(719), [anon_sym_type] = ACTIONS(721), [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_PLUS] = ACTIONS(725), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), @@ -27149,125 +27080,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(733), }, - [166] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), + [STATE(165)] = { + [sym_list_splat_pattern] = STATE(1326), + [sym_primary_expression] = STATE(1101), + [sym_binary_operator] = STATE(1343), + [sym_unary_operator] = STATE(1343), + [sym_attribute] = STATE(1343), + [sym_subscript] = STATE(1343), + [sym_call] = STATE(1343), + [sym_list] = STATE(1343), + [sym_set] = STATE(1343), + [sym_tuple] = STATE(1343), + [sym_dictionary] = STATE(1343), + [sym_list_comprehension] = STATE(1343), + [sym_dictionary_comprehension] = STATE(1343), + [sym_set_comprehension] = STATE(1343), + [sym_generator_expression] = STATE(1343), + [sym_parenthesized_expression] = STATE(1343), + [sym_concatenated_string] = STATE(1343), + [sym_string] = STATE(1028), + [sym_await] = STATE(1343), [sym_identifier] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(743), - [anon_sym_async] = ACTIONS(741), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(710), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [167] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(737), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_print] = ACTIONS(741), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), + [anon_sym_match] = ACTIONS(743), + [anon_sym_async] = ACTIONS(741), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_exec] = ACTIONS(741), + [anon_sym_type] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(747), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(749), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27277,7 +27134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(749), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27286,80 +27143,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), + [sym_ellipsis] = ACTIONS(753), + [sym_integer] = ACTIONS(735), + [sym_float] = ACTIONS(753), + [anon_sym_await] = ACTIONS(755), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_none] = ACTIONS(735), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [168] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [sym_string_start] = ACTIONS(757), + }, + [STATE(166)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), - [anon_sym_DOT] = ACTIONS(669), + [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_as] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), - [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(311), [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_not] = ACTIONS(674), - [anon_sym_and] = ACTIONS(674), - [anon_sym_or] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_is] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_LT_EQ] = ACTIONS(667), - [anon_sym_EQ_EQ] = ACTIONS(667), - [anon_sym_BANG_EQ] = ACTIONS(667), - [anon_sym_GT_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_LT_GT] = ACTIONS(667), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), [sym_ellipsis] = ACTIONS(322), [sym_integer] = ACTIONS(324), [sym_float] = ACTIONS(322), @@ -27371,51 +27228,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(328), }, - [169] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), + [STATE(167)] = { + [sym_list_splat_pattern] = STATE(1157), + [sym_primary_expression] = STATE(996), + [sym_binary_operator] = STATE(1147), + [sym_unary_operator] = STATE(1147), + [sym_attribute] = STATE(1147), + [sym_subscript] = STATE(1147), + [sym_call] = STATE(1147), + [sym_list] = STATE(1147), + [sym_set] = STATE(1147), + [sym_tuple] = STATE(1147), + [sym_dictionary] = STATE(1147), + [sym_list_comprehension] = STATE(1147), + [sym_dictionary_comprehension] = STATE(1147), + [sym_set_comprehension] = STATE(1147), + [sym_generator_expression] = STATE(1147), + [sym_parenthesized_expression] = STATE(1147), + [sym_concatenated_string] = STATE(1147), + [sym_string] = STATE(972), + [sym_await] = STATE(1147), + [sym_identifier] = ACTIONS(759), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(761), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_print] = ACTIONS(765), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), + [anon_sym_match] = ACTIONS(767), + [anon_sym_async] = ACTIONS(765), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_exec] = ACTIONS(765), + [anon_sym_type] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(769), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(771), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27425,7 +27282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(771), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27434,6 +27291,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(775), + [sym_integer] = ACTIONS(759), + [sym_float] = ACTIONS(775), + [anon_sym_await] = ACTIONS(777), + [sym_true] = ACTIONS(759), + [sym_false] = ACTIONS(759), + [sym_none] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(779), + }, + [STATE(168)] = { + [sym_list_splat_pattern] = STATE(1413), + [sym_primary_expression] = STATE(1248), + [sym_binary_operator] = STATE(1383), + [sym_unary_operator] = STATE(1383), + [sym_attribute] = STATE(1383), + [sym_subscript] = STATE(1383), + [sym_call] = STATE(1383), + [sym_list] = STATE(1383), + [sym_set] = STATE(1383), + [sym_tuple] = STATE(1383), + [sym_dictionary] = STATE(1383), + [sym_list_comprehension] = STATE(1383), + [sym_dictionary_comprehension] = STATE(1383), + [sym_set_comprehension] = STATE(1383), + [sym_generator_expression] = STATE(1383), + [sym_parenthesized_expression] = STATE(1383), + [sym_concatenated_string] = STATE(1383), + [sym_string] = STATE(1040), + [sym_await] = STATE(1383), + [sym_identifier] = ACTIONS(781), + [anon_sym_DOT] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_as] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_print] = ACTIONS(787), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_match] = ACTIONS(789), + [anon_sym_async] = ACTIONS(787), + [anon_sym_for] = ACTIONS(674), + [anon_sym_in] = ACTIONS(669), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_exec] = ACTIONS(787), + [anon_sym_type] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_not] = ACTIONS(669), + [anon_sym_and] = ACTIONS(669), + [anon_sym_or] = ACTIONS(669), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH_SLASH] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_is] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_GT] = ACTIONS(688), [sym_ellipsis] = ACTIONS(797), [sym_integer] = ACTIONS(781), [sym_float] = ACTIONS(797), @@ -27445,51 +27376,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(801), }, - [170] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), + [STATE(169)] = { + [sym_list_splat_pattern] = STATE(1238), + [sym_primary_expression] = STATE(994), + [sym_binary_operator] = STATE(1138), + [sym_unary_operator] = STATE(1138), + [sym_attribute] = STATE(1138), + [sym_subscript] = STATE(1138), + [sym_call] = STATE(1138), + [sym_list] = STATE(1138), + [sym_set] = STATE(1138), + [sym_tuple] = STATE(1138), + [sym_dictionary] = STATE(1138), + [sym_list_comprehension] = STATE(1138), + [sym_dictionary_comprehension] = STATE(1138), + [sym_set_comprehension] = STATE(1138), + [sym_generator_expression] = STATE(1138), + [sym_parenthesized_expression] = STATE(1138), + [sym_concatenated_string] = STATE(1138), + [sym_string] = STATE(969), + [sym_await] = STATE(1138), + [sym_identifier] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(693), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_as] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_print] = ACTIONS(697), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(674), + [anon_sym_match] = ACTIONS(699), + [anon_sym_async] = ACTIONS(697), + [anon_sym_for] = ACTIONS(674), + [anon_sym_in] = ACTIONS(669), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_exec] = ACTIONS(697), + [anon_sym_type] = ACTIONS(699), + [anon_sym_LBRACK] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_not] = ACTIONS(669), + [anon_sym_and] = ACTIONS(669), + [anon_sym_or] = ACTIONS(669), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH_SLASH] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_is] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_GT] = ACTIONS(688), + [sym_ellipsis] = ACTIONS(707), + [sym_integer] = ACTIONS(691), + [sym_float] = ACTIONS(707), + [anon_sym_await] = ACTIONS(709), + [sym_true] = ACTIONS(691), + [sym_false] = ACTIONS(691), + [sym_none] = ACTIONS(691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(711), + }, + [STATE(170)] = { + [sym_list_splat_pattern] = STATE(1326), + [sym_primary_expression] = STATE(1101), + [sym_binary_operator] = STATE(1343), + [sym_unary_operator] = STATE(1343), + [sym_attribute] = STATE(1343), + [sym_subscript] = STATE(1343), + [sym_call] = STATE(1343), + [sym_list] = STATE(1343), + [sym_set] = STATE(1343), + [sym_tuple] = STATE(1343), + [sym_dictionary] = STATE(1343), + [sym_list_comprehension] = STATE(1343), + [sym_dictionary_comprehension] = STATE(1343), + [sym_set_comprehension] = STATE(1343), + [sym_generator_expression] = STATE(1343), + [sym_parenthesized_expression] = STATE(1343), + [sym_concatenated_string] = STATE(1343), + [sym_string] = STATE(1028), + [sym_await] = STATE(1343), + [sym_identifier] = ACTIONS(735), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_print] = ACTIONS(741), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(811), - [anon_sym_async] = ACTIONS(809), + [anon_sym_match] = ACTIONS(743), + [anon_sym_async] = ACTIONS(741), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(809), - [anon_sym_type] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(741), + [anon_sym_type] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(747), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(749), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27499,7 +27503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(749), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27508,61 +27512,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(821), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), + [sym_ellipsis] = ACTIONS(753), + [sym_integer] = ACTIONS(735), + [sym_float] = ACTIONS(753), + [anon_sym_await] = ACTIONS(755), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_none] = ACTIONS(735), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), + [sym_string_start] = ACTIONS(757), + }, + [STATE(171)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), + [sym_identifier] = ACTIONS(324), + [anon_sym_DOT] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(667), + [anon_sym_as] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_print] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_if] = ACTIONS(674), + [anon_sym_COLON] = ACTIONS(667), + [anon_sym_else] = ACTIONS(674), + [anon_sym_match] = ACTIONS(680), + [anon_sym_async] = ACTIONS(678), + [anon_sym_in] = ACTIONS(674), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_exec] = ACTIONS(678), + [anon_sym_type] = ACTIONS(680), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_not] = ACTIONS(674), + [anon_sym_and] = ACTIONS(674), + [anon_sym_or] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH_SLASH] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(316), + [anon_sym_is] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_LT_EQ] = ACTIONS(667), + [anon_sym_EQ_EQ] = ACTIONS(667), + [anon_sym_BANG_EQ] = ACTIONS(667), + [anon_sym_GT_EQ] = ACTIONS(667), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_LT_GT] = ACTIONS(667), + [sym_ellipsis] = ACTIONS(322), + [sym_integer] = ACTIONS(324), + [sym_float] = ACTIONS(322), + [anon_sym_await] = ACTIONS(686), + [sym_true] = ACTIONS(324), + [sym_false] = ACTIONS(324), + [sym_none] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(328), }, - [171] = { - [sym_list_splat_pattern] = STATE(1249), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1198), - [sym_unary_operator] = STATE(1198), - [sym_attribute] = STATE(1198), - [sym_subscript] = STATE(1198), - [sym_call] = STATE(1198), - [sym_list] = STATE(1198), - [sym_set] = STATE(1198), - [sym_tuple] = STATE(1198), - [sym_dictionary] = STATE(1198), - [sym_list_comprehension] = STATE(1198), - [sym_dictionary_comprehension] = STATE(1198), - [sym_set_comprehension] = STATE(1198), - [sym_generator_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string] = STATE(983), - [sym_await] = STATE(1198), - [sym_identifier] = ACTIONS(688), + [STATE(172)] = { + [sym_list_splat_pattern] = STATE(1326), + [sym_primary_expression] = STATE(1101), + [sym_binary_operator] = STATE(1343), + [sym_unary_operator] = STATE(1343), + [sym_attribute] = STATE(1343), + [sym_subscript] = STATE(1343), + [sym_call] = STATE(1343), + [sym_list] = STATE(1343), + [sym_set] = STATE(1343), + [sym_tuple] = STATE(1343), + [sym_dictionary] = STATE(1343), + [sym_list_comprehension] = STATE(1343), + [sym_dictionary_comprehension] = STATE(1343), + [sym_set_comprehension] = STATE(1343), + [sym_generator_expression] = STATE(1343), + [sym_parenthesized_expression] = STATE(1343), + [sym_concatenated_string] = STATE(1343), + [sym_string] = STATE(1028), + [sym_await] = STATE(1343), + [sym_identifier] = ACTIONS(735), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_print] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_print] = ACTIONS(741), [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(696), - [anon_sym_async] = ACTIONS(694), + [anon_sym_match] = ACTIONS(743), + [anon_sym_async] = ACTIONS(741), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_exec] = ACTIONS(741), + [anon_sym_type] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(747), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(749), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(277), - [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -27572,7 +27649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(749), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -27581,42 +27658,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(704), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(688), - [sym_float] = ACTIONS(704), - [anon_sym_await] = ACTIONS(706), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_none] = ACTIONS(688), + [sym_ellipsis] = ACTIONS(753), + [sym_integer] = ACTIONS(735), + [sym_float] = ACTIONS(753), + [anon_sym_await] = ACTIONS(755), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_none] = ACTIONS(735), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(708), - }, - [172] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), + [sym_string_start] = ACTIONS(757), + }, + [STATE(173)] = { + [sym_list_splat_pattern] = STATE(1413), + [sym_primary_expression] = STATE(1248), + [sym_binary_operator] = STATE(1383), + [sym_unary_operator] = STATE(1383), + [sym_attribute] = STATE(1383), + [sym_subscript] = STATE(1383), + [sym_call] = STATE(1383), + [sym_list] = STATE(1383), + [sym_set] = STATE(1383), + [sym_tuple] = STATE(1383), + [sym_dictionary] = STATE(1383), + [sym_list_comprehension] = STATE(1383), + [sym_dictionary_comprehension] = STATE(1383), + [sym_set_comprehension] = STATE(1383), + [sym_generator_expression] = STATE(1383), + [sym_parenthesized_expression] = STATE(1383), + [sym_concatenated_string] = STATE(1383), + [sym_string] = STATE(1040), + [sym_await] = STATE(1383), [sym_identifier] = ACTIONS(781), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(785), @@ -27624,14 +27699,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), [anon_sym_match] = ACTIONS(789), [anon_sym_async] = ACTIONS(787), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), [anon_sym_exec] = ACTIONS(787), [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(767), [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(793), [anon_sym_PIPE] = ACTIONS(277), @@ -27666,26 +27742,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(801), }, - [173] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(174)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), + [sym_identifier] = ACTIONS(324), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_print] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(320), + [anon_sym_match] = ACTIONS(680), + [anon_sym_async] = ACTIONS(678), + [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(320), + [anon_sym_exec] = ACTIONS(678), + [anon_sym_type] = ACTIONS(680), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_SLASH_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_AT_EQ] = ACTIONS(320), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_STAR_STAR_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [sym_ellipsis] = ACTIONS(322), + [sym_integer] = ACTIONS(324), + [sym_float] = ACTIONS(322), + [anon_sym_await] = ACTIONS(686), + [sym_true] = ACTIONS(324), + [sym_false] = ACTIONS(324), + [sym_none] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(320), + [sym_string_start] = ACTIONS(328), + }, + [STATE(175)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(672), @@ -27701,9 +27850,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(678), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(682), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(316), @@ -27739,264 +27888,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(328), }, - [174] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), + [STATE(176)] = { + [sym_list_splat_pattern] = STATE(1417), + [sym_primary_expression] = STATE(1204), + [sym_binary_operator] = STATE(1411), + [sym_unary_operator] = STATE(1411), + [sym_attribute] = STATE(1411), + [sym_subscript] = STATE(1411), + [sym_call] = STATE(1411), + [sym_list] = STATE(1411), + [sym_set] = STATE(1411), + [sym_tuple] = STATE(1411), + [sym_dictionary] = STATE(1411), + [sym_list_comprehension] = STATE(1411), + [sym_dictionary_comprehension] = STATE(1411), + [sym_set_comprehension] = STATE(1411), + [sym_generator_expression] = STATE(1411), + [sym_parenthesized_expression] = STATE(1411), + [sym_concatenated_string] = STATE(1411), + [sym_string] = STATE(1087), + [sym_await] = STATE(1411), + [sym_identifier] = ACTIONS(803), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(805), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_print] = ACTIONS(809), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [175] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(277), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), - }, - [176] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(811), - [anon_sym_async] = ACTIONS(809), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(809), - [anon_sym_type] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(277), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_is] = ACTIONS(279), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(821), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), - }, - [177] = { - [sym_list_splat_pattern] = STATE(1200), - [sym_primary_expression] = STATE(1011), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), - [sym_identifier] = ACTIONS(803), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_print] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(811), - [anon_sym_async] = ACTIONS(809), - [anon_sym_for] = ACTIONS(279), + [anon_sym_match] = ACTIONS(811), + [anon_sym_async] = ACTIONS(809), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), [anon_sym_exec] = ACTIONS(809), [anon_sym_type] = ACTIONS(811), [anon_sym_LBRACK] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(284), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(815), [anon_sym_PIPE] = ACTIONS(277), @@ -28031,59 +27961,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(823), }, - [178] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(177)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), [anon_sym_DOT] = ACTIONS(669), [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(667), [anon_sym_COMMA] = ACTIONS(667), [anon_sym_as] = ACTIONS(674), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(688), [anon_sym_if] = ACTIONS(674), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_else] = ACTIONS(674), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), + [anon_sym_for] = ACTIONS(674), [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(674), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(688), [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(688), [anon_sym_LBRACE] = ACTIONS(311), [anon_sym_PLUS] = ACTIONS(316), [anon_sym_not] = ACTIONS(674), [anon_sym_and] = ACTIONS(674), [anon_sym_or] = ACTIONS(674), [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH_SLASH] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), [anon_sym_TILDE] = ACTIONS(316), [anon_sym_is] = ACTIONS(674), [anon_sym_LT] = ACTIONS(674), @@ -28104,172 +28034,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(328), }, - [179] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_as] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), - [anon_sym_GT_GT] = ACTIONS(710), + [STATE(178)] = { + [sym_list_splat_pattern] = STATE(1142), + [sym_primary_expression] = STATE(1000), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(985), + [sym_await] = STATE(1268), + [sym_identifier] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_print] = ACTIONS(719), + [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(669), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), - [anon_sym_for] = ACTIONS(674), - [anon_sym_in] = ACTIONS(669), - [anon_sym_STAR_STAR] = ACTIONS(710), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_not] = ACTIONS(669), - [anon_sym_and] = ACTIONS(669), - [anon_sym_or] = ACTIONS(669), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_is] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_LT_GT] = ACTIONS(710), - [sym_ellipsis] = ACTIONS(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [anon_sym_if] = ACTIONS(279), + [anon_sym_match] = ACTIONS(721), + [anon_sym_async] = ACTIONS(719), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(719), + [anon_sym_type] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_RBRACK] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(725), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(729), + [sym_integer] = ACTIONS(713), + [sym_float] = ACTIONS(729), + [anon_sym_await] = ACTIONS(731), + [sym_true] = ACTIONS(713), + [sym_false] = ACTIONS(713), + [sym_none] = ACTIONS(713), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), + [sym_string_start] = ACTIONS(733), }, - [180] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), - [sym_identifier] = ACTIONS(324), - [anon_sym_SEMI] = ACTIONS(320), + [STATE(179)] = { + [sym_list_splat_pattern] = STATE(1157), + [sym_primary_expression] = STATE(996), + [sym_binary_operator] = STATE(1147), + [sym_unary_operator] = STATE(1147), + [sym_attribute] = STATE(1147), + [sym_subscript] = STATE(1147), + [sym_call] = STATE(1147), + [sym_list] = STATE(1147), + [sym_set] = STATE(1147), + [sym_tuple] = STATE(1147), + [sym_dictionary] = STATE(1147), + [sym_list_comprehension] = STATE(1147), + [sym_dictionary_comprehension] = STATE(1147), + [sym_set_comprehension] = STATE(1147), + [sym_generator_expression] = STATE(1147), + [sym_parenthesized_expression] = STATE(1147), + [sym_concatenated_string] = STATE(1147), + [sym_string] = STATE(972), + [sym_await] = STATE(1147), + [sym_identifier] = ACTIONS(759), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_match] = ACTIONS(680), - [anon_sym_async] = ACTIONS(678), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(678), - [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_print] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_match] = ACTIONS(767), + [anon_sym_async] = ACTIONS(765), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(765), + [anon_sym_type] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_AT_EQ] = ACTIONS(320), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [sym_ellipsis] = ACTIONS(322), - [sym_integer] = ACTIONS(324), - [sym_float] = ACTIONS(322), - [anon_sym_await] = ACTIONS(686), - [sym_true] = ACTIONS(324), - [sym_false] = ACTIONS(324), - [sym_none] = ACTIONS(324), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_is] = ACTIONS(279), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(775), + [sym_integer] = ACTIONS(759), + [sym_float] = ACTIONS(775), + [anon_sym_await] = ACTIONS(777), + [sym_true] = ACTIONS(759), + [sym_false] = ACTIONS(759), + [sym_none] = ACTIONS(759), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(320), - [sym_string_start] = ACTIONS(328), + [sym_string_start] = ACTIONS(779), }, - [181] = { - [sym_list_splat_pattern] = STATE(1229), - [sym_primary_expression] = STATE(999), - [sym_binary_operator] = STATE(1152), - [sym_unary_operator] = STATE(1152), - [sym_attribute] = STATE(1152), - [sym_subscript] = STATE(1152), - [sym_call] = STATE(1152), - [sym_list] = STATE(1152), - [sym_set] = STATE(1152), - [sym_tuple] = STATE(1152), - [sym_dictionary] = STATE(1152), - [sym_list_comprehension] = STATE(1152), - [sym_dictionary_comprehension] = STATE(1152), - [sym_set_comprehension] = STATE(1152), - [sym_generator_expression] = STATE(1152), - [sym_parenthesized_expression] = STATE(1152), - [sym_concatenated_string] = STATE(1152), - [sym_string] = STATE(980), - [sym_await] = STATE(1152), + [STATE(180)] = { + [sym_list_splat_pattern] = STATE(1142), + [sym_primary_expression] = STATE(1000), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(985), + [sym_await] = STATE(1268), [sym_identifier] = ACTIONS(713), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(715), @@ -28288,11 +28218,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(719), [anon_sym_type] = ACTIONS(721), [anon_sym_LBRACK] = ACTIONS(723), + [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_AT] = ACTIONS(277), [anon_sym_DASH] = ACTIONS(725), [anon_sym_PIPE] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_PLUS] = ACTIONS(725), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), @@ -28323,26 +28253,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(733), }, - [182] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(181)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), [anon_sym_DOT] = ACTIONS(669), [anon_sym_LPAREN] = ACTIONS(672), @@ -28350,32 +28280,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(674), [anon_sym_STAR] = ACTIONS(676), [anon_sym_print] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(688), [anon_sym_if] = ACTIONS(674), [anon_sym_COLON] = ACTIONS(667), [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), [anon_sym_for] = ACTIONS(674), [anon_sym_in] = ACTIONS(674), - [anon_sym_STAR_STAR] = ACTIONS(710), + [anon_sym_STAR_STAR] = ACTIONS(688), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), [anon_sym_LBRACK] = ACTIONS(682), [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(688), [anon_sym_DASH] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(688), [anon_sym_LBRACE] = ACTIONS(311), [anon_sym_PLUS] = ACTIONS(316), [anon_sym_not] = ACTIONS(674), [anon_sym_and] = ACTIONS(674), [anon_sym_or] = ACTIONS(674), [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_SLASH_SLASH] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH_SLASH] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), [anon_sym_TILDE] = ACTIONS(316), [anon_sym_is] = ACTIONS(674), [anon_sym_LT] = ACTIONS(674), @@ -28396,50 +28326,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(328), }, - [183] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), - [sym_identifier] = ACTIONS(735), + [STATE(182)] = { + [sym_list_splat_pattern] = STATE(1417), + [sym_primary_expression] = STATE(1204), + [sym_binary_operator] = STATE(1411), + [sym_unary_operator] = STATE(1411), + [sym_attribute] = STATE(1411), + [sym_subscript] = STATE(1411), + [sym_call] = STATE(1411), + [sym_list] = STATE(1411), + [sym_set] = STATE(1411), + [sym_tuple] = STATE(1411), + [sym_dictionary] = STATE(1411), + [sym_list_comprehension] = STATE(1411), + [sym_dictionary_comprehension] = STATE(1411), + [sym_set_comprehension] = STATE(1411), + [sym_generator_expression] = STATE(1411), + [sym_parenthesized_expression] = STATE(1411), + [sym_concatenated_string] = STATE(1411), + [sym_string] = STATE(1087), + [sym_await] = STATE(1411), + [sym_identifier] = ACTIONS(803), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(805), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_print] = ACTIONS(809), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(743), - [anon_sym_async] = ACTIONS(741), + [anon_sym_match] = ACTIONS(811), + [anon_sym_async] = ACTIONS(809), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_exec] = ACTIONS(809), + [anon_sym_type] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(813), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(815), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(815), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -28449,7 +28379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(747), + [anon_sym_TILDE] = ACTIONS(815), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28458,61 +28388,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), + [sym_ellipsis] = ACTIONS(819), + [sym_integer] = ACTIONS(803), + [sym_float] = ACTIONS(819), + [anon_sym_await] = ACTIONS(821), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_none] = ACTIONS(803), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [184] = { - [sym_list_splat_pattern] = STATE(1316), - [sym_primary_expression] = STATE(1097), - [sym_binary_operator] = STATE(1418), - [sym_unary_operator] = STATE(1418), - [sym_attribute] = STATE(1418), - [sym_subscript] = STATE(1418), - [sym_call] = STATE(1418), - [sym_list] = STATE(1418), - [sym_set] = STATE(1418), - [sym_tuple] = STATE(1418), - [sym_dictionary] = STATE(1418), - [sym_list_comprehension] = STATE(1418), - [sym_dictionary_comprehension] = STATE(1418), - [sym_set_comprehension] = STATE(1418), - [sym_generator_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_string] = STATE(1034), - [sym_await] = STATE(1418), - [sym_identifier] = ACTIONS(781), + [sym_string_start] = ACTIONS(823), + }, + [STATE(183)] = { + [sym_list_splat_pattern] = STATE(1417), + [sym_primary_expression] = STATE(1204), + [sym_binary_operator] = STATE(1411), + [sym_unary_operator] = STATE(1411), + [sym_attribute] = STATE(1411), + [sym_subscript] = STATE(1411), + [sym_call] = STATE(1411), + [sym_list] = STATE(1411), + [sym_set] = STATE(1411), + [sym_tuple] = STATE(1411), + [sym_dictionary] = STATE(1411), + [sym_list_comprehension] = STATE(1411), + [sym_dictionary_comprehension] = STATE(1411), + [sym_set_comprehension] = STATE(1411), + [sym_generator_expression] = STATE(1411), + [sym_parenthesized_expression] = STATE(1411), + [sym_concatenated_string] = STATE(1411), + [sym_string] = STATE(1087), + [sym_await] = STATE(1411), + [sym_identifier] = ACTIONS(803), + [anon_sym_DOT] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(805), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_as] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_print] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(669), + [anon_sym_match] = ACTIONS(811), + [anon_sym_async] = ACTIONS(809), + [anon_sym_for] = ACTIONS(674), + [anon_sym_in] = ACTIONS(669), + [anon_sym_STAR_STAR] = ACTIONS(688), + [anon_sym_exec] = ACTIONS(809), + [anon_sym_type] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_not] = ACTIONS(669), + [anon_sym_and] = ACTIONS(669), + [anon_sym_or] = ACTIONS(669), + [anon_sym_SLASH] = ACTIONS(669), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_SLASH_SLASH] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(688), + [anon_sym_CARET] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(688), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_is] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT_GT] = ACTIONS(688), + [sym_ellipsis] = ACTIONS(819), + [sym_integer] = ACTIONS(803), + [sym_float] = ACTIONS(819), + [anon_sym_await] = ACTIONS(821), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_none] = ACTIONS(803), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(823), + }, + [STATE(184)] = { + [sym_list_splat_pattern] = STATE(1326), + [sym_primary_expression] = STATE(1101), + [sym_binary_operator] = STATE(1343), + [sym_unary_operator] = STATE(1343), + [sym_attribute] = STATE(1343), + [sym_subscript] = STATE(1343), + [sym_call] = STATE(1343), + [sym_list] = STATE(1343), + [sym_set] = STATE(1343), + [sym_tuple] = STATE(1343), + [sym_dictionary] = STATE(1343), + [sym_list_comprehension] = STATE(1343), + [sym_dictionary_comprehension] = STATE(1343), + [sym_set_comprehension] = STATE(1343), + [sym_generator_expression] = STATE(1343), + [sym_parenthesized_expression] = STATE(1343), + [sym_concatenated_string] = STATE(1343), + [sym_string] = STATE(1028), + [sym_await] = STATE(1343), + [sym_identifier] = ACTIONS(735), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(737), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_print] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_print] = ACTIONS(741), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(789), - [anon_sym_async] = ACTIONS(787), + [anon_sym_match] = ACTIONS(743), + [anon_sym_async] = ACTIONS(741), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_exec] = ACTIONS(741), + [anon_sym_type] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(747), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(749), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -28522,7 +28524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(749), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28531,60 +28533,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(797), - [sym_integer] = ACTIONS(781), - [sym_float] = ACTIONS(797), - [anon_sym_await] = ACTIONS(799), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_none] = ACTIONS(781), + [sym_ellipsis] = ACTIONS(753), + [sym_integer] = ACTIONS(735), + [sym_float] = ACTIONS(753), + [anon_sym_await] = ACTIONS(755), + [sym_true] = ACTIONS(735), + [sym_false] = ACTIONS(735), + [sym_none] = ACTIONS(735), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(801), - }, - [185] = { - [sym_list_splat_pattern] = STATE(1390), - [sym_primary_expression] = STATE(1139), - [sym_binary_operator] = STATE(1389), - [sym_unary_operator] = STATE(1389), - [sym_attribute] = STATE(1389), - [sym_subscript] = STATE(1389), - [sym_call] = STATE(1389), - [sym_list] = STATE(1389), - [sym_set] = STATE(1389), - [sym_tuple] = STATE(1389), - [sym_dictionary] = STATE(1389), - [sym_list_comprehension] = STATE(1389), - [sym_dictionary_comprehension] = STATE(1389), - [sym_set_comprehension] = STATE(1389), - [sym_generator_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string] = STATE(1044), - [sym_await] = STATE(1389), - [sym_identifier] = ACTIONS(757), + [sym_string_start] = ACTIONS(757), + }, + [STATE(185)] = { + [sym_list_splat_pattern] = STATE(1417), + [sym_primary_expression] = STATE(1204), + [sym_binary_operator] = STATE(1411), + [sym_unary_operator] = STATE(1411), + [sym_attribute] = STATE(1411), + [sym_subscript] = STATE(1411), + [sym_call] = STATE(1411), + [sym_list] = STATE(1411), + [sym_set] = STATE(1411), + [sym_tuple] = STATE(1411), + [sym_dictionary] = STATE(1411), + [sym_list_comprehension] = STATE(1411), + [sym_dictionary_comprehension] = STATE(1411), + [sym_set_comprehension] = STATE(1411), + [sym_generator_expression] = STATE(1411), + [sym_parenthesized_expression] = STATE(1411), + [sym_concatenated_string] = STATE(1411), + [sym_string] = STATE(1087), + [sym_await] = STATE(1411), + [sym_identifier] = ACTIONS(803), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(805), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_print] = ACTIONS(763), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_print] = ACTIONS(809), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(765), - [anon_sym_async] = ACTIONS(763), - [anon_sym_for] = ACTIONS(279), + [anon_sym_match] = ACTIONS(811), + [anon_sym_async] = ACTIONS(809), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(763), - [anon_sym_type] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(809), + [anon_sym_type] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(813), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(815), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(815), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -28594,7 +28596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(815), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28603,60 +28605,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(775), - [sym_integer] = ACTIONS(757), - [sym_float] = ACTIONS(775), - [anon_sym_await] = ACTIONS(777), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_none] = ACTIONS(757), + [sym_ellipsis] = ACTIONS(819), + [sym_integer] = ACTIONS(803), + [sym_float] = ACTIONS(819), + [anon_sym_await] = ACTIONS(821), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_none] = ACTIONS(803), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(779), + [sym_string_start] = ACTIONS(823), }, - [186] = { - [sym_list_splat_pattern] = STATE(1451), - [sym_primary_expression] = STATE(1252), - [sym_binary_operator] = STATE(1462), - [sym_unary_operator] = STATE(1462), - [sym_attribute] = STATE(1462), - [sym_subscript] = STATE(1462), - [sym_call] = STATE(1462), - [sym_list] = STATE(1462), - [sym_set] = STATE(1462), - [sym_tuple] = STATE(1462), - [sym_dictionary] = STATE(1462), - [sym_list_comprehension] = STATE(1462), - [sym_dictionary_comprehension] = STATE(1462), - [sym_set_comprehension] = STATE(1462), - [sym_generator_expression] = STATE(1462), - [sym_parenthesized_expression] = STATE(1462), - [sym_concatenated_string] = STATE(1462), - [sym_string] = STATE(1110), - [sym_await] = STATE(1462), - [sym_identifier] = ACTIONS(735), + [STATE(186)] = { + [sym_list_splat_pattern] = STATE(1413), + [sym_primary_expression] = STATE(1248), + [sym_binary_operator] = STATE(1383), + [sym_unary_operator] = STATE(1383), + [sym_attribute] = STATE(1383), + [sym_subscript] = STATE(1383), + [sym_call] = STATE(1383), + [sym_list] = STATE(1383), + [sym_set] = STATE(1383), + [sym_tuple] = STATE(1383), + [sym_dictionary] = STATE(1383), + [sym_list_comprehension] = STATE(1383), + [sym_dictionary_comprehension] = STATE(1383), + [sym_set_comprehension] = STATE(1383), + [sym_generator_expression] = STATE(1383), + [sym_parenthesized_expression] = STATE(1383), + [sym_concatenated_string] = STATE(1383), + [sym_string] = STATE(1040), + [sym_await] = STATE(1383), + [sym_identifier] = ACTIONS(781), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(783), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_print] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_print] = ACTIONS(787), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(743), - [anon_sym_async] = ACTIONS(741), + [anon_sym_match] = ACTIONS(789), + [anon_sym_async] = ACTIONS(787), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(741), - [anon_sym_type] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), + [anon_sym_exec] = ACTIONS(787), + [anon_sym_type] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_AT] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(793), [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(793), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), @@ -28666,7 +28668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(747), + [anon_sym_TILDE] = ACTIONS(793), [anon_sym_is] = ACTIONS(279), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), @@ -28675,37 +28677,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(277), [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), - [sym_ellipsis] = ACTIONS(751), - [sym_integer] = ACTIONS(735), - [sym_float] = ACTIONS(751), - [anon_sym_await] = ACTIONS(753), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_none] = ACTIONS(735), + [sym_ellipsis] = ACTIONS(797), + [sym_integer] = ACTIONS(781), + [sym_float] = ACTIONS(797), + [anon_sym_await] = ACTIONS(799), + [sym_true] = ACTIONS(781), + [sym_false] = ACTIONS(781), + [sym_none] = ACTIONS(781), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(755), - }, - [187] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [sym_string_start] = ACTIONS(801), + }, + [STATE(187)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(672), @@ -28717,9 +28719,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(320), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(320), [anon_sym_LBRACK] = ACTIONS(682), [anon_sym_AT] = ACTIONS(279), [anon_sym_DASH] = ACTIONS(684), @@ -28757,26 +28759,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(328), }, - [188] = { - [sym_list_splat_pattern] = STATE(1325), - [sym_primary_expression] = STATE(1053), - [sym_binary_operator] = STATE(1311), - [sym_unary_operator] = STATE(1311), - [sym_attribute] = STATE(1311), - [sym_subscript] = STATE(1311), - [sym_call] = STATE(1311), - [sym_list] = STATE(1311), - [sym_set] = STATE(1311), - [sym_tuple] = STATE(1311), - [sym_dictionary] = STATE(1311), - [sym_list_comprehension] = STATE(1311), - [sym_dictionary_comprehension] = STATE(1311), - [sym_set_comprehension] = STATE(1311), - [sym_generator_expression] = STATE(1311), - [sym_parenthesized_expression] = STATE(1311), - [sym_concatenated_string] = STATE(1311), - [sym_string] = STATE(1025), - [sym_await] = STATE(1311), + [STATE(188)] = { + [sym_list_splat_pattern] = STATE(1294), + [sym_primary_expression] = STATE(1060), + [sym_binary_operator] = STATE(1296), + [sym_unary_operator] = STATE(1296), + [sym_attribute] = STATE(1296), + [sym_subscript] = STATE(1296), + [sym_call] = STATE(1296), + [sym_list] = STATE(1296), + [sym_set] = STATE(1296), + [sym_tuple] = STATE(1296), + [sym_dictionary] = STATE(1296), + [sym_list_comprehension] = STATE(1296), + [sym_dictionary_comprehension] = STATE(1296), + [sym_set_comprehension] = STATE(1296), + [sym_generator_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string] = STATE(1024), + [sym_await] = STATE(1296), [sym_identifier] = ACTIONS(324), [anon_sym_DOT] = ACTIONS(669), [anon_sym_LPAREN] = ACTIONS(672), @@ -28788,9 +28790,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(680), [anon_sym_async] = ACTIONS(678), [anon_sym_STAR_STAR] = ACTIONS(669), + [anon_sym_EQ] = ACTIONS(667), [anon_sym_exec] = ACTIONS(678), [anon_sym_type] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(667), [anon_sym_LBRACK] = ACTIONS(682), [anon_sym_AT] = ACTIONS(669), [anon_sym_DASH] = ACTIONS(684), @@ -28828,45 +28830,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(328), }, - [189] = { - [sym_named_expression] = STATE(1695), - [sym__named_expression_lhs] = STATE(2649), - [sym_list_splat] = STATE(2377), - [sym_parenthesized_list_splat] = STATE(2377), - [sym_list_splat_pattern] = STATE(1200), - [sym_as_pattern] = STATE(1695), - [sym_expression] = STATE(1663), - [sym_primary_expression] = STATE(928), - [sym_not_operator] = STATE(1695), - [sym_boolean_operator] = STATE(1695), - [sym_binary_operator] = STATE(1226), - [sym_unary_operator] = STATE(1226), - [sym_comparison_operator] = STATE(1695), - [sym_lambda] = STATE(1695), - [sym_yield] = STATE(2377), - [sym_attribute] = STATE(1226), - [sym_subscript] = STATE(1226), - [sym_call] = STATE(1226), - [sym_type] = STATE(1950), - [sym_splat_type] = STATE(2064), - [sym_generic_type] = STATE(2064), - [sym_union_type] = STATE(2064), - [sym_constrained_type] = STATE(2064), - [sym_member_type] = STATE(2064), - [sym_list] = STATE(1226), - [sym_set] = STATE(1226), - [sym_tuple] = STATE(1226), - [sym_dictionary] = STATE(1226), - [sym_list_comprehension] = STATE(1226), - [sym_dictionary_comprehension] = STATE(1226), - [sym_set_comprehension] = STATE(1226), - [sym_generator_expression] = STATE(1226), - [sym_parenthesized_expression] = STATE(1226), - [sym__collection_elements] = STATE(2685), - [sym_conditional_expression] = STATE(1695), - [sym_concatenated_string] = STATE(1226), - [sym_string] = STATE(977), - [sym_await] = STATE(1226), + [STATE(189)] = { + [sym_named_expression] = STATE(1660), + [sym__named_expression_lhs] = STATE(2674), + [sym_list_splat] = STATE(2433), + [sym_parenthesized_list_splat] = STATE(2433), + [sym_list_splat_pattern] = STATE(1142), + [sym_as_pattern] = STATE(1660), + [sym_expression] = STATE(1625), + [sym_primary_expression] = STATE(947), + [sym_not_operator] = STATE(1660), + [sym_boolean_operator] = STATE(1660), + [sym_binary_operator] = STATE(1268), + [sym_unary_operator] = STATE(1268), + [sym_comparison_operator] = STATE(1660), + [sym_lambda] = STATE(1660), + [sym_yield] = STATE(2433), + [sym_attribute] = STATE(1268), + [sym_subscript] = STATE(1268), + [sym_call] = STATE(1268), + [sym_type] = STATE(1924), + [sym_splat_type] = STATE(1985), + [sym_generic_type] = STATE(1985), + [sym_union_type] = STATE(1985), + [sym_constrained_type] = STATE(1985), + [sym_member_type] = STATE(1985), + [sym_list] = STATE(1268), + [sym_set] = STATE(1268), + [sym_tuple] = STATE(1268), + [sym_dictionary] = STATE(1268), + [sym_list_comprehension] = STATE(1268), + [sym_dictionary_comprehension] = STATE(1268), + [sym_set_comprehension] = STATE(1268), + [sym_generator_expression] = STATE(1268), + [sym_parenthesized_expression] = STATE(1268), + [sym__collection_elements] = STATE(2677), + [sym_conditional_expression] = STATE(1660), + [sym_concatenated_string] = STATE(1268), + [sym_string] = STATE(985), + [sym_await] = STATE(1268), [sym_identifier] = ACTIONS(825), [anon_sym_LPAREN] = ACTIONS(827), [anon_sym_STAR] = ACTIONS(829), @@ -28876,82 +28878,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(835), [anon_sym_exec] = ACTIONS(831), [anon_sym_type] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(723), [anon_sym_RBRACK] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(725), [anon_sym_not] = ACTIONS(841), - [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(725), [anon_sym_lambda] = ACTIONS(843), [anon_sym_yield] = ACTIONS(845), - [sym_ellipsis] = ACTIONS(819), - [sym_integer] = ACTIONS(803), - [sym_float] = ACTIONS(819), - [anon_sym_await] = ACTIONS(847), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_none] = ACTIONS(803), + [sym_ellipsis] = ACTIONS(729), + [sym_integer] = ACTIONS(713), + [sym_float] = ACTIONS(729), + [anon_sym_await] = ACTIONS(847), + [sym_true] = ACTIONS(713), + [sym_false] = ACTIONS(713), + [sym_none] = ACTIONS(713), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(823), + [sym_string_start] = ACTIONS(733), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [0] = 31, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(757), 1, sym_string_start, ACTIONS(849), 1, sym_identifier, ACTIONS(851), 1, anon_sym_LPAREN, ACTIONS(853), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(855), 1, anon_sym_STAR, ACTIONS(861), 1, - anon_sym_STAR_STAR, + anon_sym_LBRACK, ACTIONS(863), 1, - anon_sym_RBRACE, - ACTIONS(865), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(869), 1, anon_sym_await, - STATE(964), 1, + STATE(965), 1, sym_primary_expression, - STATE(980), 1, + STATE(1028), 1, sym_string, - STATE(1229), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1659), 1, sym_expression, - STATE(1852), 1, - sym_pair, - STATE(2347), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2460), 1, + sym_pattern, + STATE(2491), 1, + sym_yield, + STATE(2660), 1, + sym__patterns, + STATE(2767), 1, sym__named_expression_lhs, - STATE(2690), 1, + STATE(2788), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1347), 2, + sym_attribute, + sym_subscript, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2539), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -28959,16 +28968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28976,11 +28981,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -28993,79 +28996,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [124] = 31, - ACTIONS(773), 1, + [126] = 32, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(877), 1, - anon_sym_RPAREN, - ACTIONS(879), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(861), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(869), 1, anon_sym_await, - STATE(972), 1, + ACTIONS(871), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1391), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1663), 1, sym_expression, - STATE(2376), 1, + STATE(2241), 1, sym_yield, - STATE(2424), 1, + STATE(2281), 1, + sym_list_splat, + STATE(2284), 1, + sym_parenthesized_list_splat, + STATE(2460), 1, sym_pattern, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2773), 1, - sym__patterns, - STATE(2790), 1, + STATE(2592), 1, sym__collection_elements, + STATE(2729), 1, + sym__patterns, + STATE(2767), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1347), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29073,7 +29077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29088,78 +29092,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [250] = 30, - ACTIONS(817), 1, + [254] = 31, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(861), 1, anon_sym_LBRACK, - ACTIONS(907), 1, - anon_sym_RBRACK, - ACTIONS(909), 1, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(869), 1, anon_sym_await, - STATE(928), 1, + ACTIONS(873), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(977), 1, + STATE(1028), 1, sym_string, - STATE(1416), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1690), 1, sym_expression, - STATE(2378), 1, + STATE(2234), 1, + sym_yield, + STATE(2460), 1, sym_pattern, - STATE(2649), 1, + STATE(2660), 1, + sym__patterns, + STATE(2767), 1, sym__named_expression_lhs, - STATE(2685), 1, + STATE(2771), 1, sym__collection_elements, - STATE(2713), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1347), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29167,7 +29172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29182,48 +29187,44 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [374] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, + [380] = 30, ACTIONS(727), 1, anon_sym_LBRACE, ACTIONS(733), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(851), 1, - anon_sym_LPAREN, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(887), 1, + anon_sym_RBRACK, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(911), 1, - anon_sym_COMMA, - ACTIONS(913), 1, - anon_sym_RBRACE, - STATE(964), 1, + STATE(947), 1, sym_primary_expression, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1229), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1678), 1, + STATE(1674), 1, sym_expression, - STATE(1882), 1, - sym_pair, - STATE(2254), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2438), 1, + sym_pattern, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2752), 1, + STATE(2725), 1, + sym__patterns, + STATE(2727), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -29231,18 +29232,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, + STATE(1379), 2, + sym_attribute, + sym_subscript, + STATE(2536), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2433), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -29251,7 +29258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29259,11 +29266,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29276,76 +29281,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [498] = 30, - ACTIONS(723), 1, + [504] = 30, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(895), 1, + anon_sym_COMMA, + ACTIONS(897), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(905), 1, + anon_sym_RBRACE, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(911), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(915), 1, - anon_sym_COMMA, - ACTIONS(917), 1, - anon_sym_RBRACE, - STATE(964), 1, + STATE(937), 1, sym_primary_expression, - STATE(980), 1, + STATE(972), 1, sym_string, - STATE(1229), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1675), 1, + STATE(1634), 1, sym_expression, - STATE(1857), 1, + STATE(1843), 1, sym_pair, - STATE(2480), 1, + STATE(2261), 1, sym_dictionary_splat, - STATE(2645), 1, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2729), 1, + STATE(2689), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2342), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29353,7 +29358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29370,79 +29375,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [622] = 31, - ACTIONS(773), 1, + [628] = 32, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(861), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(869), 1, anon_sym_await, - ACTIONS(919), 1, + ACTIONS(915), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1391), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1648), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2499), 1, + STATE(2285), 1, sym_yield, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2694), 1, - sym__patterns, - STATE(2778), 1, + STATE(2286), 1, + sym_list_splat, + STATE(2287), 1, + sym_parenthesized_list_splat, + STATE(2460), 1, + sym_pattern, + STATE(2691), 1, sym__collection_elements, + STATE(2764), 1, + sym__patterns, + STATE(2767), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1347), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29450,7 +29456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29465,10 +29471,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [748] = 30, - ACTIONS(817), 1, + [756] = 30, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(733), 1, sym_string_start, ACTIONS(841), 1, anon_sym_not, @@ -29476,67 +29482,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(845), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(877), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(921), 1, + ACTIONS(917), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(947), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1684), 1, sym_expression, - STATE(2378), 1, + STATE(2438), 1, sym_pattern, - STATE(2649), 1, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2652), 1, - sym__patterns, - STATE(2724), 1, + STATE(2680), 1, sym__collection_elements, + STATE(2756), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2433), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29544,7 +29550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29559,76 +29565,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [872] = 30, - ACTIONS(723), 1, + [880] = 30, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(897), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(911), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(923), 1, + ACTIONS(919), 1, anon_sym_COMMA, - ACTIONS(925), 1, + ACTIONS(921), 1, anon_sym_RBRACE, - STATE(964), 1, + STATE(937), 1, sym_primary_expression, - STATE(980), 1, + STATE(972), 1, sym_string, - STATE(1229), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1633), 1, sym_expression, - STATE(1879), 1, + STATE(1852), 1, sym_pair, - STATE(2306), 1, + STATE(2413), 1, sym_dictionary_splat, - STATE(2645), 1, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2740), 1, + STATE(2633), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2342), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29636,7 +29642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29653,80 +29659,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [996] = 32, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(873), 1, + [1004] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(927), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(641), 1, + sym_list_splat_pattern, + STATE(961), 1, sym_primary_expression, - STATE(1044), 1, + STATE(962), 1, sym_string, - STATE(1391), 1, - sym_list_splat_pattern, - STATE(1698), 1, - sym_expression, - STATE(2304), 1, - sym_yield, - STATE(2424), 1, + STATE(1617), 1, + sym_pattern_list, + STATE(1620), 1, sym_pattern, - STATE(2488), 1, - sym_list_splat, - STATE(2489), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(1798), 1, + sym_expression, + STATE(2769), 1, sym__named_expression_lhs, - STATE(2691), 1, - sym__collection_elements, - STATE(2692), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(417), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(419), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2527), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29734,7 +29736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1126), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29749,80 +29751,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1124] = 32, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(873), 1, + [1124] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(929), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(641), 1, + sym_list_splat_pattern, + STATE(961), 1, sym_primary_expression, - STATE(1044), 1, + STATE(962), 1, sym_string, - STATE(1391), 1, - sym_list_splat_pattern, - STATE(1685), 1, - sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2424), 1, + STATE(1617), 1, + sym_pattern_list, + STATE(1620), 1, sym_pattern, - STATE(2470), 1, - sym_yield, - STATE(2684), 1, + STATE(1798), 1, + sym_expression, + STATE(2769), 1, sym__named_expression_lhs, - STATE(2694), 1, - sym__patterns, - STATE(2704), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(417), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(419), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2530), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29830,7 +29828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1126), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29845,79 +29843,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1252] = 31, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(873), 1, + [1244] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(931), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(641), 1, + sym_list_splat_pattern, + STATE(961), 1, sym_primary_expression, - STATE(1044), 1, + STATE(962), 1, sym_string, - STATE(1391), 1, - sym_list_splat_pattern, - STATE(1692), 1, - sym_expression, - STATE(2424), 1, + STATE(1617), 1, + sym_pattern_list, + STATE(1620), 1, sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(1798), 1, + sym_expression, + STATE(2769), 1, sym__named_expression_lhs, - STATE(2773), 1, - sym__patterns, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(417), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(638), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(419), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2529), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29925,7 +29920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1126), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29940,78 +29935,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1378] = 30, - ACTIONS(817), 1, + [1364] = 31, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(861), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(869), 1, anon_sym_await, - ACTIONS(933), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(923), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(977), 1, + STATE(1028), 1, sym_string, - STATE(1416), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1657), 1, sym_expression, - STATE(2378), 1, + STATE(2363), 1, + sym_yield, + STATE(2460), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2713), 1, + STATE(2660), 1, sym__patterns, - STATE(2799), 1, + STATE(2763), 1, sym__collection_elements, + STATE(2767), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1347), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30019,7 +30015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30034,67 +30030,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1502] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, + [1490] = 30, ACTIONS(727), 1, anon_sym_LBRACE, ACTIONS(733), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(851), 1, - anon_sym_LPAREN, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(935), 1, - anon_sym_COMMA, - ACTIONS(937), 1, - anon_sym_RBRACE, - STATE(964), 1, + ACTIONS(925), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1229), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1676), 1, sym_expression, - STATE(1870), 1, - sym_pair, - STATE(2349), 1, - sym_dictionary_splat, - STATE(2645), 1, - sym__named_expression_lhs, + STATE(2438), 1, + sym_pattern, STATE(2674), 1, + sym__named_expression_lhs, + STATE(2677), 1, sym__collection_elements, + STATE(2756), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, + STATE(1379), 2, + sym_attribute, + sym_subscript, + STATE(2536), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2433), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -30103,7 +30101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30111,11 +30109,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30128,79 +30124,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1626] = 31, - ACTIONS(773), 1, + [1614] = 31, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(885), 1, + ACTIONS(861), 1, anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(869), 1, anon_sym_await, - ACTIONS(939), 1, + ACTIONS(927), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1391), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1690), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2499), 1, + STATE(2234), 1, sym_yield, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2692), 1, + STATE(2460), 1, + sym_pattern, + STATE(2660), 1, sym__patterns, - STATE(2778), 1, + STATE(2767), 1, + sym__named_expression_lhs, + STATE(2771), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1347), 2, sym_attribute, sym_subscript, - STATE(2368), 2, + STATE(2322), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30208,7 +30204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30223,10 +30219,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1752] = 30, - ACTIONS(817), 1, + [1740] = 30, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(733), 1, sym_string_start, ACTIONS(841), 1, anon_sym_not, @@ -30234,67 +30230,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(845), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(877), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(941), 1, + ACTIONS(929), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(947), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1679), 1, sym_expression, - STATE(2378), 1, + STATE(2438), 1, sym_pattern, - STATE(2649), 1, + STATE(2663), 1, + sym__patterns, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2685), 1, + STATE(2706), 1, sym__collection_elements, - STATE(2718), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2433), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30302,7 +30298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30317,76 +30313,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1876] = 30, - ACTIONS(723), 1, + [1864] = 30, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(897), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(865), 1, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(911), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(943), 1, + ACTIONS(931), 1, anon_sym_COMMA, - ACTIONS(945), 1, + ACTIONS(933), 1, anon_sym_RBRACE, - STATE(964), 1, + STATE(937), 1, sym_primary_expression, - STATE(980), 1, + STATE(972), 1, sym_string, - STATE(1229), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1637), 1, sym_expression, - STATE(1851), 1, + STATE(1861), 1, sym_pair, - STATE(2379), 1, + STATE(2288), 1, sym_dictionary_splat, - STATE(2645), 1, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2656), 1, + STATE(2716), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, + STATE(2342), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(713), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30394,7 +30390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30411,78 +30407,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2000] = 30, - ACTIONS(817), 1, + [1988] = 31, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(861), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(869), 1, anon_sym_await, - ACTIONS(947), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(935), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(977), 1, + STATE(1028), 1, sym_string, - STATE(1416), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1690), 1, sym_expression, - STATE(2378), 1, + STATE(2234), 1, + sym_yield, + STATE(2460), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2713), 1, + STATE(2729), 1, sym__patterns, - STATE(2761), 1, + STATE(2767), 1, + sym__named_expression_lhs, + STATE(2771), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1347), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30490,7 +30487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30505,66 +30502,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2124] = 31, - ACTIONS(773), 1, + [2114] = 30, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(873), 1, - sym_identifier, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(845), 1, + anon_sym_yield, ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, anon_sym_LPAREN, ACTIONS(879), 1, anon_sym_STAR, ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_not, ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(893), 1, anon_sym_await, - ACTIONS(949), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(937), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1683), 1, sym_expression, - STATE(2424), 1, + STATE(2438), 1, sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2673), 1, - sym__patterns, - STATE(2684), 1, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2778), 1, + STATE(2756), 1, + sym__patterns, + STATE(2776), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -30572,12 +30564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2433), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30585,7 +30581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30600,78 +30596,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2250] = 30, - ACTIONS(817), 1, + [2238] = 30, + ACTIONS(769), 1, + anon_sym_LBRACK, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(897), 1, anon_sym_STAR, - ACTIONS(905), 1, - anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(907), 1, + anon_sym_not, ACTIONS(909), 1, + anon_sym_lambda, + ACTIONS(911), 1, + anon_sym_yield, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(951), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(939), 1, + anon_sym_COMMA, + ACTIONS(941), 1, + anon_sym_RBRACE, + STATE(937), 1, sym_primary_expression, - STATE(977), 1, + STATE(972), 1, sym_string, - STATE(1416), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1638), 1, sym_expression, - STATE(2378), 1, - sym_pattern, - STATE(2649), 1, + STATE(1863), 1, + sym_pair, + STATE(2331), 1, + sym_dictionary_splat, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2685), 1, + STATE(2644), 1, sym__collection_elements, - STATE(2713), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2342), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30679,9 +30673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30694,12 +30690,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2374] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [2362] = 31, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(757), 1, sym_string_start, ACTIONS(849), 1, sym_identifier, @@ -30708,45 +30702,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(855), 1, anon_sym_STAR, ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + anon_sym_LBRACK, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(869), 1, anon_sym_await, - ACTIONS(953), 1, - anon_sym_COMMA, - ACTIONS(955), 1, - anon_sym_RBRACE, - STATE(964), 1, + ACTIONS(943), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(980), 1, + STATE(1028), 1, sym_string, - STATE(1229), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(1690), 1, sym_expression, - STATE(1889), 1, - sym_pair, - STATE(2406), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2234), 1, + sym_yield, + STATE(2460), 1, + sym_pattern, + STATE(2764), 1, + sym__patterns, + STATE(2767), 1, sym__named_expression_lhs, - STATE(2654), 1, + STATE(2771), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1347), 2, + sym_attribute, + sym_subscript, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2539), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -30754,16 +30757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30771,11 +30770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30788,66 +30785,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2498] = 31, - ACTIONS(773), 1, + [2488] = 30, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(873), 1, - sym_identifier, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(845), 1, + anon_sym_yield, ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, anon_sym_LPAREN, ACTIONS(879), 1, anon_sym_STAR, ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_not, ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(893), 1, anon_sym_await, - ACTIONS(957), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(945), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1676), 1, sym_expression, - STATE(2424), 1, + STATE(2438), 1, sym_pattern, - STATE(2428), 1, - sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2773), 1, + STATE(2677), 1, + sym__collection_elements, + STATE(2756), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -30855,12 +30847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2433), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30868,7 +30864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30883,46 +30879,48 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2624] = 31, + [2612] = 30, + ACTIONS(769), 1, + anon_sym_LBRACK, ACTIONS(773), 1, anon_sym_LBRACE, ACTIONS(779), 1, sym_string_start, - ACTIONS(873), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(875), 1, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(879), 1, + ACTIONS(897), 1, anon_sym_STAR, - ACTIONS(885), 1, - anon_sym_LBRACK, - ACTIONS(887), 1, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(911), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(959), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(947), 1, + anon_sym_COMMA, + ACTIONS(949), 1, + anon_sym_RBRACE, + STATE(937), 1, sym_primary_expression, - STATE(1044), 1, + STATE(972), 1, sym_string, - STATE(1391), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1639), 1, sym_expression, - STATE(2424), 1, - sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(1864), 1, + sym_pair, + STATE(2366), 1, + sym_dictionary_splat, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2773), 1, - sym__patterns, - STATE(2778), 1, + STATE(2617), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -30930,32 +30928,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(883), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, - sym_attribute, - sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(881), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2342), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30963,9 +30956,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30978,76 +30973,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2750] = 28, - ACTIONS(9), 1, + [2736] = 31, + ACTIONS(751), 1, + anon_sym_LBRACE, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(849), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(861), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(869), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(645), 1, - sym_list_splat_pattern, - STATE(968), 1, + ACTIONS(951), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(1028), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, - sym_pattern, - STATE(1827), 1, + STATE(1346), 1, + sym_list_splat_pattern, + STATE(1690), 1, sym_expression, - STATE(2672), 1, + STATE(2234), 1, + sym_yield, + STATE(2460), 1, + sym_pattern, + STATE(2681), 1, + sym__patterns, + STATE(2767), 1, sym__named_expression_lhs, + STATE(2771), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, + STATE(1347), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2583), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1679), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31055,7 +31053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31070,66 +31068,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2870] = 31, - ACTIONS(773), 1, + [2862] = 30, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(873), 1, - sym_identifier, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(845), 1, + anon_sym_yield, ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, anon_sym_LPAREN, ACTIONS(879), 1, anon_sym_STAR, ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_not, ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(893), 1, anon_sym_await, - ACTIONS(961), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(953), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1676), 1, sym_expression, - STATE(2424), 1, + STATE(2438), 1, sym_pattern, - STATE(2499), 1, - sym_yield, - STATE(2650), 1, - sym__patterns, - STATE(2684), 1, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2778), 1, + STATE(2677), 1, sym__collection_elements, + STATE(2725), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -31137,12 +31130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2433), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31150,7 +31147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31165,78 +31162,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2996] = 30, - ACTIONS(817), 1, + [2986] = 30, + ACTIONS(769), 1, + anon_sym_LBRACK, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(897), 1, anon_sym_STAR, - ACTIONS(905), 1, - anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(907), 1, + anon_sym_not, ACTIONS(909), 1, + anon_sym_lambda, + ACTIONS(911), 1, + anon_sym_yield, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(963), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(955), 1, + anon_sym_COMMA, + ACTIONS(957), 1, + anon_sym_RBRACE, + STATE(937), 1, sym_primary_expression, - STATE(977), 1, + STATE(972), 1, sym_string, - STATE(1416), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1641), 1, sym_expression, - STATE(2378), 1, - sym_pattern, - STATE(2649), 1, + STATE(1865), 1, + sym_pair, + STATE(2392), 1, + sym_dictionary_splat, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2652), 1, - sym__patterns, - STATE(2685), 1, + STATE(2649), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2342), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31244,9 +31239,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31259,12 +31256,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3120] = 30, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [3110] = 31, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(757), 1, sym_string_start, ACTIONS(849), 1, sym_identifier, @@ -31273,45 +31268,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(855), 1, anon_sym_STAR, ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(865), 1, + anon_sym_LBRACK, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(869), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(869), 1, anon_sym_await, - ACTIONS(965), 1, - anon_sym_COMMA, - ACTIONS(967), 1, - anon_sym_RBRACE, - STATE(964), 1, + ACTIONS(959), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(980), 1, + STATE(1028), 1, sym_string, - STATE(1229), 1, + STATE(1346), 1, sym_list_splat_pattern, - STATE(1674), 1, + STATE(1690), 1, sym_expression, - STATE(1871), 1, - sym_pair, - STATE(2433), 1, - sym_dictionary_splat, - STATE(2622), 1, - sym__collection_elements, - STATE(2645), 1, + STATE(2234), 1, + sym_yield, + STATE(2460), 1, + sym_pattern, + STATE(2621), 1, + sym__patterns, + STATE(2767), 1, sym__named_expression_lhs, + STATE(2771), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(859), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + STATE(1347), 2, + sym_attribute, + sym_subscript, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2539), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -31319,16 +31323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2475), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(713), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31336,11 +31336,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31353,10 +31351,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3244] = 30, - ACTIONS(817), 1, + [3236] = 30, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(733), 1, sym_string_start, ACTIONS(841), 1, anon_sym_not, @@ -31364,67 +31362,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(845), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(877), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(969), 1, + ACTIONS(961), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(947), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1676), 1, sym_expression, - STATE(2378), 1, + STATE(2438), 1, sym_pattern, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2718), 1, + STATE(2663), 1, sym__patterns, - STATE(2723), 1, + STATE(2674), 1, + sym__named_expression_lhs, + STATE(2677), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2433), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31432,7 +31430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31447,76 +31445,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3368] = 28, - ACTIONS(9), 1, + [3360] = 30, + ACTIONS(769), 1, + anon_sym_LBRACK, + ACTIONS(773), 1, + anon_sym_LBRACE, + ACTIONS(779), 1, + sym_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(897), 1, anon_sym_STAR, - ACTIONS(61), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(911), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(645), 1, - sym_list_splat_pattern, - STATE(968), 1, + ACTIONS(963), 1, + anon_sym_COMMA, + ACTIONS(965), 1, + anon_sym_RBRACE, + STATE(937), 1, sym_primary_expression, - STATE(969), 1, + STATE(972), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, - sym_pattern, - STATE(1827), 1, + STATE(1157), 1, + sym_list_splat_pattern, + STATE(1642), 1, sym_expression, - STATE(2672), 1, + STATE(1869), 1, + sym_pair, + STATE(2419), 1, + sym_dictionary_splat, + STATE(2604), 1, + sym__collection_elements, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2342), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2578), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1679), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31524,9 +31522,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31539,76 +31539,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3488] = 28, - ACTIONS(9), 1, + [3484] = 31, + ACTIONS(751), 1, + anon_sym_LBRACE, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(849), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(861), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(869), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(645), 1, - sym_list_splat_pattern, - STATE(968), 1, + ACTIONS(967), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(1028), 1, sym_string, - STATE(1641), 1, - sym_pattern_list, - STATE(1651), 1, - sym_pattern, - STATE(1827), 1, + STATE(1346), 1, + sym_list_splat_pattern, + STATE(1659), 1, sym_expression, - STATE(2672), 1, + STATE(2460), 1, + sym_pattern, + STATE(2491), 1, + sym_yield, + STATE(2660), 1, + sym__patterns, + STATE(2767), 1, sym__named_expression_lhs, + STATE(2788), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(417), 2, + ACTIONS(859), 2, anon_sym_match, anon_sym_type, - STATE(646), 2, + STATE(1347), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(419), 3, + ACTIONS(857), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2608), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1679), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31616,7 +31619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 14, + STATE(1343), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31631,66 +31634,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3608] = 31, - ACTIONS(773), 1, + [3610] = 30, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(873), 1, - sym_identifier, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(845), 1, + anon_sym_yield, ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, anon_sym_LPAREN, ACTIONS(879), 1, anon_sym_STAR, ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(887), 1, - anon_sym_not, ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(893), 1, anon_sym_await, - ACTIONS(971), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(969), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1391), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1676), 1, sym_expression, - STATE(2424), 1, + STATE(2438), 1, sym_pattern, - STATE(2428), 1, - sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2773), 1, + STATE(2677), 1, + sym__collection_elements, + STATE(2705), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1393), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2597), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(771), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -31698,12 +31696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2433), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31711,7 +31713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31727,9 +31729,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3734] = 30, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(733), 1, sym_string_start, ACTIONS(841), 1, anon_sym_not, @@ -31737,67 +31739,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(845), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(877), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(973), 1, + ACTIONS(971), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(947), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1676), 1, sym_expression, - STATE(2378), 1, + STATE(2438), 1, sym_pattern, - STATE(2649), 1, + STATE(2631), 1, + sym__patterns, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2685), 1, + STATE(2677), 1, sym__collection_elements, - STATE(2719), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2433), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31805,7 +31807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31821,9 +31823,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3858] = 30, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(733), 1, sym_string_start, ACTIONS(841), 1, anon_sym_not, @@ -31831,67 +31833,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(845), 1, anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(875), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(877), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(879), 1, anon_sym_STAR, - ACTIONS(905), 1, + ACTIONS(885), 1, anon_sym_LBRACK, - ACTIONS(909), 1, + ACTIONS(889), 1, anon_sym_await, - ACTIONS(975), 1, + ACTIONS(973), 1, anon_sym_RBRACK, - STATE(928), 1, + STATE(947), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1377), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1684), 1, sym_expression, - STATE(2378), 1, + STATE(2438), 1, sym_pattern, - STATE(2649), 1, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2665), 1, - sym__patterns, - STATE(2685), 1, + STATE(2680), 1, sym__collection_elements, + STATE(2756), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(883), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, + STATE(1379), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(881), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2433), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31899,7 +31901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1268), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31915,77 +31917,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3982] = 30, - ACTIONS(817), 1, + ACTIONS(769), 1, + anon_sym_LBRACK, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(895), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(893), 1, anon_sym_LPAREN, - ACTIONS(899), 1, + ACTIONS(897), 1, anon_sym_STAR, - ACTIONS(905), 1, - anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(907), 1, + anon_sym_not, ACTIONS(909), 1, + anon_sym_lambda, + ACTIONS(911), 1, + anon_sym_yield, + ACTIONS(913), 1, anon_sym_await, + ACTIONS(975), 1, + anon_sym_COMMA, ACTIONS(977), 1, - anon_sym_RBRACK, - STATE(928), 1, + anon_sym_RBRACE, + STATE(937), 1, sym_primary_expression, - STATE(977), 1, + STATE(972), 1, sym_string, - STATE(1416), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1635), 1, sym_expression, - STATE(2378), 1, - sym_pattern, - STATE(2649), 1, + STATE(1853), 1, + sym_pair, + STATE(2237), 1, + sym_dictionary_splat, + STATE(2616), 1, sym__named_expression_lhs, - STATE(2713), 1, - sym__patterns, - STATE(2761), 1, + STATE(2741), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(903), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - STATE(1423), 2, - sym_attribute, - sym_subscript, - STATE(2596), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(815), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(901), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2342), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(803), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31993,9 +31993,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32025,13 +32027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(993), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1370), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1591), 1, sym_pattern, - STATE(1616), 1, + STATE(1599), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -32045,10 +32047,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(989), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, + STATE(1330), 2, sym_attribute, sym_subscript, - STATE(1628), 2, + STATE(1593), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(987), 3, @@ -32060,7 +32062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32110,13 +32112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(993), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1370), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1591), 1, sym_pattern, - STATE(1616), 1, + STATE(1599), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -32130,10 +32132,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(989), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, + STATE(1330), 2, sym_attribute, sym_subscript, - STATE(1628), 2, + STATE(1593), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(987), 3, @@ -32145,7 +32147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32179,159 +32181,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 27, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - anon_sym_LPAREN, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1007), 1, - anon_sym_LBRACK, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1013), 1, - anon_sym_await, - STATE(927), 1, - sym_primary_expression, - STATE(983), 1, - sym_string, - STATE(1153), 1, - sym_list_splat_pattern, - STATE(1737), 1, - sym_expression, - STATE(2559), 1, - sym_pattern, - STATE(2781), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1005), 2, - anon_sym_match, - anon_sym_type, - STATE(1154), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1003), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(688), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2070), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1760), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1198), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [4436] = 27, - ACTIONS(737), 1, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(1003), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(1005), 1, anon_sym_type, - ACTIONS(1025), 1, + ACTIONS(1007), 1, anon_sym_RBRACK, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1745), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32339,7 +32252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32356,71 +32269,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4552] = 27, - ACTIONS(737), 1, + [4436] = 27, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(1003), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(1005), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1033), 1, + ACTIONS(1015), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1745), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32428,7 +32341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32445,71 +32358,73 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4668] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [4552] = 27, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, - sym_identifier, + ACTIONS(911), 1, + anon_sym_yield, ACTIONS(1017), 1, - anon_sym_STAR, + sym_identifier, + ACTIONS(1019), 1, + anon_sym_LPAREN, ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, + anon_sym_STAR, ACTIONS(1027), 1, - anon_sym_not, + anon_sym_LBRACK, ACTIONS(1029), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1033), 1, anon_sym_await, - ACTIONS(1035), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(896), 1, sym_primary_expression, - STATE(1110), 1, + STATE(969), 1, sym_string, - STATE(1451), 1, + STATE(1150), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1716), 1, sym_expression, - STATE(2079), 1, - sym_type, - STATE(2786), 1, + STATE(2543), 1, + sym_pattern, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1025), 2, + anon_sym_match, + anon_sym_type, + STATE(1152), 2, + sym_attribute, + sym_subscript, + STATE(1619), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1023), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1990), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32517,11 +32432,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1138), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32534,71 +32447,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4784] = 27, - ACTIONS(737), 1, + [4668] = 27, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(1003), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(1005), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1037), 1, + ACTIONS(1035), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1745), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32606,7 +32519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32623,71 +32536,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4900] = 27, - ACTIONS(737), 1, + [4784] = 27, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(1003), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(1005), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1039), 1, + ACTIONS(1037), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1745), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32695,7 +32608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32712,71 +32625,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5016] = 27, - ACTIONS(737), 1, + [4900] = 27, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(1003), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(1005), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1041), 1, + ACTIONS(1039), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1745), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32784,7 +32697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32801,73 +32714,73 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5132] = 27, - ACTIONS(702), 1, + [5016] = 27, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(911), 1, anon_sym_yield, - ACTIONS(997), 1, + ACTIONS(1017), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1019), 1, anon_sym_LPAREN, - ACTIONS(1001), 1, + ACTIONS(1021), 1, anon_sym_STAR, - ACTIONS(1007), 1, + ACTIONS(1027), 1, anon_sym_LBRACK, - ACTIONS(1009), 1, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(1013), 1, + ACTIONS(1033), 1, anon_sym_await, - STATE(927), 1, + STATE(896), 1, sym_primary_expression, - STATE(983), 1, + STATE(969), 1, sym_string, - STATE(1153), 1, + STATE(1150), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1716), 1, sym_expression, - STATE(2559), 1, + STATE(2543), 1, sym_pattern, - STATE(2781), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1005), 2, + ACTIONS(1025), 2, anon_sym_match, anon_sym_type, - STATE(1154), 2, + STATE(1152), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(700), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1003), 3, + ACTIONS(1023), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2034), 4, + STATE(2065), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1760), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32875,7 +32788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1138), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32890,71 +32803,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5248] = 27, - ACTIONS(737), 1, + [5132] = 27, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(1003), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(1005), 1, anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1043), 1, + ACTIONS(1041), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1745), 1, sym_expression, - STATE(2079), 1, + STATE(2040), 1, sym_type, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32962,7 +32875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32979,71 +32892,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5364] = 27, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + [5248] = 26, + ACTIONS(275), 1, sym_identifier, - ACTIONS(1017), 1, - anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(297), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(304), 1, anon_sym_type, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(345), 1, + anon_sym_STAR_STAR, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, + anon_sym_STAR, ACTIONS(1045), 1, - anon_sym_RBRACK, - STATE(992), 1, + anon_sym_not, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1777), 1, sym_expression, - STATE(2079), 1, + STATE(2204), 1, sym_type, - STATE(2786), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2161), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33051,7 +32962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33068,69 +32979,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5480] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + [5361] = 26, + ACTIONS(275), 1, sym_identifier, - ACTIONS(1017), 1, - anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(297), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(304), 1, anon_sym_type, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(345), 1, + anon_sym_STAR_STAR, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, + anon_sym_STAR, + ACTIONS(1045), 1, + anon_sym_not, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1777), 1, sym_expression, - STATE(2011), 1, + STATE(2469), 1, sym_type, - STATE(2786), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2161), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33138,7 +33049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33155,12 +33066,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5593] = 26, + [5474] = 26, ACTIONS(275), 1, sym_identifier, ACTIONS(297), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(304), 1, anon_sym_type, ACTIONS(311), 1, anon_sym_LBRACE, @@ -33176,21 +33087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1777), 1, sym_expression, - STATE(2477), 1, + STATE(2343), 1, sym_type, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33211,13 +33122,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2161), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33225,7 +33136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33242,7 +33153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5706] = 26, + [5587] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -33259,25 +33170,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1047), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1051), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(1053), 1, anon_sym_type, - STATE(870), 1, + STATE(867), 1, sym_primary_expression, - STATE(969), 1, + STATE(962), 1, sym_string, - STATE(1135), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1709), 1, sym_expression, - STATE(1920), 1, + STATE(1995), 1, sym_type, - STATE(2672), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33298,13 +33209,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(1936), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33312,7 +33223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33329,7 +33240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5819] = 26, + [5700] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -33346,25 +33257,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1047), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1049), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1051), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(1053), 1, anon_sym_type, - STATE(870), 1, + STATE(867), 1, sym_primary_expression, - STATE(969), 1, + STATE(962), 1, sym_string, - STATE(1135), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1709), 1, sym_expression, - STATE(1922), 1, + STATE(1910), 1, sym_type, - STATE(2672), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33385,13 +33296,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(1936), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33399,7 +33310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33416,58 +33327,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5932] = 28, - ACTIONS(769), 1, + [5813] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1063), 1, + ACTIONS(1059), 1, anon_sym_RPAREN, + ACTIONS(1061), 1, + anon_sym_COMMA, + ACTIONS(1063), 1, + anon_sym_STAR, ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1071), 1, anon_sym_await, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1667), 1, sym_expression, - STATE(2326), 1, - sym_with_item, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(2245), 1, + sym_parenthesized_list_splat, + STATE(2767), 1, sym__named_expression_lhs, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -33475,12 +33381,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2244), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33488,7 +33398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33505,69 +33415,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6049] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [5928] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(399), 1, + anon_sym_match, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_LBRACK, ACTIONS(1047), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + anon_sym_STAR, + ACTIONS(1051), 1, + anon_sym_STAR_STAR, + ACTIONS(1053), 1, + anon_sym_type, + STATE(867), 1, sym_primary_expression, - STATE(1025), 1, + STATE(962), 1, sym_string, - STATE(1325), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1709), 1, sym_expression, - STATE(2356), 1, + STATE(1926), 1, sym_type, - STATE(2678), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(395), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1936), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33575,7 +33485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33592,69 +33502,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6162] = 26, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, + [6041] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1071), 1, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1077), 1, - anon_sym_match, - ACTIONS(1079), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1081), 1, - anon_sym_type, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1071), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1073), 1, + anon_sym_RPAREN, + ACTIONS(1075), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1680), 1, sym_expression, - STATE(1997), 1, - sym_type, - STATE(2630), 1, + STATE(2319), 1, + sym_parenthesized_list_splat, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(1067), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + STATE(2318), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33662,7 +33573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33679,69 +33590,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6275] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + [6156] = 26, + ACTIONS(275), 1, sym_identifier, - ACTIONS(1017), 1, - anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(297), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(304), 1, anon_sym_type, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(345), 1, + anon_sym_STAR_STAR, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, + anon_sym_STAR, + ACTIONS(1045), 1, + anon_sym_not, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1777), 1, sym_expression, - STATE(2101), 1, + STATE(2275), 1, sym_type, - STATE(2786), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2161), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33749,7 +33660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33766,81 +33677,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6388] = 26, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [6269] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(316), 1, + anon_sym_TILDE, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1073), 1, - anon_sym_STAR, ACTIONS(1077), 1, - anon_sym_match, + sym_identifier, ACTIONS(1079), 1, - anon_sym_STAR_STAR, + anon_sym_LPAREN, ACTIONS(1081), 1, - anon_sym_type, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, + anon_sym_STAR, ACTIONS(1087), 1, + anon_sym_LBRACK, + ACTIONS(1089), 1, anon_sym_await, - STATE(967), 1, - sym_primary_expression, - STATE(1034), 1, + STATE(1024), 1, sym_string, - STATE(1316), 1, + STATE(1478), 1, sym_list_splat_pattern, - STATE(1746), 1, - sym_expression, - STATE(2104), 1, - sym_type, - STATE(2630), 1, - sym__named_expression_lhs, + STATE(1606), 1, + sym_primary_expression, + STATE(1618), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, + ACTIONS(684), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1085), 2, + anon_sym_match, + anon_sym_type, + STATE(1465), 2, + sym_attribute, + sym_subscript, + STATE(1619), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33853,70 +33744,85 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6501] = 27, - ACTIONS(769), 1, + ACTIONS(981), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [6374] = 26, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(835), 1, + anon_sym_STAR_STAR, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1091), 1, - anon_sym_RPAREN, - ACTIONS(1093), 1, - anon_sym_COMMA, - ACTIONS(1095), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1003), 1, + anon_sym_match, + ACTIONS(1005), 1, + anon_sym_type, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - STATE(972), 1, + STATE(983), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1745), 1, sym_expression, - STATE(2265), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2040), 1, + sym_type, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2264), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1985), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33924,7 +33830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33941,68 +33847,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6616] = 25, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [6487] = 26, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(297), 1, + anon_sym_match, + ACTIONS(304), 1, + anon_sym_type, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(345), 1, + anon_sym_STAR_STAR, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1107), 1, - anon_sym_from, - ACTIONS(1115), 1, - anon_sym_await, - STATE(927), 1, + STATE(964), 1, sym_primary_expression, - STATE(983), 1, + STATE(1024), 1, sym_string, - STATE(1249), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1777), 1, sym_expression, - STATE(2049), 1, - sym_expression_list, - STATE(2781), 1, + STATE(2448), 1, + sym_type, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1109), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, + STATE(2161), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34010,7 +33917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34027,70 +33934,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6727] = 27, - ACTIONS(769), 1, + [6600] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1071), 1, anon_sym_await, - ACTIONS(1117), 1, + ACTIONS(1091), 1, anon_sym_RPAREN, - ACTIONS(1119), 1, + ACTIONS(1093), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1649), 1, sym_expression, - STATE(2501), 1, + STATE(2294), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2500), 3, + STATE(2293), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34098,7 +34005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34115,70 +34022,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6842] = 27, - ACTIONS(769), 1, + [6715] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1071), 1, anon_sym_await, - ACTIONS(1121), 1, + ACTIONS(1095), 1, anon_sym_RPAREN, - ACTIONS(1123), 1, + ACTIONS(1097), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1682), 1, + STATE(1654), 1, sym_expression, - STATE(2313), 1, + STATE(2339), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2312), 3, + STATE(2338), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34186,7 +34093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34203,12 +34110,12 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6957] = 26, + [6830] = 26, ACTIONS(275), 1, sym_identifier, ACTIONS(297), 1, anon_sym_match, - ACTIONS(302), 1, + ACTIONS(304), 1, anon_sym_type, ACTIONS(311), 1, anon_sym_LBRACE, @@ -34224,21 +34131,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1777), 1, sym_expression, - STATE(2320), 1, + STATE(2141), 1, sym_type, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -34259,13 +34166,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(2161), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34273,7 +34180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34290,61 +34197,83 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7070] = 22, - ACTIONS(311), 1, + [6943] = 28, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1127), 1, - anon_sym_LPAREN, - ACTIONS(1129), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_LBRACK, - ACTIONS(1137), 1, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1101), 1, + anon_sym_RPAREN, + ACTIONS(1107), 1, anon_sym_await, - STATE(1025), 1, + STATE(965), 1, + sym_primary_expression, + STATE(1028), 1, sym_string, - STATE(1489), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, + STATE(1677), 1, + sym_expression, + STATE(2234), 1, + sym_yield, + STATE(2306), 1, + sym_with_item, + STATE(2767), 1, + sym__named_expression_lhs, + STATE(2771), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(684), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1133), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - STATE(1491), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1131), 3, - anon_sym_print, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(749), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1103), 3, + anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1820), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -34357,86 +34286,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(995), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [7175] = 27, - ACTIONS(769), 1, + [7060] = 25, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1021), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1095), 1, - anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1111), 1, + anon_sym_from, + ACTIONS(1119), 1, anon_sym_await, - ACTIONS(1139), 1, - anon_sym_RPAREN, - ACTIONS(1141), 1, - anon_sym_COMMA, - STATE(972), 1, + STATE(896), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1390), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1717), 1, sym_expression, - STATE(2358), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2063), 1, + sym_expression_list, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2357), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + ACTIONS(1113), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34444,7 +34355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34461,69 +34372,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7290] = 26, - ACTIONS(67), 1, + [7171] = 27, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(399), 1, - anon_sym_match, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1055), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1057), 1, - anon_sym_type, - STATE(870), 1, + ACTIONS(1071), 1, + anon_sym_await, + ACTIONS(1121), 1, + anon_sym_RPAREN, + ACTIONS(1123), 1, + anon_sym_COMMA, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(1028), 1, sym_string, - STATE(1135), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1658), 1, sym_expression, - STATE(1986), 1, - sym_type, - STATE(2672), 1, + STATE(2373), 1, + sym_parenthesized_list_splat, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(1067), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2372), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1679), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34531,7 +34443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34548,70 +34460,153 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7403] = 27, - ACTIONS(769), 1, + [7286] = 22, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + anon_sym_TILDE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1081), 1, + anon_sym_STAR, + ACTIONS(1087), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(1089), 1, + anon_sym_await, + STATE(1024), 1, + sym_string, + STATE(1478), 1, + sym_list_splat_pattern, + STATE(1606), 1, + sym_primary_expression, + STATE(1618), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1085), 2, + anon_sym_match, + anon_sym_type, + STATE(1465), 2, + sym_attribute, + sym_subscript, + STATE(1619), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1083), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + ACTIONS(995), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7391] = 27, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1071), 1, anon_sym_await, - ACTIONS(1143), 1, + ACTIONS(1125), 1, anon_sym_RPAREN, - ACTIONS(1145), 1, + ACTIONS(1127), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1710), 1, + STATE(1665), 1, sym_expression, - STATE(2386), 1, + STATE(2399), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2385), 3, + STATE(2398), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34619,7 +34614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34636,69 +34631,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7518] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [7506] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(399), 1, + anon_sym_match, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_LBRACK, ACTIONS(1047), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + anon_sym_STAR, + ACTIONS(1051), 1, + anon_sym_STAR_STAR, + ACTIONS(1053), 1, + anon_sym_type, + STATE(867), 1, sym_primary_expression, - STATE(1025), 1, + STATE(962), 1, sym_string, - STATE(1325), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1709), 1, sym_expression, - STATE(2270), 1, + STATE(1895), 1, sym_type, - STATE(2678), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(395), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1936), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34706,7 +34701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34723,69 +34718,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7631] = 26, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1071), 1, + [7619] = 26, + ACTIONS(275), 1, sym_identifier, - ACTIONS(1073), 1, - anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(297), 1, anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, + ACTIONS(304), 1, anon_sym_type, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(326), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(345), 1, + anon_sym_STAR_STAR, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, + anon_sym_STAR, + ACTIONS(1045), 1, + anon_sym_not, + STATE(964), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1024), 1, sym_string, - STATE(1316), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1777), 1, sym_expression, - STATE(1959), 1, + STATE(2280), 1, sym_type, - STATE(2630), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, + STATE(2161), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34793,7 +34788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34810,69 +34805,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7744] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + [7732] = 27, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1059), 1, + anon_sym_RPAREN, + ACTIONS(1061), 1, + anon_sym_COMMA, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1143), 1, anon_sym_await, - STATE(992), 1, + STATE(982), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1087), 1, sym_string, - STATE(1451), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1841), 1, sym_expression, - STATE(1950), 1, - sym_type, - STATE(2786), 1, + STATE(2245), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1137), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + STATE(2244), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34880,7 +34876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34897,70 +34893,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7857] = 27, - ACTIONS(769), 1, + [7847] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1071), 1, anon_sym_await, - ACTIONS(1147), 1, + ACTIONS(1145), 1, anon_sym_RPAREN, - ACTIONS(1149), 1, + ACTIONS(1147), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1669), 1, sym_expression, - STATE(2413), 1, + STATE(2427), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2412), 3, + STATE(2426), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34968,7 +34964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34985,69 +34981,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7972] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [7962] = 26, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(997), 1, + sym_identifier, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1003), 1, + anon_sym_match, + ACTIONS(1005), 1, + anon_sym_type, + ACTIONS(1009), 1, anon_sym_not, - STATE(971), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, + anon_sym_await, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1745), 1, sym_expression, - STATE(2397), 1, + STATE(2018), 1, sym_type, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35055,7 +35051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35072,69 +35068,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8085] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [8075] = 26, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(997), 1, + sym_identifier, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1003), 1, + anon_sym_match, + ACTIONS(1005), 1, + anon_sym_type, + ACTIONS(1009), 1, anon_sym_not, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, + anon_sym_await, + STATE(983), 1, + sym_primary_expression, + STATE(1040), 1, + sym_string, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1745), 1, sym_expression, - STATE(2109), 1, + STATE(1924), 1, sym_type, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35142,7 +35138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35159,70 +35155,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8198] = 27, - ACTIONS(769), 1, + [8188] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1103), 1, + ACTIONS(1071), 1, anon_sym_await, - ACTIONS(1151), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - ACTIONS(1153), 1, + ACTIONS(1151), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1645), 1, sym_expression, - STATE(2439), 1, + STATE(2255), 1, sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2438), 3, + STATE(2254), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35230,7 +35226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35247,69 +35243,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8313] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(399), 1, - anon_sym_match, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + [8303] = 26, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(795), 1, + anon_sym_LBRACE, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(835), 1, + anon_sym_STAR_STAR, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1053), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_STAR_STAR, - ACTIONS(1057), 1, + ACTIONS(1003), 1, + anon_sym_match, + ACTIONS(1005), 1, anon_sym_type, - STATE(870), 1, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, + anon_sym_await, + STATE(983), 1, sym_primary_expression, - STATE(969), 1, + STATE(1040), 1, sym_string, - STATE(1135), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1745), 1, sym_expression, - STATE(2100), 1, + STATE(2019), 1, sym_type, - STATE(2672), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1952), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1679), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35317,7 +35313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35334,69 +35330,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8426] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [8416] = 26, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(997), 1, + sym_identifier, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1003), 1, + anon_sym_match, + ACTIONS(1005), 1, + anon_sym_type, + ACTIONS(1009), 1, anon_sym_not, - STATE(971), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, + anon_sym_await, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1745), 1, sym_expression, - STATE(2083), 1, + STATE(1887), 1, sym_type, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, + STATE(1985), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35404,7 +35400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35421,42 +35417,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8539] = 27, + [8529] = 26, + ACTIONS(783), 1, + anon_sym_LPAREN, ACTIONS(791), 1, anon_sym_LBRACK, ACTIONS(795), 1, anon_sym_LBRACE, ACTIONS(801), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1091), 1, - anon_sym_RPAREN, - ACTIONS(1093), 1, - anon_sym_COMMA, - ACTIONS(1101), 1, + ACTIONS(835), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(999), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1003), 1, + anon_sym_match, + ACTIONS(1005), 1, + anon_sym_type, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - STATE(967), 1, + STATE(983), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1040), 1, sym_string, - STATE(1316), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1745), 1, sym_expression, - STATE(2265), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(1913), 1, + sym_type, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -35464,27 +35460,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, - anon_sym_match, - anon_sym_type, ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2264), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1985), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35492,7 +35487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35509,69 +35504,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8654] = 26, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1071), 1, + [8642] = 26, + ACTIONS(275), 1, sym_identifier, - ACTIONS(1073), 1, - anon_sym_STAR, - ACTIONS(1077), 1, + ACTIONS(297), 1, anon_sym_match, - ACTIONS(1079), 1, - anon_sym_STAR_STAR, - ACTIONS(1081), 1, + ACTIONS(304), 1, anon_sym_type, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(326), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(345), 1, + anon_sym_STAR_STAR, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, + anon_sym_STAR, + ACTIONS(1045), 1, + anon_sym_not, + STATE(964), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1024), 1, sym_string, - STATE(1316), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1777), 1, sym_expression, - STATE(1989), 1, + STATE(2465), 1, sym_type, - STATE(2630), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1919), 5, + STATE(2161), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35579,7 +35574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35596,70 +35591,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8767] = 27, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [8755] = 26, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(297), 1, + anon_sym_match, + ACTIONS(304), 1, + anon_sym_type, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(345), 1, + anon_sym_STAR_STAR, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, anon_sym_STAR, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1103), 1, - anon_sym_await, - ACTIONS(1167), 1, - anon_sym_RPAREN, - ACTIONS(1169), 1, - anon_sym_COMMA, - STATE(972), 1, + ACTIONS(1045), 1, + anon_sym_not, + STATE(964), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1024), 1, sym_string, - STATE(1390), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1777), 1, sym_expression, - STATE(2315), 1, - sym_parenthesized_list_splat, - STATE(2684), 1, + STATE(2467), 1, + sym_type, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1099), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1097), 3, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2309), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(757), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(2161), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35667,7 +35661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35684,69 +35678,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8882] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, + [8868] = 26, + ACTIONS(275), 1, sym_identifier, - ACTIONS(1017), 1, - anon_sym_STAR, - ACTIONS(1021), 1, + ACTIONS(297), 1, anon_sym_match, - ACTIONS(1023), 1, + ACTIONS(304), 1, anon_sym_type, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(345), 1, + anon_sym_STAR_STAR, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1043), 1, + anon_sym_STAR, + ACTIONS(1045), 1, + anon_sym_not, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1777), 1, sym_expression, - STATE(1943), 1, + STATE(2468), 1, sym_type, - STATE(2786), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, + STATE(2161), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35754,7 +35748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35771,54 +35765,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8995] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + [8981] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(1153), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1028), 1, sym_string, - STATE(1451), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1648), 1, sym_expression, - STATE(1998), 1, - sym_type, - STATE(2786), 1, + STATE(2285), 1, + sym_yield, + STATE(2691), 1, + sym__collection_elements, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1105), 2, + anon_sym_match, + anon_sym_type, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -35827,13 +35827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35841,7 +35835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35858,69 +35852,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9108] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + [9095] = 26, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(835), 1, - anon_sym_STAR_STAR, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1157), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1674), 1, sym_expression, - STATE(1911), 1, - sym_type, - STATE(2786), 1, + STATE(2674), 1, sym__named_expression_lhs, + STATE(2727), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(833), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + STATE(2433), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35928,7 +35921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35945,152 +35938,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9221] = 22, - ACTIONS(311), 1, + [9207] = 28, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(316), 1, - anon_sym_TILDE, - ACTIONS(328), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1125), 1, - sym_identifier, - ACTIONS(1127), 1, - anon_sym_LPAREN, - ACTIONS(1129), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(1135), 1, - anon_sym_LBRACK, - ACTIONS(1137), 1, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(1159), 1, + anon_sym_RPAREN, + STATE(965), 1, + sym_primary_expression, + STATE(1028), 1, sym_string, - STATE(1489), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(684), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1133), 2, - anon_sym_match, - anon_sym_type, - STATE(1491), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1131), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - ACTIONS(981), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [9326] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(345), 1, - anon_sym_STAR_STAR, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, - anon_sym_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1781), 1, + STATE(1668), 1, sym_expression, - STATE(2474), 1, - sym_type, - STATE(2678), 1, + STATE(2286), 1, + sym_list_splat, + STATE(2287), 1, + sym_parenthesized_list_splat, + STATE(2416), 1, + sym_yield, + STATE(2597), 1, + sym__collection_elements, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1105), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1103), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1738), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36098,7 +36009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36115,69 +36026,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9439] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [9323] = 26, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1139), 1, anon_sym_not, - STATE(971), 1, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, + anon_sym_await, + ACTIONS(1161), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1087), 1, sym_string, - STATE(1325), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1912), 1, sym_expression, - STATE(2253), 1, - sym_type, - STATE(2678), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1137), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1135), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1738), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36185,7 +36095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36202,69 +36112,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9552] = 26, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(297), 1, - anon_sym_match, - ACTIONS(302), 1, - anon_sym_type, - ACTIONS(311), 1, + [9435] = 26, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(345), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(672), 1, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1049), 1, + ACTIONS(1139), 1, anon_sym_not, - STATE(971), 1, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, + anon_sym_await, + ACTIONS(1163), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1087), 1, sym_string, - STATE(1325), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1912), 1, sym_expression, - STATE(2476), 1, - sym_type, - STATE(2678), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1137), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1135), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2098), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1738), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36272,7 +36181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36289,69 +36198,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9665] = 26, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, + [9547] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(835), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1015), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1021), 1, - anon_sym_match, - ACTIONS(1023), 1, - anon_sym_type, - ACTIONS(1027), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1143), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(1165), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1087), 1, sym_string, - STATE(1451), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1912), 1, sym_expression, - STATE(2079), 1, - sym_type, - STATE(2786), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(747), 3, + ACTIONS(1137), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2064), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36359,7 +36267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36376,40 +36284,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9778] = 26, + [9659] = 26, ACTIONS(813), 1, anon_sym_LBRACK, ACTIONS(817), 1, anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1133), 1, + anon_sym_STAR, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1173), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1167), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1912), 1, sym_expression, - STATE(2618), 1, - sym__collection_elements, - STATE(2649), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36417,27 +36325,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2544), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36445,7 +36353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36462,70 +36370,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9890] = 28, - ACTIONS(769), 1, + [9771] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1169), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1912), 1, sym_expression, - STATE(2430), 1, - sym_yield, - STATE(2488), 1, - sym_list_splat, - STATE(2489), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2615), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36533,7 +36439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36550,68 +36456,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10006] = 26, - ACTIONS(791), 1, + [9883] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36619,7 +36525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36636,68 +36542,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10118] = 26, - ACTIONS(813), 1, + [9995] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1179), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1173), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(977), 1, + STATE(1028), 1, sym_string, - STATE(1200), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1662), 1, sym_expression, - STATE(2649), 1, - sym__named_expression_lhs, - STATE(2667), 1, + STATE(2391), 1, + sym_yield, + STATE(2630), 1, sym__collection_elements, + STATE(2767), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(803), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36705,7 +36612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36722,70 +36629,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10230] = 28, - ACTIONS(769), 1, + [10109] = 28, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1175), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1653), 1, sym_expression, - STATE(2304), 1, - sym_yield, - STATE(2488), 1, + STATE(2239), 1, sym_list_splat, - STATE(2489), 1, + STATE(2240), 1, sym_parenthesized_list_splat, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2691), 1, + STATE(2329), 1, + sym_yield, + STATE(2627), 1, sym__collection_elements, + STATE(2767), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36793,7 +36700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36810,68 +36717,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10346] = 26, - ACTIONS(791), 1, + [10225] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1177), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36879,7 +36786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36896,68 +36803,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10458] = 26, - ACTIONS(791), 1, + [10337] = 26, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(879), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1185), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1179), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1679), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2674), 1, sym__named_expression_lhs, + STATE(2706), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2433), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36965,7 +36872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36982,68 +36889,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10570] = 26, - ACTIONS(791), 1, + [10449] = 28, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1187), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1657), 1, sym_expression, - STATE(2550), 1, + STATE(2239), 1, + sym_list_splat, + STATE(2240), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2363), 1, + sym_yield, + STATE(2763), 1, + sym__collection_elements, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37051,7 +36960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37068,68 +36977,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10682] = 26, - ACTIONS(791), 1, + [10565] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1183), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37137,7 +37046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37154,68 +37063,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10794] = 26, - ACTIONS(791), 1, + [10677] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1191), 1, + ACTIONS(1185), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37223,7 +37132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37240,68 +37149,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10906] = 26, - ACTIONS(791), 1, + [10789] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1193), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37309,7 +37218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37326,69 +37235,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11018] = 27, - ACTIONS(769), 1, + [10901] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1912), 1, sym_expression, - STATE(2304), 1, - sym_yield, - STATE(2684), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2691), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37396,7 +37304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37413,68 +37321,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11132] = 26, + [11013] = 26, ACTIONS(813), 1, anon_sym_LBRACK, ACTIONS(817), 1, anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1133), 1, + anon_sym_STAR, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1191), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1912), 1, sym_expression, - STATE(2649), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2724), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2544), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37482,7 +37390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37499,70 +37407,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11244] = 28, - ACTIONS(769), 1, + [11125] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1193), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1912), 1, sym_expression, - STATE(2258), 1, - sym_list_splat, - STATE(2259), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2376), 1, - sym_yield, - STATE(2684), 1, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2790), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37570,7 +37476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37587,68 +37493,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11360] = 26, - ACTIONS(791), 1, + [11237] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1199), 1, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37656,7 +37562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37673,68 +37579,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11472] = 26, - ACTIONS(791), 1, + [11349] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1201), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37742,7 +37648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37759,68 +37665,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11584] = 26, - ACTIONS(791), 1, + [11461] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1203), 1, + ACTIONS(1199), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37828,7 +37734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37845,68 +37751,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11696] = 26, - ACTIONS(791), 1, + [11573] = 26, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(879), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1205), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1201), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1681), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2632), 1, + sym__collection_elements, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2433), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37914,7 +37820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37931,68 +37837,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11808] = 26, - ACTIONS(791), 1, + [11685] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1207), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1668), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2416), 1, + sym_yield, + STATE(2597), 1, + sym__collection_elements, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38000,7 +37907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38017,68 +37924,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11920] = 26, - ACTIONS(791), 1, + [11799] = 26, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(879), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1209), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1203), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1689), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2600), 1, + sym__collection_elements, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2433), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38086,7 +37993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38103,68 +38010,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12032] = 26, - ACTIONS(791), 1, + [11911] = 28, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1153), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1648), 1, sym_expression, - STATE(2550), 1, + STATE(2285), 1, + sym_yield, + STATE(2286), 1, + sym_list_splat, + STATE(2287), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2691), 1, + sym__collection_elements, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38172,7 +38081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38189,68 +38098,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12144] = 26, + [12027] = 26, ACTIONS(813), 1, anon_sym_LBRACK, ACTIONS(817), 1, anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(839), 1, - anon_sym_RBRACK, - ACTIONS(841), 1, + ACTIONS(1133), 1, + anon_sym_STAR, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, - sym_identifier, - STATE(928), 1, + ACTIONS(1205), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1912), 1, sym_expression, - STATE(2649), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2685), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2544), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38258,7 +38167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38275,69 +38184,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12256] = 27, - ACTIONS(769), 1, + [12139] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1912), 1, sym_expression, - STATE(2376), 1, - sym_yield, - STATE(2684), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2790), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38345,7 +38253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38362,69 +38270,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12370] = 27, - ACTIONS(769), 1, + [12251] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_RPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - STATE(972), 1, + ACTIONS(1209), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1912), 1, sym_expression, - STATE(2499), 1, - sym_yield, - STATE(2684), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2778), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38432,7 +38339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38449,68 +38356,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12484] = 26, + [12363] = 26, ACTIONS(813), 1, anon_sym_LBRACK, ACTIONS(817), 1, anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1133), 1, + anon_sym_STAR, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1211), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1912), 1, sym_expression, - STATE(2649), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2723), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2544), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38518,7 +38425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38535,68 +38442,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12596] = 26, - ACTIONS(791), 1, + [12475] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1215), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1659), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2491), 1, + sym_yield, + STATE(2767), 1, sym__named_expression_lhs, + STATE(2788), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38604,7 +38512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38621,68 +38529,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12708] = 26, - ACTIONS(791), 1, + [12589] = 26, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(879), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1217), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1215), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1684), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2674), 1, sym__named_expression_lhs, + STATE(2680), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2433), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38690,7 +38598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38707,68 +38615,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12820] = 26, - ACTIONS(791), 1, + [12701] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1663), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2241), 1, + sym_yield, + STATE(2592), 1, + sym__collection_elements, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38776,7 +38685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38793,68 +38702,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12932] = 26, - ACTIONS(791), 1, + [12815] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1221), 1, + ACTIONS(1175), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1653), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2329), 1, + sym_yield, + STATE(2627), 1, + sym__collection_elements, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38862,7 +38772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38879,68 +38789,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13044] = 26, - ACTIONS(791), 1, + [12929] = 26, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1223), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1219), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1683), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2674), 1, sym__named_expression_lhs, + STATE(2776), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2433), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38948,7 +38858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38965,68 +38875,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13156] = 26, - ACTIONS(791), 1, + [13041] = 26, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(879), 1, + anon_sym_STAR, ACTIONS(1155), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1225), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1221), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1686), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2640), 1, + sym__collection_elements, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2433), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39034,7 +38944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39051,68 +38961,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13268] = 26, - ACTIONS(791), 1, + [13153] = 28, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1227), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1662), 1, sym_expression, - STATE(2550), 1, + STATE(2281), 1, + sym_list_splat, + STATE(2284), 1, sym_parenthesized_list_splat, + STATE(2391), 1, + sym_yield, STATE(2630), 1, + sym__collection_elements, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39120,7 +39032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39137,69 +39049,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13380] = 27, - ACTIONS(769), 1, + [13269] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1223), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1912), 1, sym_expression, - STATE(2348), 1, - sym_yield, - STATE(2658), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39207,7 +39118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39224,68 +39135,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13494] = 26, + [13381] = 26, ACTIONS(813), 1, anon_sym_LBRACK, ACTIONS(817), 1, anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1133), 1, + anon_sym_STAR, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1231), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1225), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1912), 1, sym_expression, - STATE(2649), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2799), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2544), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39293,7 +39204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39310,69 +39221,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13606] = 27, - ACTIONS(769), 1, + [13493] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1233), 1, + ACTIONS(1227), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1912), 1, sym_expression, - STATE(2428), 1, - sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39380,7 +39290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39397,68 +39307,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13720] = 26, + [13605] = 26, ACTIONS(813), 1, anon_sym_LBRACK, ACTIONS(817), 1, anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1133), 1, + anon_sym_STAR, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1235), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1229), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1912), 1, sym_expression, - STATE(2649), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, - STATE(2761), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2544), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39466,7 +39376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39483,70 +39393,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13832] = 28, - ACTIONS(769), 1, + [13717] = 26, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(879), 1, - anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(839), 1, + anon_sym_RBRACK, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1237), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(879), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + sym_identifier, + STATE(947), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1676), 1, sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, - sym_parenthesized_list_splat, - STATE(2470), 1, - sym_yield, - STATE(2684), 1, + STATE(2674), 1, sym__named_expression_lhs, - STATE(2704), 1, + STATE(2677), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2433), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39554,7 +39462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39571,69 +39479,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13948] = 27, - ACTIONS(769), 1, + [13829] = 28, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1663), 1, sym_expression, - STATE(2470), 1, + STATE(2241), 1, sym_yield, - STATE(2684), 1, - sym__named_expression_lhs, - STATE(2704), 1, + STATE(2281), 1, + sym_list_splat, + STATE(2284), 1, + sym_parenthesized_list_splat, + STATE(2592), 1, sym__collection_elements, + STATE(2767), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39641,7 +39550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39658,68 +39567,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14062] = 26, - ACTIONS(791), 1, + [13945] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39727,7 +39636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39744,68 +39653,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14174] = 26, - ACTIONS(791), 1, + [14057] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39813,7 +39722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39830,68 +39739,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14286] = 26, - ACTIONS(791), 1, + [14169] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1235), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39899,7 +39808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39916,68 +39825,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14398] = 26, - ACTIONS(791), 1, + [14281] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1237), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39985,7 +39894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40002,40 +39911,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14510] = 26, + [14393] = 26, ACTIONS(813), 1, anon_sym_LBRACK, ACTIONS(817), 1, anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(827), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(841), 1, + ACTIONS(1133), 1, + anon_sym_STAR, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(899), 1, - anon_sym_STAR, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1247), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1239), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1912), 1, sym_expression, - STATE(2647), 1, - sym__collection_elements, - STATE(2649), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40043,27 +39952,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2377), 3, + STATE(2544), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40071,7 +39980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40088,70 +39997,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14622] = 28, - ACTIONS(769), 1, + [14505] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1241), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1912), 1, sym_expression, - STATE(2269), 1, - sym_list_splat, - STATE(2271), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2404), 1, - sym_yield, - STATE(2643), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40159,7 +40066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40176,70 +40083,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14738] = 28, - ACTIONS(769), 1, + [14617] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1243), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1912), 1, sym_expression, - STATE(2258), 1, - sym_list_splat, - STATE(2259), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2348), 1, - sym_yield, - STATE(2658), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + STATE(2544), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40247,7 +40152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40264,68 +40169,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14854] = 26, - ACTIONS(791), 1, + [14729] = 26, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1069), 1, anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1129), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1133), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1251), 1, + ACTIONS(1245), 1, anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1912), 1, sym_expression, - STATE(2550), 1, + STATE(2526), 1, sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2544), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40333,7 +40238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40350,68 +40255,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14966] = 26, - ACTIONS(791), 1, + [14841] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(855), 1, + anon_sym_STAR, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, - anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1101), 1, anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1107), 1, + anon_sym_await, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1690), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2234), 1, + sym_yield, + STATE(2767), 1, sym__named_expression_lhs, + STATE(2771), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2322), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40419,7 +40325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40436,69 +40342,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15078] = 27, - ACTIONS(769), 1, + [14955] = 27, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(855), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(867), 1, anon_sym_yield, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1061), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1657), 1, sym_expression, - STATE(2404), 1, + STATE(2363), 1, sym_yield, - STATE(2643), 1, + STATE(2763), 1, sym__collection_elements, - STATE(2684), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, + STATE(2322), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40506,7 +40412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40523,68 +40429,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15192] = 26, - ACTIONS(791), 1, + [15069] = 25, + ACTIONS(761), 1, + anon_sym_LPAREN, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(907), 1, + anon_sym_not, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1255), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1247), 1, + anon_sym_STAR, + ACTIONS(1251), 1, + anon_sym_RBRACE, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(937), 1, sym_primary_expression, - STATE(1034), 1, + STATE(972), 1, sym_string, - STATE(1316), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1786), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(899), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2042), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, - anon_sym_print, + ACTIONS(1249), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40592,7 +40496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40609,68 +40513,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15304] = 26, - ACTIONS(791), 1, + [15178] = 25, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1257), 1, + ACTIONS(1255), 1, anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1257), 1, + anon_sym_STAR, + ACTIONS(1261), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1811), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1103), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2034), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, - anon_sym_print, + ACTIONS(1259), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40678,7 +40580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40695,76 +40597,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15416] = 26, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [15287] = 19, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1157), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(676), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(1259), 1, - anon_sym_RPAREN, - STATE(967), 1, - sym_primary_expression, - STATE(1034), 1, + STATE(1024), 1, sym_string, - STATE(1316), 1, + STATE(1060), 1, + sym_primary_expression, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1915), 1, - sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + ACTIONS(320), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(324), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40781,68 +40675,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15528] = 26, - ACTIONS(791), 1, + [15384] = 25, + ACTIONS(761), 1, + anon_sym_LPAREN, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(907), 1, + anon_sym_not, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1261), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1247), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_lambda, + ACTIONS(1255), 1, + anon_sym_RBRACE, + STATE(937), 1, sym_primary_expression, - STATE(1034), 1, + STATE(972), 1, sym_string, - STATE(1316), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1786), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(899), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2042), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, - anon_sym_print, + ACTIONS(1259), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40850,7 +40742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40867,69 +40759,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15640] = 27, - ACTIONS(769), 1, + [15493] = 23, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(879), 1, + ACTIONS(1021), 1, anon_sym_STAR, - ACTIONS(887), 1, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1059), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1061), 1, - anon_sym_LPAREN, - ACTIONS(1069), 1, + ACTIONS(1119), 1, anon_sym_await, - ACTIONS(1175), 1, - anon_sym_RPAREN, - STATE(972), 1, + STATE(896), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1390), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1728), 1, sym_expression, - STATE(2430), 1, - sym_yield, - STATE(2615), 1, - sym__collection_elements, - STATE(2684), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - STATE(2368), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(771), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + ACTIONS(1263), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40937,7 +40824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40954,68 +40841,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15754] = 26, - ACTIONS(791), 1, + [15598] = 25, + ACTIONS(761), 1, + anon_sym_LPAREN, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, - anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(907), 1, + anon_sym_not, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1263), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1247), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_lambda, + ACTIONS(1267), 1, + anon_sym_RBRACE, + STATE(937), 1, sym_primary_expression, - STATE(1034), 1, + STATE(972), 1, sym_string, - STATE(1316), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1786), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(899), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2042), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, - anon_sym_print, + ACTIONS(1265), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2513), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41023,7 +40908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41040,41 +40925,41 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15866] = 25, - ACTIONS(805), 1, + [15707] = 25, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(733), 1, sym_string_start, ACTIONS(841), 1, anon_sym_not, ACTIONS(847), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1265), 1, - anon_sym_STAR, - ACTIONS(1269), 1, + ACTIONS(1251), 1, anon_sym_RBRACK, + ACTIONS(1269), 1, + anon_sym_STAR, ACTIONS(1271), 1, anon_sym_lambda, - STATE(928), 1, + STATE(947), 1, sym_primary_expression, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1200), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1808), 1, sym_expression, - STATE(2649), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, ACTIONS(831), 2, @@ -41083,23 +40968,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, + STATE(2014), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, + ACTIONS(1249), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(803), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41107,7 +40992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41124,66 +41009,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15975] = 25, - ACTIONS(759), 1, + [15816] = 25, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(847), 1, anon_sym_await, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1267), 1, + anon_sym_RBRACK, ACTIONS(1269), 1, - anon_sym_RPAREN, - ACTIONS(1273), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1271), 1, anon_sym_lambda, - STATE(972), 1, + STATE(947), 1, sym_primary_expression, - STATE(1044), 1, + STATE(985), 1, sym_string, - STATE(1390), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1808), 1, sym_expression, - STATE(2684), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(831), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, + STATE(2014), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, + ACTIONS(1265), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(757), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41191,7 +41076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41208,8 +41093,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16084] = 25, - ACTIONS(759), 1, + [15925] = 25, + ACTIONS(761), 1, anon_sym_LPAREN, ACTIONS(769), 1, anon_sym_LBRACK, @@ -41217,27 +41102,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(779), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(907), 1, + anon_sym_not, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1247), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1253), 1, anon_sym_lambda, - ACTIONS(1277), 1, - anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(1275), 1, + anon_sym_RBRACE, + STATE(937), 1, sym_primary_expression, - STATE(1044), 1, + STATE(972), 1, sym_string, - STATE(1390), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1786), 1, sym_expression, - STATE(2684), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -41245,29 +41130,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(899), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, + STATE(2042), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, + ACTIONS(1273), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(757), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41275,7 +41160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41292,66 +41177,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16193] = 25, - ACTIONS(791), 1, + [16034] = 25, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1281), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1283), 1, - anon_sym_RPAREN, - ACTIONS(1285), 1, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1261), 1, + anon_sym_lambda, + ACTIONS(1275), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1811), 1, sym_expression, - STATE(2630), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1103), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(2034), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, - anon_sym_print, + ACTIONS(1273), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2580), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(781), 4, + anon_sym_for, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41359,7 +41244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41376,66 +41261,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16302] = 25, - ACTIONS(698), 1, + [16143] = 25, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(1009), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1287), 1, - anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(1251), 1, + anon_sym_RPAREN, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1291), 1, - anon_sym_RBRACE, - STATE(927), 1, + ACTIONS(1261), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(983), 1, + STATE(1028), 1, sym_string, - STATE(1249), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1811), 1, sym_expression, - STATE(2781), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1103), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + STATE(2034), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, - anon_sym_print, + ACTIONS(1249), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2542), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(688), 4, + anon_sym_for, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41443,7 +41328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41460,66 +41345,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16411] = 25, - ACTIONS(745), 1, + [16252] = 25, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1027), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1283), 1, - anon_sym_RBRACK, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1255), 1, + anon_sym_RBRACK, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1808), 1, sym_expression, - STATE(2786), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(831), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(2014), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, + ACTIONS(1259), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2584), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(735), 4, + anon_sym_for, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41527,7 +41412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41544,64 +41429,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16520] = 23, - ACTIONS(690), 1, + [16361] = 25, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1011), 1, - anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + ACTIONS(1271), 1, + anon_sym_lambda, + ACTIONS(1275), 1, + anon_sym_RBRACK, + STATE(947), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1808), 1, sym_expression, - STATE(2781), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(831), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + STATE(2014), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, - anon_sym_print, + ACTIONS(1273), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(688), 4, + anon_sym_for, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1299), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41609,7 +41496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41626,66 +41513,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16625] = 25, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, + [16470] = 25, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1301), 1, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_RPAREN, - STATE(972), 1, + ACTIONS(1281), 1, + anon_sym_STAR, + ACTIONS(1287), 1, + anon_sym_await, + STATE(982), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1966), 1, sym_expression, - STATE(2684), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, - anon_sym_if, + ACTIONS(1283), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(757), 4, + anon_sym_exec, + STATE(2553), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41693,7 +41580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41710,66 +41597,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16734] = 25, - ACTIONS(791), 1, + [16579] = 25, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_STAR_STAR, - ACTIONS(1155), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1159), 1, + ACTIONS(1281), 1, anon_sym_STAR, - ACTIONS(1165), 1, + ACTIONS(1287), 1, anon_sym_await, - STATE(967), 1, + ACTIONS(1289), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1915), 1, + STATE(1966), 1, sym_expression, - STATE(2550), 1, - sym_parenthesized_list_splat, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1163), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1161), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2513), 3, + STATE(2553), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(781), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41777,7 +41664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41794,66 +41681,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16843] = 25, - ACTIONS(698), 1, + [16688] = 25, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(869), 1, + ACTIONS(845), 1, anon_sym_yield, ACTIONS(1009), 1, anon_sym_not, ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1283), 1, - anon_sym_RBRACE, - ACTIONS(1287), 1, - anon_sym_LPAREN, ACTIONS(1289), 1, + anon_sym_RBRACK, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1293), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, anon_sym_STAR, - STATE(927), 1, - sym_primary_expression, STATE(983), 1, + sym_primary_expression, + STATE(1040), 1, sym_string, - STATE(1249), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1974), 1, sym_expression, - STATE(2781), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2542), 3, + STATE(2579), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(688), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41861,7 +41748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41878,66 +41765,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16952] = 25, - ACTIONS(715), 1, + [16797] = 23, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, - anon_sym_not, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1021), 1, anon_sym_STAR, - ACTIONS(1309), 1, - anon_sym_RBRACE, - ACTIONS(1311), 1, + ACTIONS(1029), 1, + anon_sym_not, + ACTIONS(1031), 1, anon_sym_lambda, - STATE(964), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1119), 1, + anon_sym_await, + STATE(896), 1, sym_primary_expression, - STATE(980), 1, + STATE(969), 1, sym_string, - STATE(1229), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1728), 1, sym_expression, - STATE(2645), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, - anon_sym_if, + ACTIONS(1115), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(713), 4, + anon_sym_exec, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + ACTIONS(1297), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41945,7 +41830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41962,66 +41847,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17061] = 25, - ACTIONS(791), 1, + [16902] = 25, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, + ACTIONS(1069), 1, + anon_sym_STAR_STAR, + ACTIONS(1129), 1, + sym_identifier, + ACTIONS(1131), 1, + anon_sym_LPAREN, + ACTIONS(1133), 1, + anon_sym_STAR, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1143), 1, anon_sym_await, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1285), 1, - anon_sym_STAR, - ACTIONS(1291), 1, - anon_sym_RPAREN, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1912), 1, sym_expression, - STATE(2630), 1, + STATE(2526), 1, + sym_parenthesized_list_splat, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1137), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1135), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2580), 3, + STATE(2544), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(781), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42029,7 +41914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42046,66 +41931,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17170] = 25, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, + [17011] = 25, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(911), 1, + anon_sym_yield, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1119), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1289), 1, anon_sym_RBRACE, - ACTIONS(1305), 1, + ACTIONS(1299), 1, + anon_sym_LPAREN, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + STATE(896), 1, sym_primary_expression, - STATE(980), 1, + STATE(969), 1, sym_string, - STATE(1229), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1917), 1, sym_expression, - STATE(2645), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(859), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, - anon_sym_if, + ACTIONS(1115), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(713), 4, + anon_sym_exec, + STATE(2498), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42113,7 +41998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42130,64 +42015,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17279] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + [17120] = 25, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, + ACTIONS(845), 1, + anon_sym_yield, ACTIONS(1009), 1, anon_sym_not, ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1013), 1, anon_sym_await, - STATE(927), 1, - sym_primary_expression, + ACTIONS(1279), 1, + anon_sym_RBRACK, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1293), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, + anon_sym_STAR, STATE(983), 1, + sym_primary_expression, + STATE(1040), 1, sym_string, - STATE(1249), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1974), 1, sym_expression, - STATE(2781), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + STATE(2579), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1313), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1760), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42195,7 +42082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42212,66 +42099,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17384] = 25, - ACTIONS(805), 1, + [17229] = 25, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1261), 1, anon_sym_lambda, - ACTIONS(1309), 1, - anon_sym_RBRACK, - STATE(928), 1, + ACTIONS(1267), 1, + anon_sym_RPAREN, + STATE(965), 1, sym_primary_expression, - STATE(977), 1, + STATE(1028), 1, sym_string, - STATE(1200), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1811), 1, sym_expression, - STATE(2649), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, + ACTIONS(1103), 2, anon_sym_print, anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, + STATE(2034), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, + ACTIONS(1265), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(803), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42279,7 +42166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42296,66 +42183,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17493] = 25, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, + [17338] = 25, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(911), 1, + anon_sym_yield, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1119), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1279), 1, + anon_sym_RBRACE, + ACTIONS(1299), 1, + anon_sym_LPAREN, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - ACTIONS(1309), 1, - anon_sym_RPAREN, - STATE(972), 1, + STATE(896), 1, sym_primary_expression, - STATE(1044), 1, + STATE(969), 1, sym_string, - STATE(1390), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1917), 1, sym_expression, - STATE(2684), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1067), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1307), 3, - anon_sym_if, + ACTIONS(1115), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(757), 4, + anon_sym_exec, + STATE(2498), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42363,7 +42250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42380,66 +42267,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17602] = 25, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [17447] = 25, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1291), 1, - anon_sym_RBRACK, - ACTIONS(1293), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1295), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(676), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1303), 1, + anon_sym_RBRACE, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(2090), 1, sym_expression, - STATE(2786), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2584), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42447,7 +42333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42464,66 +42350,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17711] = 25, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, + [17555] = 24, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(911), 1, + anon_sym_yield, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1119), 1, + anon_sym_await, + ACTIONS(1299), 1, + anon_sym_LPAREN, + ACTIONS(1301), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - ACTIONS(1277), 1, - anon_sym_RBRACK, - STATE(928), 1, + STATE(896), 1, sym_primary_expression, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1200), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1917), 1, sym_expression, - STATE(2649), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, - anon_sym_if, + ACTIONS(1115), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(803), 4, + anon_sym_exec, + STATE(2498), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42531,7 +42415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42548,66 +42432,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17820] = 25, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [17661] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1305), 1, + anon_sym_from, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - ACTIONS(1301), 1, - anon_sym_RBRACK, - STATE(928), 1, + STATE(867), 1, sym_primary_expression, - STATE(977), 1, + STATE(962), 1, sym_string, - STATE(1200), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1810), 1, sym_expression, - STATE(2649), 1, + STATE(2554), 1, + sym_expression_list, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(831), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(833), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(1113), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, - anon_sym_if, + ACTIONS(395), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(803), 4, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42615,7 +42498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42632,66 +42515,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17929] = 25, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [17769] = 25, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(676), 1, + anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1309), 1, anon_sym_RBRACE, - ACTIONS(1305), 1, - anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, STATE(964), 1, sym_primary_expression, - STATE(980), 1, + STATE(1024), 1, sym_string, - STATE(1229), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(2090), 1, sym_expression, - STATE(2645), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, + anon_sym_async, anon_sym_exec, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1279), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(713), 4, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42699,7 +42581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42716,144 +42598,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18038] = 19, + [17877] = 25, ACTIONS(311), 1, anon_sym_LBRACE, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, ACTIONS(328), 1, sym_string_start, + ACTIONS(412), 1, + sym_identifier, ACTIONS(672), 1, anon_sym_LPAREN, ACTIONS(676), 1, anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, - sym_primary_expression, - STATE(1325), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(324), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, + ACTIONS(903), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [18135] = 25, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, - anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1301), 1, - anon_sym_RBRACE, - ACTIONS(1305), 1, - anon_sym_STAR, ACTIONS(1311), 1, - anon_sym_lambda, + anon_sym_RBRACE, STATE(964), 1, sym_primary_expression, - STATE(980), 1, + STATE(1024), 1, sym_string, - STATE(1229), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(2090), 1, sym_expression, - STATE(2645), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, + anon_sym_async, anon_sym_exec, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1303), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(713), 4, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42861,7 +42664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42878,64 +42681,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18244] = 24, - ACTIONS(745), 1, + [17985] = 25, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1313), 1, + anon_sym_from, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(1846), 1, sym_expression, - STATE(2786), 1, + STATE(2512), 1, + sym_expression_list, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1113), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2584), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42943,7 +42747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42960,65 +42764,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18350] = 25, - ACTIONS(67), 1, + [18093] = 25, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(676), 1, + anon_sym_STAR, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1315), 1, - anon_sym_from, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + anon_sym_not, ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, + anon_sym_RBRACE, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1024), 1, sym_string, - STATE(1135), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(2090), 1, sym_expression, - STATE(2519), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43026,7 +42830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43043,7 +42847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18458] = 25, + [18201] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -43060,21 +42864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, ACTIONS(1319), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43085,7 +42889,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -43101,7 +42905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43109,7 +42913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43126,7 +42930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18566] = 25, + [18309] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -43143,21 +42947,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, ACTIONS(1321), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43168,7 +42972,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -43184,7 +42988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43192,7 +42996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43209,65 +43013,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18674] = 25, - ACTIONS(311), 1, + [18417] = 24, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + ACTIONS(867), 1, + anon_sym_yield, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1323), 1, - anon_sym_RBRACE, - STATE(971), 1, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1281), 1, + anon_sym_STAR, + ACTIONS(1287), 1, + anon_sym_await, + STATE(982), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1087), 1, sym_string, - STATE(1325), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1966), 1, sym_expression, - STATE(2678), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1285), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1283), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2553), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43275,7 +43078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43292,7 +43095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18782] = 25, + [18523] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -43309,21 +43112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1325), 1, + ACTIONS(1323), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43334,7 +43137,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -43350,7 +43153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43358,7 +43161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43375,7 +43178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18890] = 25, + [18631] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -43392,21 +43195,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1327), 1, + ACTIONS(1325), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43417,7 +43220,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -43433,7 +43236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43441,7 +43244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43458,65 +43261,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18998] = 25, - ACTIONS(311), 1, + [18739] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(387), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, + ACTIONS(1307), 1, + anon_sym_STAR, ACTIONS(1329), 1, - anon_sym_RBRACE, - STATE(971), 1, + anon_sym_from, + STATE(867), 1, sym_primary_expression, - STATE(1025), 1, + STATE(962), 1, sym_string, - STATE(1325), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1761), 1, sym_expression, - STATE(2678), 1, + STATE(2417), 1, + sym_expression_list, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(399), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1327), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(395), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43524,7 +43327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43541,65 +43344,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19106] = 25, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [18847] = 25, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(817), 1, + anon_sym_LBRACE, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_await, ACTIONS(1331), 1, - anon_sym_RBRACE, - STATE(971), 1, + anon_sym_from, + ACTIONS(1333), 1, + anon_sym_STAR, + STATE(982), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1087), 1, sym_string, - STATE(1325), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1847), 1, sym_expression, - STATE(2678), 1, + STATE(2521), 1, + sym_expression_list, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1113), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1285), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1283), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43607,7 +43410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43624,7 +43427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19214] = 25, + [18955] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -43641,21 +43444,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1333), 1, + ACTIONS(1335), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43666,7 +43469,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -43682,7 +43485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43690,7 +43493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43707,7 +43510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19322] = 25, + [19063] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -43724,21 +43527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1337), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43749,7 +43552,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -43765,7 +43568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43773,7 +43576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43790,7 +43593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19430] = 25, + [19171] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -43807,21 +43610,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1337), 1, + ACTIONS(1339), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43832,7 +43635,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -43848,7 +43651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43856,7 +43659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43873,7 +43676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19538] = 25, + [19279] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -43890,21 +43693,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43915,7 +43718,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -43931,7 +43734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43939,7 +43742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43956,65 +43759,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19646] = 25, - ACTIONS(67), 1, + [19387] = 25, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(676), 1, anon_sym_STAR, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + anon_sym_not, ACTIONS(1343), 1, - anon_sym_from, - STATE(870), 1, + anon_sym_RBRACE, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1024), 1, sym_string, - STATE(1135), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(2090), 1, sym_expression, - STATE(2325), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1341), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44022,7 +43825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44039,65 +43842,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19754] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [19495] = 25, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1345), 1, - anon_sym_from, - ACTIONS(1347), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(676), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1345), 1, + anon_sym_RBRACE, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1847), 1, + STATE(2090), 1, sym_expression, - STATE(2525), 1, - sym_expression_list, - STATE(2786), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44105,7 +43908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44122,64 +43925,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19862] = 24, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [19603] = 25, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(869), 1, - anon_sym_yield, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(1289), 1, + ACTIONS(676), 1, anon_sym_STAR, - STATE(927), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1347), 1, + anon_sym_RBRACE, + STATE(964), 1, sym_primary_expression, - STATE(983), 1, + STATE(1024), 1, sym_string, - STATE(1249), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(2090), 1, sym_expression, - STATE(2781), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1113), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2542), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(688), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44187,7 +43991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44204,65 +44008,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19968] = 25, - ACTIONS(311), 1, + [19711] = 24, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(672), 1, + ACTIONS(1293), 1, anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1295), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1349), 1, - anon_sym_RBRACE, - STATE(971), 1, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1974), 1, sym_expression, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2579), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44270,7 +44073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44287,7 +44090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20076] = 25, + [19817] = 25, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -44304,21 +44107,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(861), 1, + ACTIONS(903), 1, anon_sym_STAR_STAR, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1351), 1, + ACTIONS(1349), 1, anon_sym_RBRACE, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2090), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44329,7 +44132,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - STATE(2544), 2, + STATE(2535), 2, sym_dictionary_splat, sym_pair, ACTIONS(290), 3, @@ -44345,7 +44148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44353,7 +44156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44370,7 +44173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20184] = 25, + [19925] = 25, ACTIONS(783), 1, anon_sym_LPAREN, ACTIONS(791), 1, @@ -44379,29 +44182,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(801), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1353), 1, - anon_sym_from, - ACTIONS(1355), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + ACTIONS(1353), 1, + anon_sym_RBRACK, + STATE(983), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1040), 1, sym_string, - STATE(1316), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1863), 1, + STATE(1838), 1, sym_expression, - STATE(2549), 1, - sym_expression_list, - STATE(2630), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44409,17 +44214,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(1109), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -44428,7 +44230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44436,7 +44238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44453,65 +44255,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20292] = 25, - ACTIONS(311), 1, + [20032] = 24, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, ACTIONS(1357), 1, - anon_sym_RBRACE, - STATE(971), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1857), 1, sym_expression, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1355), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44519,7 +44319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44536,65 +44336,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20400] = 25, - ACTIONS(311), 1, + [20137] = 25, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, + ACTIONS(1351), 1, + anon_sym_COLON, ACTIONS(1359), 1, - anon_sym_RBRACE, - STATE(971), 1, + anon_sym_RBRACK, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1838), 1, sym_expression, - STATE(2678), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44602,7 +44401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44619,65 +44418,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20508] = 25, - ACTIONS(311), 1, + [20244] = 25, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, + ACTIONS(1351), 1, + anon_sym_COLON, ACTIONS(1361), 1, - anon_sym_RBRACE, - STATE(971), 1, + anon_sym_RBRACK, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1838), 1, sym_expression, - STATE(2678), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44685,7 +44483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44702,36 +44500,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20616] = 24, + [20351] = 25, + ACTIONS(783), 1, + anon_sym_LPAREN, ACTIONS(791), 1, anon_sym_LBRACK, ACTIONS(795), 1, anon_sym_LBRACE, ACTIONS(801), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(1083), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1157), 1, - anon_sym_LPAREN, - ACTIONS(1281), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1285), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + ACTIONS(1363), 1, + anon_sym_RBRACK, + STATE(983), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1040), 1, sym_string, - STATE(1316), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1974), 1, + STATE(1838), 1, sym_expression, - STATE(2630), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44739,27 +44541,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2580), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44767,83 +44565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [20722] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, - sym_primary_expression, - STATE(1325), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(667), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44860,64 +44582,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20817] = 25, - ACTIONS(737), 1, + [20458] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1365), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44925,7 +44647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44942,64 +44664,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20924] = 25, - ACTIONS(737), 1, + [20565] = 24, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1369), 1, anon_sym_COLON, - ACTIONS(1367), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1839), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1367), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45007,7 +44728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45024,64 +44745,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21031] = 25, - ACTIONS(737), 1, + [20670] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, - ACTIONS(1369), 1, + ACTIONS(1371), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45089,7 +44810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45106,63 +44827,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21138] = 24, - ACTIONS(67), 1, + [20777] = 24, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(676), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(903), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + anon_sym_not, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1024), 1, sym_string, - STATE(1135), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1828), 1, + STATE(2090), 1, sym_expression, - STATE(2591), 1, - sym_expression_list, - STATE(2672), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1371), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + STATE(2535), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45170,7 +44891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45187,64 +44908,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21243] = 25, - ACTIONS(737), 1, + [20882] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1373), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45252,7 +44973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45269,64 +44990,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21350] = 25, - ACTIONS(737), 1, + [20989] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1375), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45334,7 +45055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45351,64 +45072,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21457] = 25, - ACTIONS(737), 1, + [21096] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1377), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45416,7 +45137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45433,63 +45154,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21564] = 24, - ACTIONS(67), 1, + [21203] = 25, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, + ACTIONS(1351), 1, + anon_sym_COLON, ACTIONS(1379), 1, - anon_sym_from, - STATE(870), 1, + anon_sym_RBRACK, + STATE(983), 1, sym_primary_expression, - STATE(969), 1, + STATE(1040), 1, sym_string, - STATE(1135), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1838), 1, sym_expression, - STATE(2672), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45497,7 +45219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45514,64 +45236,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21669] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [21310] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, ACTIONS(1381), 1, - anon_sym_RBRACK, - STATE(992), 1, + anon_sym_from, + STATE(867), 1, sym_primary_expression, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1803), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1297), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45579,7 +45300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45596,64 +45317,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21776] = 25, - ACTIONS(737), 1, + [21415] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1383), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45661,7 +45382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45678,64 +45399,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21883] = 25, - ACTIONS(737), 1, + [21522] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1385), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45743,7 +45464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45760,64 +45481,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21990] = 25, - ACTIONS(737), 1, + [21629] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1387), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45825,7 +45546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45842,64 +45563,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22097] = 25, - ACTIONS(737), 1, + [21736] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1389), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45907,7 +45628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45924,64 +45645,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22204] = 25, - ACTIONS(737), 1, + [21843] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1391), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45989,7 +45710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46006,64 +45727,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22311] = 25, - ACTIONS(737), 1, + [21950] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1393), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46071,7 +45792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46088,64 +45809,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22418] = 25, - ACTIONS(737), 1, + [22057] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1395), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46153,7 +45874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46170,64 +45891,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22525] = 25, - ACTIONS(737), 1, + [22164] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1397), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46235,7 +45956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46252,64 +45973,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22632] = 25, - ACTIONS(737), 1, + [22271] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46317,7 +46038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46334,64 +46055,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22739] = 25, - ACTIONS(737), 1, + [22378] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1401), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46399,7 +46120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46416,64 +46137,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22846] = 25, - ACTIONS(737), 1, + [22485] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1403), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46481,7 +46202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46498,64 +46219,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22953] = 25, - ACTIONS(737), 1, + [22592] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1405), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46563,7 +46284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46580,64 +46301,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23060] = 25, - ACTIONS(737), 1, + [22699] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1407), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46645,7 +46366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46662,64 +46383,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23167] = 25, - ACTIONS(737), 1, + [22806] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1409), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46727,7 +46448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46744,64 +46465,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23274] = 25, - ACTIONS(737), 1, + [22913] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1411), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46809,7 +46530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46826,63 +46547,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23381] = 24, - ACTIONS(67), 1, + [23020] = 25, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, + ACTIONS(1351), 1, + anon_sym_COLON, ACTIONS(1413), 1, - anon_sym_from, - STATE(870), 1, + anon_sym_RBRACK, + STATE(983), 1, sym_primary_expression, - STATE(969), 1, + STATE(1040), 1, sym_string, - STATE(1135), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1838), 1, sym_expression, - STATE(2672), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(1313), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46890,7 +46612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46907,64 +46629,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23486] = 25, - ACTIONS(737), 1, + [23127] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, ACTIONS(1415), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46972,7 +46694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46989,63 +46711,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23593] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [23234] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1419), 1, - anon_sym_COLON, - STATE(992), 1, + STATE(867), 1, sym_primary_expression, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1867), 1, + STATE(1797), 1, sym_expression, - STATE(2786), 1, + STATE(2509), 1, + sym_expression_list, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, ACTIONS(1417), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47053,7 +46775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47070,64 +46792,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23698] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [23339] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1421), 1, - anon_sym_RBRACK, - STATE(992), 1, + ACTIONS(1419), 1, + anon_sym_from, + STATE(867), 1, sym_primary_expression, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1803), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1263), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47135,7 +46856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47152,64 +46873,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23805] = 25, - ACTIONS(737), 1, + [23444] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, - ACTIONS(1423), 1, + ACTIONS(1421), 1, anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1838), 1, sym_expression, - STATE(2561), 1, + STATE(2590), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47217,7 +46938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47234,63 +46955,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23912] = 24, - ACTIONS(737), 1, + [23551] = 25, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1427), 1, + ACTIONS(1351), 1, anon_sym_COLON, - STATE(992), 1, + ACTIONS(1423), 1, + anon_sym_RBRACK, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1878), 1, + STATE(1838), 1, sym_expression, - STATE(2786), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(1425), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47298,7 +47020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47315,63 +47037,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24017] = 24, - ACTIONS(311), 1, + [23658] = 25, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(861), 1, - anon_sym_STAR_STAR, - ACTIONS(1049), 1, - anon_sym_not, - STATE(971), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + ACTIONS(1425), 1, + anon_sym_RBRACK, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1838), 1, sym_expression, - STATE(2678), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - STATE(2544), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47379,7 +47102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47396,72 +47119,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24122] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [23765] = 19, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(676), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1429), 1, - anon_sym_RBRACK, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1060), 1, + sym_primary_expression, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1861), 1, - sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(320), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(324), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47478,64 +47194,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24229] = 25, - ACTIONS(737), 1, + [23859] = 24, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1351), 1, anon_sym_COLON, - ACTIONS(1431), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1790), 1, sym_expression, - STATE(2561), 1, + STATE(2279), 1, sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47543,7 +47257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47560,64 +47274,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24336] = 25, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [23963] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1433), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(867), 1, sym_primary_expression, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1821), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1427), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47625,7 +47336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47642,66 +47353,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24443] = 19, - ACTIONS(311), 1, + [24065] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(387), 1, + sym_identifier, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + STATE(867), 1, sym_primary_expression, - STATE(1325), 1, + STATE(962), 1, + sym_string, + STATE(1084), 1, sym_list_splat_pattern, + STATE(1821), 1, + sym_expression, + STATE(2769), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(1429), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(1435), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(324), 5, + ACTIONS(77), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1640), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47718,64 +47432,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24538] = 25, - ACTIONS(737), 1, + [24167] = 23, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1437), 1, - anon_sym_RBRACK, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1927), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1431), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47783,7 +47494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47800,64 +47511,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24645] = 25, - ACTIONS(737), 1, + [24269] = 23, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1247), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - ACTIONS(1439), 1, - anon_sym_RBRACK, - STATE(992), 1, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(937), 1, sym_primary_expression, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1800), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(2048), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47865,7 +47573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47882,62 +47590,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24752] = 24, - ACTIONS(311), 1, + [24371] = 23, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, + ACTIONS(1261), 1, + anon_sym_lambda, + STATE(965), 1, + sym_primary_expression, + STATE(1028), 1, sym_string, - STATE(1325), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1811), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2678), 1, + STATE(2767), 1, sym__named_expression_lhs, - STATE(2686), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1105), 2, + anon_sym_match, + anon_sym_type, + STATE(2034), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1103), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47945,7 +47652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47962,61 +47669,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24856] = 23, - ACTIONS(67), 1, + [24473] = 24, + ACTIONS(805), 1, + anon_sym_LPAREN, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1287), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1433), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(969), 1, + STATE(1087), 1, sym_string, - STATE(1135), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1968), 1, sym_expression, - STATE(2672), 1, + STATE(2533), 1, + sym_with_item, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48024,7 +47732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48041,61 +47749,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24958] = 23, - ACTIONS(737), 1, + [24577] = 23, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(992), 1, + STATE(982), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1087), 1, sym_string, - STATE(1451), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1939), 1, + STATE(1911), 1, sym_expression, - STATE(2786), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1417), 2, + ACTIONS(1297), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48103,7 +47811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48120,61 +47828,142 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25060] = 23, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [24679] = 24, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(967), 1, + ACTIONS(1437), 1, + anon_sym_COLON, + STATE(964), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1024), 1, sym_string, - STATE(1316), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1922), 1, sym_expression, - STATE(2630), 1, + STATE(2522), 1, + sym_with_item, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(793), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(324), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1714), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1296), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24783] = 24, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1439), 1, + anon_sym_LPAREN, + STATE(964), 1, + sym_primary_expression, + STATE(1024), 1, + sym_string, + STATE(1294), 1, + sym_list_splat_pattern, + STATE(1922), 1, + sym_expression, + STATE(2376), 1, + sym_with_item, + STATE(2758), 1, + sym_with_clause, + STATE(2777), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48182,7 +47971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48199,61 +47988,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25162] = 23, - ACTIONS(759), 1, + [24887] = 23, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1261), 1, anon_sym_lambda, - STATE(972), 1, + STATE(965), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1028), 1, sym_string, - STATE(1390), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1811), 1, sym_expression, - STATE(2684), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - STATE(1932), 2, + STATE(1898), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48261,7 +48050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48278,7 +48067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25264] = 23, + [24989] = 23, ACTIONS(783), 1, anon_sym_LPAREN, ACTIONS(791), 1, @@ -48287,25 +48076,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(801), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(967), 1, + STATE(983), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1040), 1, sym_string, - STATE(1316), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1977), 1, sym_expression, - STATE(2630), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -48313,17 +48102,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(1313), 2, - anon_sym_RPAREN, + ACTIONS(1297), 2, anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -48332,7 +48121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48340,7 +48129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48357,65 +48146,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25366] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [25091] = 23, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(795), 1, + anon_sym_LBRACE, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_STAR, + STATE(983), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1040), 1, + sym_string, + STATE(1413), 1, sym_list_splat_pattern, + STATE(1916), 1, + sym_expression, + STATE(2593), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(667), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(680), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(1367), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(781), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1732), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48432,9 +48225,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25460] = 19, + [25193] = 20, + ACTIONS(302), 1, + anon_sym_in, ACTIONS(311), 1, anon_sym_LBRACE, + ACTIONS(320), 1, + anon_sym_COMMA, ACTIONS(328), 1, sym_string_start, ACTIONS(672), 1, @@ -48445,11 +48242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(686), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1053), 1, + STATE(1060), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -48457,9 +48254,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(279), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(322), 2, sym_ellipsis, sym_float, @@ -48490,7 +48284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48507,61 +48301,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25554] = 23, - ACTIONS(737), 1, + [25289] = 23, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(992), 1, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1977), 1, sym_expression, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, + ACTIONS(1263), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48569,7 +48363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48586,61 +48380,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25656] = 23, - ACTIONS(737), 1, + [25391] = 23, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(992), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1808), 1, sym_expression, - STATE(2786), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(1313), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + STATE(2014), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48648,7 +48442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48665,7 +48459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25758] = 24, + [25493] = 24, ACTIONS(783), 1, anon_sym_LPAREN, ACTIONS(791), 1, @@ -48674,29 +48468,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(801), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1447), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1040), 1, sym_string, - STATE(1316), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1838), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2630), 1, + STATE(2590), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -48704,14 +48498,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -48720,7 +48514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48728,7 +48522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48745,62 +48539,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25862] = 24, - ACTIONS(737), 1, + [25597] = 23, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1830), 1, + STATE(1808), 1, sym_expression, - STATE(2353), 1, - sym_slice, - STATE(2786), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(1931), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48808,7 +48601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48825,69 +48618,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25966] = 23, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [25699] = 19, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(676), 1, anon_sym_STAR, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(686), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1060), 1, + sym_primary_expression, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1906), 1, - sym_expression, - STATE(2786), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(320), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - ACTIONS(1449), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(324), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48904,114 +48693,34 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26068] = 24, - ACTIONS(311), 1, + [25793] = 23, + ACTIONS(761), 1, + anon_sym_LPAREN, + ACTIONS(769), 1, + anon_sym_LBRACK, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(412), 1, + ACTIONS(891), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1991), 1, - sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2624), 1, - sym_with_clause, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [26172] = 23, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1247), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1253), 1, anon_sym_lambda, - STATE(972), 1, + STATE(937), 1, sym_primary_expression, - STATE(1044), 1, + STATE(972), 1, sym_string, - STATE(1390), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1786), 1, sym_expression, - STATE(2684), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49019,26 +48728,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - STATE(1976), 2, + STATE(2042), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49046,7 +48755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49063,61 +48772,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26274] = 23, - ACTIONS(805), 1, + [25895] = 23, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1261), 1, anon_sym_lambda, - STATE(928), 1, + STATE(965), 1, sym_primary_expression, - STATE(977), 1, + STATE(1028), 1, sym_string, - STATE(1200), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1779), 1, sym_expression, - STATE(2649), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - STATE(1955), 2, + STATE(2026), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49125,7 +48834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49142,61 +48851,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26376] = 23, - ACTIONS(67), 1, + [25997] = 23, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1261), 1, + anon_sym_lambda, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(1028), 1, sym_string, - STATE(1135), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1811), 1, sym_expression, - STATE(2672), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(1451), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(1955), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49204,7 +48913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49221,61 +48930,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26478] = 23, - ACTIONS(67), 1, + [26099] = 23, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + anon_sym_LBRACK, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1135), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1808), 1, sym_expression, - STATE(2672), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(1453), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(1900), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49283,7 +48992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49300,61 +49009,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26580] = 23, - ACTIONS(805), 1, + [26201] = 23, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1247), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1253), 1, anon_sym_lambda, - STATE(928), 1, + STATE(937), 1, sym_primary_expression, - STATE(977), 1, + STATE(972), 1, sym_string, - STATE(1200), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1788), 1, sym_expression, - STATE(2649), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - STATE(1925), 2, + STATE(2095), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49362,7 +49071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49379,7 +49088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26682] = 24, + [26303] = 24, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -49394,23 +49103,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1455), 1, + ACTIONS(1441), 1, anon_sym_COLON, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1922), 1, sym_expression, - STATE(2565), 1, + STATE(2522), 1, sym_with_item, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49434,7 +49143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49442,7 +49151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49459,61 +49168,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26786] = 23, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [26407] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(928), 1, + STATE(867), 1, sym_primary_expression, - STATE(977), 1, + STATE(962), 1, sym_string, - STATE(1200), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1821), 1, sym_expression, - STATE(2649), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - STATE(2074), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(1443), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49521,7 +49230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49538,61 +49247,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26888] = 23, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [26509] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(992), 1, + STATE(867), 1, sym_primary_expression, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1953), 1, + STATE(1821), 1, sym_expression, - STATE(2786), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(1457), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(747), 3, + ACTIONS(1445), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49600,7 +49309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49617,62 +49326,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26990] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [26611] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + STATE(867), 1, sym_primary_expression, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1861), 1, + STATE(1803), 1, sym_expression, - STATE(2561), 1, - sym_slice, - STATE(2786), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1447), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49680,7 +49388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49697,61 +49405,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27094] = 23, - ACTIONS(759), 1, + [26713] = 23, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - STATE(972), 1, + STATE(983), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(1894), 1, sym_expression, - STATE(2684), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - STATE(2010), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(1449), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49759,7 +49467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49776,62 +49484,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27196] = 24, - ACTIONS(311), 1, + [26815] = 24, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1814), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2678), 1, + STATE(2320), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, - STATE(2693), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49839,7 +49547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49856,7 +49564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27300] = 23, + [26919] = 24, ACTIONS(805), 1, anon_sym_LPAREN, ACTIONS(813), 1, @@ -49865,25 +49573,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(928), 1, + ACTIONS(1451), 1, + anon_sym_RPAREN, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1968), 1, sym_expression, - STATE(2649), 1, + STATE(2533), 1, + sym_with_item, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49891,17 +49603,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - STATE(2081), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49910,7 +49619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49918,7 +49627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49935,65 +49644,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27402] = 19, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [27023] = 23, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(773), 1, + anon_sym_LBRACE, + ACTIONS(779), 1, + sym_string_start, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, + anon_sym_not, + ACTIONS(913), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1247), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(937), 1, sym_primary_expression, - STATE(1325), 1, + STATE(972), 1, + sym_string, + STATE(1157), 1, sym_list_splat_pattern, + STATE(1786), 1, + sym_expression, + STATE(2616), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(1435), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(316), 3, + STATE(1929), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(759), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1746), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50010,62 +49723,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27496] = 24, - ACTIONS(311), 1, + [27125] = 24, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1441), 1, - anon_sym_LPAREN, - ACTIONS(1443), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1782), 1, sym_expression, - STATE(2442), 1, - sym_with_item, - STATE(2651), 1, - sym_with_clause, - STATE(2678), 1, + STATE(2247), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50073,7 +49786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50090,61 +49803,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27600] = 23, - ACTIONS(715), 1, + [27229] = 23, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1311), 1, + ACTIONS(1261), 1, anon_sym_lambda, - STATE(964), 1, + STATE(965), 1, sym_primary_expression, - STATE(980), 1, + STATE(1028), 1, sym_string, - STATE(1229), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1781), 1, sym_expression, - STATE(2645), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - STATE(1904), 2, + STATE(2066), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50152,7 +49865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50169,66 +49882,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27702] = 20, - ACTIONS(304), 1, - anon_sym_in, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(320), 1, - anon_sym_COMMA, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [27331] = 24, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, - ACTIONS(682), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(795), 1, + anon_sym_LBRACE, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_STAR, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1040), 1, + sym_string, + STATE(1413), 1, sym_list_splat_pattern, + STATE(1818), 1, + sym_expression, + STATE(2233), 1, + sym_slice, + STATE(2593), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(781), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1732), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50245,61 +49962,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27798] = 23, - ACTIONS(67), 1, + [27435] = 24, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(969), 1, + STATE(1040), 1, sym_string, - STATE(1135), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1792), 1, sym_expression, - STATE(2672), 1, + STATE(2341), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(1459), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50307,7 +50025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50324,61 +50042,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27900] = 23, - ACTIONS(759), 1, + [27539] = 24, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - STATE(972), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1804), 1, sym_expression, - STATE(2684), 1, + STATE(2375), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - STATE(2095), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50386,7 +50105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50403,61 +50122,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28002] = 23, - ACTIONS(715), 1, + [27643] = 24, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(980), 1, + STATE(1040), 1, sym_string, - STATE(1229), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1817), 1, sym_expression, - STATE(2645), 1, + STATE(2401), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - STATE(1916), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50465,7 +50185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50482,61 +50202,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28104] = 23, - ACTIONS(715), 1, + [27747] = 24, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(980), 1, + STATE(1040), 1, sym_string, - STATE(1229), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(1773), 1, sym_expression, - STATE(2645), 1, + STATE(2429), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - STATE(2038), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50544,7 +50265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50561,61 +50282,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28206] = 23, - ACTIONS(715), 1, + [27851] = 24, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(980), 1, + STATE(1040), 1, sym_string, - STATE(1229), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1778), 1, sym_expression, - STATE(2645), 1, + STATE(2440), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - STATE(2073), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50623,7 +50345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50640,61 +50362,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28308] = 23, - ACTIONS(715), 1, + [27955] = 24, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(871), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(1311), 1, - anon_sym_lambda, - STATE(964), 1, + ACTIONS(1351), 1, + anon_sym_COLON, + STATE(983), 1, sym_primary_expression, - STATE(980), 1, + STATE(1040), 1, sym_string, - STATE(1229), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1780), 1, sym_expression, - STATE(2645), 1, + STATE(2444), 1, + sym_slice, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - STATE(2042), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(725), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50702,7 +50425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50719,61 +50442,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28410] = 23, - ACTIONS(67), 1, + [28059] = 23, + ACTIONS(805), 1, + anon_sym_LPAREN, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1287), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(870), 1, + STATE(982), 1, sym_primary_expression, - STATE(969), 1, + STATE(1087), 1, sym_string, - STATE(1135), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1911), 1, sym_expression, - STATE(2672), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1263), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(1461), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50781,7 +50504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50798,61 +50521,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28512] = 23, - ACTIONS(67), 1, + [28161] = 24, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(870), 1, + ACTIONS(1439), 1, + anon_sym_LPAREN, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1024), 1, sym_string, - STATE(1135), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1922), 1, sym_expression, - STATE(2672), 1, + STATE(2376), 1, + sym_with_item, + STATE(2671), 1, + sym_with_clause, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(1463), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50860,7 +50584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50877,61 +50601,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28614] = 23, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [28265] = 24, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(1059), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - STATE(972), 1, + ACTIONS(1439), 1, + anon_sym_LPAREN, + STATE(964), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1024), 1, sym_string, - STATE(1390), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1922), 1, sym_expression, - STATE(2684), 1, + STATE(2376), 1, + sym_with_item, + STATE(2678), 1, + sym_with_clause, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, - sym_ellipsis, - sym_float, - ACTIONS(1067), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - STATE(2015), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50939,7 +50664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50956,65 +50681,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28716] = 19, + [28369] = 24, ACTIONS(311), 1, anon_sym_LBRACE, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, ACTIONS(328), 1, sym_string_start, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(676), 1, - anon_sym_STAR, + ACTIONS(412), 1, + sym_identifier, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1053), 1, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1439), 1, + anon_sym_LPAREN, + STATE(964), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1024), 1, + sym_string, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1922), 1, + sym_expression, + STATE(2376), 1, + sym_with_item, + STATE(2754), 1, + sym_with_clause, + STATE(2777), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, - anon_sym_match, - anon_sym_type, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1311), 16, + STATE(1714), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51031,62 +50761,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28810] = 24, - ACTIONS(783), 1, + [28473] = 23, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1247), 1, anon_sym_STAR, - ACTIONS(1465), 1, - anon_sym_RPAREN, - STATE(967), 1, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(937), 1, sym_primary_expression, - STATE(1034), 1, + STATE(972), 1, sym_string, - STATE(1316), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1786), 1, sym_expression, - STATE(2551), 1, - sym_with_item, - STATE(2630), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + STATE(1938), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51094,7 +50823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51111,62 +50840,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28914] = 24, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [28575] = 23, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(727), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, + sym_string_start, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1467), 1, - anon_sym_COLON, - STATE(971), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1325), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1809), 1, sym_expression, - STATE(2565), 1, - sym_with_item, - STATE(2678), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(833), 2, + anon_sym_match, + anon_sym_type, + STATE(2012), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(831), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51174,7 +50902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51191,62 +50919,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29018] = 24, - ACTIONS(737), 1, + [28677] = 23, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + ACTIONS(1271), 1, + anon_sym_lambda, + STATE(947), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1817), 1, + STATE(1785), 1, sym_expression, - STATE(2505), 1, - sym_slice, - STATE(2786), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + STATE(2036), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51254,7 +50981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51271,62 +50998,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29122] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [28779] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + STATE(867), 1, sym_primary_expression, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1803), 1, sym_expression, - STATE(2267), 1, - sym_slice, - STATE(2786), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(1453), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51334,7 +51060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51351,62 +51077,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29226] = 24, - ACTIONS(737), 1, + [28881] = 10, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + sym_string_start, + STATE(2251), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(277), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(745), 1, anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(320), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(279), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(1029), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [28956] = 23, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1819), 1, + STATE(1877), 1, sym_expression, - STATE(2314), 1, - sym_slice, - STATE(2786), 1, + STATE(2694), 1, + sym_expression_list, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51414,7 +51203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51431,62 +51220,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29330] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [29057] = 23, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1833), 1, + STATE(1878), 1, sym_expression, - STATE(2359), 1, - sym_slice, - STATE(2786), 1, + STATE(2775), 1, + sym_expression_list, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51494,7 +51281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51511,62 +51298,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29434] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [29158] = 23, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1459), 1, anon_sym_COLON, - STATE(992), 1, + STATE(964), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1024), 1, sym_string, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1958), 1, sym_expression, - STATE(2388), 1, - sym_slice, - STATE(2786), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51574,7 +51359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51591,381 +51376,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29538] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, - sym_string, - STATE(1451), 1, - sym_list_splat_pattern, - STATE(1811), 1, - sym_expression, - STATE(2414), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(735), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [29642] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [29259] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, - sym_string, - STATE(1451), 1, - sym_list_splat_pattern, - STATE(1814), 1, - sym_expression, - STATE(2440), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(735), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [29746] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, - sym_string, - STATE(1451), 1, - sym_list_splat_pattern, - STATE(1816), 1, - sym_expression, - STATE(2450), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(735), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [29850] = 24, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, - ACTIONS(1029), 1, - anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(410), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - anon_sym_COLON, - STATE(992), 1, - sym_primary_expression, - STATE(1110), 1, - sym_string, - STATE(1451), 1, - sym_list_splat_pattern, - STATE(1844), 1, - sym_expression, - STATE(2456), 1, - sym_slice, - STATE(2786), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(751), 2, - sym_ellipsis, - sym_float, - ACTIONS(1021), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(747), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1019), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(735), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1462), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [29954] = 23, - ACTIONS(805), 1, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(817), 1, - anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(928), 1, + STATE(867), 1, sym_primary_expression, - STATE(977), 1, + STATE(962), 1, sym_string, - STATE(1200), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1815), 1, sym_expression, - STATE(2649), 1, + STATE(2505), 1, + sym_expression_list, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - STATE(2086), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51973,7 +51437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51990,72 +51454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30056] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1469), 1, - anon_sym_for, - ACTIONS(1471), 1, - anon_sym_with, - ACTIONS(1473), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(320), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [30131] = 23, + [29360] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52070,22 +51469,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1297), 1, + anon_sym_COLON, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(1980), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, - STATE(2711), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -52108,7 +51507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52116,7 +51515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52133,7 +51532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30232] = 23, + [29461] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52148,21 +51547,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(1263), 1, anon_sym_COLON, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(1980), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -52186,7 +51585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52194,7 +51593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52211,7 +51610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30333] = 23, + [29562] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52226,21 +51625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1313), 1, - anon_sym_COLON, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1461), 1, + anon_sym_COLON, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(1975), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -52264,7 +51663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52272,7 +51671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52289,7 +51688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30434] = 23, + [29663] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52304,21 +51703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1463), 1, + anon_sym_COLON, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1975), 1, sym_expression, - STATE(2565), 1, - sym_with_item, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -52342,7 +51741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52350,7 +51749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52367,7 +51766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30535] = 23, + [29764] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52382,21 +51781,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1475), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1922), 1, sym_expression, - STATE(2678), 1, + STATE(2522), 1, + sym_with_item, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -52420,7 +51819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52428,7 +51827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52445,60 +51844,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30636] = 23, - ACTIONS(783), 1, + [29865] = 23, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1968), 1, sym_expression, - STATE(2551), 1, + STATE(2533), 1, sym_with_item, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52506,7 +51905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52523,7 +51922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30737] = 23, + [29966] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52538,21 +51937,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1477), 1, + ACTIONS(1465), 1, anon_sym_COLON, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1975), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -52576,7 +51975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52584,7 +51983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52601,7 +52000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30838] = 23, + [30067] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52616,22 +52015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1869), 1, + STATE(1871), 1, sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - STATE(2760), 1, + STATE(2594), 1, sym_expression_list, + STATE(2777), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -52654,7 +52053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52662,7 +52061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52679,34 +52078,23 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30939] = 10, + [30168] = 10, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1479), 1, - sym_identifier, - ACTIONS(1481), 1, - sym_string_start, - STATE(2344), 1, - sym_string, + ACTIONS(1467), 1, + anon_sym_for, + ACTIONS(1469), 1, + anon_sym_with, + ACTIONS(1471), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, + ACTIONS(302), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(277), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, ACTIONS(320), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -52721,186 +52109,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 22, - anon_sym_as, + ACTIONS(279), 15, anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, anon_sym_LT, anon_sym_GT, - [31014] = 23, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(277), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(661), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, - sym_primary_expression, - STATE(969), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30243] = 11, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(294), 1, + anon_sym_COLON, + ACTIONS(302), 1, + anon_sym_EQ, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + sym_string_start, + STATE(2251), 1, sym_string, - STATE(1135), 1, - sym_list_splat_pattern, - STATE(1826), 1, - sym_expression, - STATE(2568), 1, - sym_expression_list, - STATE(2672), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1679), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1081), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31115] = 23, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + ACTIONS(277), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(320), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(279), 22, + anon_sym_as, anon_sym_STAR, - ACTIONS(1483), 1, - anon_sym_COLON, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1896), 1, - sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1738), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1311), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31216] = 23, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [30320] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52915,22 +52224,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1473), 1, + anon_sym_COLON, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1872), 1, + STATE(1975), 1, sym_expression, - STATE(2678), 1, - sym__named_expression_lhs, STATE(2777), 1, - sym_expression_list, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -52953,7 +52262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52961,7 +52270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52978,7 +52287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31317] = 23, + [30421] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -52993,21 +52302,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1485), 1, + ACTIONS(1475), 1, anon_sym_COLON, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1975), 1, + STATE(1971), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -53031,7 +52340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53039,7 +52348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53056,87 +52365,21 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31418] = 11, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(304), 1, - anon_sym_EQ, - ACTIONS(1479), 1, - sym_identifier, - ACTIONS(1481), 1, - sym_string_start, - STATE(2344), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(320), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT, - anon_sym_GT, - [31495] = 10, + [30522] = 10, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1487), 1, + ACTIONS(1477), 1, anon_sym_for, - ACTIONS(1489), 1, + ACTIONS(1479), 1, anon_sym_with, - ACTIONS(1491), 1, + ACTIONS(1481), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, + ACTIONS(302), 2, anon_sym_COLON, anon_sym_EQ, ACTIONS(320), 13, @@ -53187,7 +52430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [31570] = 23, + [30597] = 23, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -53202,21 +52445,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1493), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1876), 1, sym_expression, - STATE(2678), 1, + STATE(2685), 1, + sym_expression_list, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -53240,7 +52483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53248,7 +52491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53265,60 +52508,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31671] = 23, - ACTIONS(311), 1, + [30698] = 22, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + anon_sym_LBRACK, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(733), 1, + sym_string_start, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(1495), 1, - anon_sym_COLON, - STATE(971), 1, + STATE(947), 1, sym_primary_expression, - STATE(1025), 1, + STATE(985), 1, sym_string, - STATE(1325), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1977), 1, + STATE(1830), 1, sym_expression, - STATE(2678), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(833), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(831), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53326,7 +52567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53343,7 +52584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31772] = 23, + [30796] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -53358,22 +52599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1848), 1, + STATE(1705), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, - STATE(2702), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -53396,7 +52635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53404,7 +52643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53421,58 +52660,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31873] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [30894] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1435), 1, anon_sym_STAR, STATE(964), 1, sym_primary_expression, - STATE(980), 1, + STATE(1024), 1, sym_string, - STATE(1229), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1980), 1, sym_expression, - STATE(2645), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53480,7 +52719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53497,58 +52736,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31971] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [30992] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1435), 1, anon_sym_STAR, STATE(964), 1, sym_primary_expression, - STATE(980), 1, + STATE(1024), 1, sym_string, - STATE(1229), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1784), 1, + STATE(1706), 1, sym_expression, - STATE(2645), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53556,7 +52795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53573,58 +52812,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32069] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [31090] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, + sym_identifier, + ACTIONS(410), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(964), 1, + STATE(867), 1, sym_primary_expression, - STATE(980), 1, + STATE(962), 1, sym_string, - STATE(1229), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1627), 1, sym_expression, - STATE(2645), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53632,7 +52871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53649,7 +52888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32167] = 22, + [31188] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -53664,19 +52903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1708), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -53700,7 +52939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53708,7 +52947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53725,58 +52964,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32265] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [31286] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(865), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(867), 1, - anon_sym_lambda, - ACTIONS(871), 1, - anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1435), 1, anon_sym_STAR, STATE(964), 1, sym_primary_expression, - STATE(980), 1, + STATE(1024), 1, sym_string, - STATE(1229), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1896), 1, sym_expression, - STATE(2645), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53784,7 +53023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53801,58 +53040,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32363] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [31384] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(928), 1, + STATE(867), 1, sym_primary_expression, - STATE(977), 1, + STATE(962), 1, sym_string, - STATE(1200), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1629), 1, sym_expression, - STATE(2649), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53860,7 +53099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53877,58 +53116,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32461] = 22, - ACTIONS(715), 1, + [31482] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(964), 1, + STATE(982), 1, sym_primary_expression, - STATE(980), 1, + STATE(1087), 1, sym_string, - STATE(1229), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1903), 1, sym_expression, - STATE(2645), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53936,7 +53175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53953,58 +53192,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32559] = 22, - ACTIONS(690), 1, + [31580] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1287), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1333), 1, + anon_sym_STAR, + STATE(982), 1, sym_primary_expression, - STATE(983), 1, + STATE(1087), 1, sym_string, - STATE(1249), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1904), 1, sym_expression, - STATE(2781), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54012,7 +53251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54029,58 +53268,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32657] = 22, - ACTIONS(690), 1, + [31678] = 22, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(1688), 1, sym_expression, - STATE(2781), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54088,7 +53327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54105,58 +53344,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32755] = 22, - ACTIONS(690), 1, + [31776] = 22, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1691), 1, sym_expression, - STATE(2781), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54164,7 +53403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54181,58 +53420,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32853] = 22, - ACTIONS(690), 1, + [31874] = 9, + ACTIONS(1487), 1, + anon_sym_else, + ACTIONS(1489), 1, + anon_sym_except, + ACTIONS(1491), 1, + anon_sym_finally, + STATE(711), 1, + sym_else_clause, + STATE(728), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(614), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1485), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(698), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(702), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1105), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1115), 1, anon_sym_await, - STATE(927), 1, + sym_true, + sym_false, + sym_none, + [31946] = 22, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + anon_sym_LBRACK, + ACTIONS(727), 1, + anon_sym_LBRACE, + ACTIONS(733), 1, + sym_string_start, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1783), 1, + STATE(1693), 1, sym_expression, - STATE(2781), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54240,7 +53542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54257,58 +53559,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32951] = 22, - ACTIONS(690), 1, + [32044] = 22, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1694), 1, sym_expression, - STATE(2781), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54316,7 +53618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54333,58 +53635,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33049] = 22, - ACTIONS(690), 1, + [32142] = 22, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1765), 1, + STATE(1695), 1, sym_expression, - STATE(2781), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54392,7 +53694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54409,58 +53711,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33147] = 22, - ACTIONS(690), 1, + [32240] = 22, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(927), 1, + ACTIONS(1155), 1, + sym_identifier, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(983), 1, + STATE(985), 1, sym_string, - STATE(1249), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1678), 1, sym_expression, - STATE(2781), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54468,7 +53770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54485,121 +53787,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33245] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(707), 1, - sym_else_clause, - STATE(817), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1497), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [32338] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, + ACTIONS(410), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [33317] = 22, - ACTIONS(783), 1, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(967), 1, + STATE(867), 1, sym_primary_expression, - STATE(1034), 1, + STATE(962), 1, sym_string, - STATE(1316), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1794), 1, sym_expression, - STATE(2630), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54607,7 +53846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54624,58 +53863,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33415] = 22, - ACTIONS(783), 1, + [32436] = 22, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1155), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(967), 1, + STATE(947), 1, sym_primary_expression, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1644), 1, sym_expression, - STATE(2630), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54683,7 +53922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54700,58 +53939,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33513] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [32534] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(967), 1, + STATE(867), 1, sym_primary_expression, - STATE(1034), 1, + STATE(962), 1, sym_string, - STATE(1316), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1630), 1, sym_expression, - STATE(2630), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54759,7 +53998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54776,58 +54015,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33611] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [32632] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, - sym_primary_expression, - STATE(1034), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, + anon_sym_STAR, + STATE(964), 1, + sym_primary_expression, + STATE(1024), 1, sym_string, - STATE(1316), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1993), 1, sym_expression, - STATE(2630), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1077), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54835,7 +54074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54852,58 +54091,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33709] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [32730] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(967), 1, + STATE(867), 1, sym_primary_expression, - STATE(1034), 1, + STATE(962), 1, sym_string, - STATE(1316), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1631), 1, sym_expression, - STATE(2630), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54911,7 +54150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54928,58 +54167,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33807] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, + [32828] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(967), 1, + STATE(867), 1, sym_primary_expression, - STATE(1034), 1, + STATE(962), 1, sym_string, - STATE(1316), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1636), 1, sym_expression, - STATE(2630), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54987,7 +54226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55004,58 +54243,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33905] = 22, - ACTIONS(783), 1, + [32926] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(967), 1, + STATE(937), 1, sym_primary_expression, - STATE(1034), 1, + STATE(972), 1, sym_string, - STATE(1316), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1748), 1, sym_expression, - STATE(2630), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55063,7 +54302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55080,121 +54319,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34003] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1505), 1, - anon_sym_finally, - ACTIONS(1507), 1, - anon_sym_except_STAR, - STATE(707), 1, - sym_else_clause, - STATE(817), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1497), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [34075] = 22, - ACTIONS(737), 1, + [33024] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(992), 1, + STATE(937), 1, sym_primary_expression, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1764), 1, sym_expression, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55202,7 +54378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55219,58 +54395,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34173] = 22, - ACTIONS(737), 1, + [33122] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(992), 1, + STATE(937), 1, sym_primary_expression, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1763), 1, sym_expression, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55278,7 +54454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55295,58 +54471,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34271] = 22, - ACTIONS(737), 1, + [33220] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(992), 1, + STATE(937), 1, sym_primary_expression, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1744), 1, sym_expression, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55354,7 +54530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55371,58 +54547,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34369] = 22, - ACTIONS(737), 1, + [33318] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(992), 1, + STATE(937), 1, sym_primary_expression, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1725), 1, sym_expression, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55430,7 +54606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55447,58 +54623,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34467] = 22, - ACTIONS(737), 1, + [33416] = 9, + ACTIONS(1487), 1, + anon_sym_else, + ACTIONS(1491), 1, + anon_sym_finally, + ACTIONS(1493), 1, + anon_sym_except_STAR, + STATE(711), 1, + sym_else_clause, + STATE(728), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(615), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1485), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(745), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(749), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1027), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1029), 1, anon_sym_lambda, - ACTIONS(1031), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1293), 1, + sym_true, + sym_false, + sym_none, + [33488] = 22, + ACTIONS(761), 1, + anon_sym_LPAREN, + ACTIONS(769), 1, + anon_sym_LBRACK, + ACTIONS(773), 1, + anon_sym_LBRACE, + ACTIONS(779), 1, + sym_string_start, + ACTIONS(891), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(907), 1, + anon_sym_not, + ACTIONS(909), 1, + anon_sym_lambda, + ACTIONS(913), 1, + anon_sym_await, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(992), 1, + STATE(937), 1, sym_primary_expression, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1742), 1, sym_expression, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55506,7 +54745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55523,49 +54762,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34565] = 22, + [33586] = 22, ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(992), 1, + STATE(965), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1028), 1, sym_string, - STATE(1451), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1776), 1, sym_expression, - STATE(2786), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -55574,7 +54813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55582,7 +54821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55599,58 +54838,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34663] = 22, - ACTIONS(737), 1, + [33684] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1031), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1293), 1, - sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(992), 1, + STATE(937), 1, sym_primary_expression, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1743), 1, sym_expression, - STATE(2786), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55658,7 +54897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55675,58 +54914,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34761] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [33782] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(928), 1, + STATE(867), 1, sym_primary_expression, - STATE(977), 1, + STATE(962), 1, sym_string, - STATE(1200), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1706), 1, + STATE(1821), 1, sym_expression, - STATE(2649), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55734,7 +54973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55751,58 +54990,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34859] = 22, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [33880] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(972), 1, + STATE(964), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1024), 1, sym_string, - STATE(1390), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1997), 1, sym_expression, - STATE(2684), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, - sym_ellipsis, - sym_float, - ACTIONS(1067), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55810,7 +55049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55827,61 +55066,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34957] = 23, - ACTIONS(737), 1, + [33978] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(1027), 1, - anon_sym_not, + ACTIONS(1021), 1, + anon_sym_STAR, ACTIONS(1029), 1, + anon_sym_not, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1509), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1515), 1, + ACTIONS(1119), 1, anon_sym_await, - STATE(1037), 1, + STATE(896), 1, sym_primary_expression, - STATE(1110), 1, + STATE(969), 1, sym_string, - STATE(1451), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1737), 1, sym_expression, - STATE(2786), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1513), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - STATE(1158), 2, - sym_attribute, - sym_subscript, - ACTIONS(747), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1511), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55889,9 +55125,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -55904,58 +55142,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35057] = 22, - ACTIONS(783), 1, + [34076] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1021), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1119), 1, + anon_sym_await, + STATE(896), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1996), 1, + STATE(1766), 1, sym_expression, - STATE(2630), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55963,7 +55201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55980,58 +55218,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35155] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [34174] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1029), 1, + anon_sym_not, + ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1119), 1, + anon_sym_await, + STATE(896), 1, sym_primary_expression, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1325), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1765), 1, sym_expression, - STATE(2678), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1117), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1115), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56039,7 +55277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56056,58 +55294,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35253] = 22, - ACTIONS(690), 1, + [34272] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1021), 1, anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1119), 1, anon_sym_await, - STATE(927), 1, + STATE(896), 1, sym_primary_expression, - STATE(983), 1, + STATE(969), 1, sym_string, - STATE(1249), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1726), 1, sym_expression, - STATE(2781), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56115,7 +55353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56132,58 +55370,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35351] = 22, - ACTIONS(783), 1, + [34370] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1021), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, + ACTIONS(1119), 1, + anon_sym_await, + STATE(896), 1, sym_primary_expression, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1316), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1900), 1, + STATE(1727), 1, sym_expression, - STATE(2630), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56191,7 +55429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56208,58 +55446,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35449] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [34468] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1029), 1, + anon_sym_not, + ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1119), 1, + anon_sym_await, + STATE(896), 1, sym_primary_expression, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1325), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(2028), 1, + STATE(1730), 1, sym_expression, - STATE(2678), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, + ACTIONS(1117), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(703), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(691), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1755), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1138), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34566] = 22, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, + anon_sym_STAR, + ACTIONS(1029), 1, + anon_sym_not, + ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1119), 1, + anon_sym_await, + STATE(896), 1, + sym_primary_expression, + STATE(969), 1, + sym_string, + STATE(1238), 1, + sym_list_splat_pattern, + STATE(1734), 1, + sym_expression, + STATE(2748), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(1117), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1115), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56267,7 +55581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56284,7 +55598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35547] = 22, + [34664] = 22, ACTIONS(805), 1, anon_sym_LPAREN, ACTIONS(813), 1, @@ -56293,25 +55607,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(928), 1, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1873), 1, + STATE(1825), 1, sym_expression, - STATE(2649), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -56319,14 +55633,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -56335,7 +55649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56343,7 +55657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56360,7 +55674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35645] = 22, + [34762] = 22, ACTIONS(805), 1, anon_sym_LPAREN, ACTIONS(813), 1, @@ -56369,25 +55683,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(928), 1, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1826), 1, sym_expression, - STATE(2649), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -56395,14 +55709,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -56411,7 +55725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56419,7 +55733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56436,58 +55750,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35743] = 22, - ACTIONS(783), 1, + [34860] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1985), 1, + STATE(1827), 1, sym_expression, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56495,7 +55809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56512,58 +55826,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35841] = 22, - ACTIONS(783), 1, + [34958] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1992), 1, + STATE(1828), 1, sym_expression, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56571,7 +55885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56588,58 +55902,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35939] = 22, - ACTIONS(67), 1, + [35056] = 22, + ACTIONS(805), 1, + anon_sym_LPAREN, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1287), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(870), 1, + STATE(982), 1, sym_primary_expression, - STATE(969), 1, + STATE(1087), 1, sym_string, - STATE(1135), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(1829), 1, sym_expression, - STATE(2672), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56647,7 +55961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56664,58 +55978,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36037] = 22, - ACTIONS(67), 1, + [35154] = 22, + ACTIONS(805), 1, + anon_sym_LPAREN, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1287), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(870), 1, + STATE(982), 1, sym_primary_expression, - STATE(969), 1, + STATE(1087), 1, sym_string, - STATE(1135), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1832), 1, sym_expression, - STATE(2672), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56723,7 +56037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56740,61 +56054,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36135] = 23, - ACTIONS(783), 1, + [35252] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1355), 1, - anon_sym_STAR, - ACTIONS(1517), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1523), 1, + ACTIONS(1287), 1, anon_sym_await, - STATE(1033), 1, + ACTIONS(1333), 1, + anon_sym_STAR, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1964), 1, + STATE(1833), 1, sym_expression, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1521), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - STATE(1400), 2, - sym_attribute, - sym_subscript, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1519), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56802,9 +56113,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 14, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -56817,7 +56130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36235] = 22, + [35350] = 22, ACTIONS(783), 1, anon_sym_LPAREN, ACTIONS(791), 1, @@ -56826,25 +56139,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(801), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(967), 1, + STATE(983), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1040), 1, sym_string, - STATE(1316), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1987), 1, + STATE(1750), 1, sym_expression, - STATE(2630), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -56852,14 +56165,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -56868,7 +56181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56876,7 +56189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56893,58 +56206,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36333] = 22, - ACTIONS(311), 1, + [35448] = 22, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(971), 1, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2094), 1, + STATE(1753), 1, sym_expression, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56952,7 +56265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56969,58 +56282,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36431] = 22, - ACTIONS(311), 1, + [35546] = 22, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(971), 1, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1724), 1, sym_expression, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57028,7 +56341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57045,58 +56358,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36529] = 22, - ACTIONS(67), 1, + [35644] = 22, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(870), 1, + STATE(983), 1, sym_primary_expression, - STATE(969), 1, + STATE(1040), 1, sym_string, - STATE(1135), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1754), 1, sym_expression, - STATE(2672), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57104,7 +56417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57121,58 +56434,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36627] = 22, - ACTIONS(311), 1, + [35742] = 22, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(318), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, + anon_sym_not, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(326), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(971), 1, + STATE(983), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(2099), 1, + STATE(1758), 1, sym_expression, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1003), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1001), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57180,7 +56493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57197,58 +56510,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36725] = 22, - ACTIONS(805), 1, + [35840] = 22, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1291), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(928), 1, + STATE(983), 1, sym_primary_expression, - STATE(977), 1, + STATE(1040), 1, sym_string, - STATE(1200), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1747), 1, sym_expression, - STATE(2649), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57256,7 +56569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57273,58 +56586,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36823] = 22, - ACTIONS(67), 1, + [35938] = 22, + ACTIONS(783), 1, + anon_sym_LPAREN, + ACTIONS(791), 1, + anon_sym_LBRACK, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(870), 1, + STATE(983), 1, sym_primary_expression, - STATE(969), 1, + STATE(1040), 1, sym_string, - STATE(1135), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1731), 1, sym_expression, - STATE(2672), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57332,7 +56645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57349,58 +56662,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36921] = 22, - ACTIONS(67), 1, + [36036] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(870), 1, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1024), 1, sym_string, - STATE(1135), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1666), 1, + STATE(1975), 1, sym_expression, - STATE(2672), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57408,7 +56721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57425,58 +56738,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37019] = 22, - ACTIONS(67), 1, + [36134] = 22, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(870), 1, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(1028), 1, sym_string, - STATE(1135), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(1793), 1, sym_expression, - STATE(2672), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57484,7 +56797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57501,7 +56814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37117] = 22, + [36232] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -57516,19 +56829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(2056), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57552,7 +56865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57560,7 +56873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57577,58 +56890,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37215] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [36330] = 23, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(795), 1, + anon_sym_LBRACE, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1011), 1, + anon_sym_lambda, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1495), 1, + sym_identifier, + ACTIONS(1501), 1, + anon_sym_await, + STATE(1022), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1920), 1, sym_expression, - STATE(2678), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1499), 2, + anon_sym_match, + anon_sym_type, + STATE(1155), 2, + sym_attribute, + sym_subscript, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1497), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57636,11 +56952,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1383), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57653,58 +56967,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37313] = 22, - ACTIONS(67), 1, + [36430] = 22, + ACTIONS(805), 1, + anon_sym_LPAREN, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1287), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(870), 1, + STATE(982), 1, sym_primary_expression, - STATE(969), 1, + STATE(1087), 1, sym_string, - STATE(1135), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1812), 1, + STATE(1945), 1, sym_expression, - STATE(2672), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57712,7 +57026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57729,58 +57043,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37411] = 22, - ACTIONS(67), 1, + [36528] = 22, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1119), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, + STATE(896), 1, sym_primary_expression, STATE(969), 1, sym_string, - STATE(1135), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1862), 1, + STATE(1935), 1, sym_expression, - STATE(2672), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57788,7 +57102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57805,58 +57119,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37509] = 22, - ACTIONS(67), 1, + [36626] = 22, + ACTIONS(805), 1, + anon_sym_LPAREN, + ACTIONS(813), 1, + anon_sym_LBRACK, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(410), 1, + ACTIONS(1287), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(870), 1, + STATE(982), 1, sym_primary_expression, - STATE(969), 1, + STATE(1087), 1, sym_string, - STATE(1135), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(2056), 1, + STATE(1883), 1, sym_expression, - STATE(2672), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57864,7 +57178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57881,58 +57195,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37607] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [36724] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(817), 1, + anon_sym_LBRACE, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(971), 1, + STATE(982), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1087), 1, sym_string, - STATE(1325), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1893), 1, sym_expression, - STATE(2678), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1285), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1283), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57940,7 +57254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57957,58 +57271,310 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37705] = 22, - ACTIONS(67), 1, + [36822] = 9, + ACTIONS(1507), 1, + anon_sym_else, + ACTIONS(1509), 1, + anon_sym_except, + ACTIONS(1511), 1, + anon_sym_finally, + STATE(707), 1, + sym_else_clause, + STATE(805), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(623), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1505), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [36894] = 9, + ACTIONS(1507), 1, + anon_sym_else, + ACTIONS(1511), 1, + anon_sym_finally, + ACTIONS(1513), 1, + anon_sym_except_STAR, + STATE(707), 1, + sym_else_clause, + STATE(805), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(608), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1503), 12, sym_string_start, - ACTIONS(387), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1505), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(410), 1, anon_sym_await, - ACTIONS(653), 1, + sym_true, + sym_false, + sym_none, + [36966] = 9, + ACTIONS(1487), 1, + anon_sym_else, + ACTIONS(1489), 1, + anon_sym_except, + ACTIONS(1491), 1, + anon_sym_finally, + STATE(709), 1, + sym_else_clause, + STATE(747), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(614), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1503), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(661), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1317), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1505), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [37038] = 9, + ACTIONS(1487), 1, + anon_sym_else, + ACTIONS(1491), 1, + anon_sym_finally, + ACTIONS(1493), 1, + anon_sym_except_STAR, + STATE(709), 1, + sym_else_clause, + STATE(747), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(615), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1503), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1505), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [37110] = 22, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + anon_sym_LBRACE, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(870), 1, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(1028), 1, sym_string, - STATE(1135), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1924), 1, + STATE(1805), 1, sym_expression, - STATE(2672), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58016,7 +57582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58033,58 +57599,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37803] = 22, - ACTIONS(737), 1, + [37208] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(992), 1, + STATE(982), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1087), 1, sym_string, - STATE(1451), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1835), 1, sym_expression, - STATE(2786), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58092,7 +57658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58109,58 +57675,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37901] = 22, - ACTIONS(783), 1, + [37306] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1087), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(967), 1, + STATE(982), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1890), 1, sym_expression, - STATE(2630), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58168,7 +57734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58185,7 +57751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37999] = 22, + [37404] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -58200,19 +57766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1892), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58236,7 +57802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58244,7 +57810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58261,61 +57827,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38097] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [37502] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, - anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1531), 1, + ACTIONS(326), 1, anon_sym_await, - STATE(983), 1, - sym_string, - STATE(1047), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, + anon_sym_STAR, + STATE(964), 1, sym_primary_expression, - STATE(1249), 1, - sym_list_splat_pattern, - STATE(1926), 1, + STATE(1024), 1, + sym_string, + STATE(1294), 1, + sym_list_splat_pattern, + STATE(1991), 1, sym_expression, - STATE(2781), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1529), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - STATE(1199), 2, - sym_attribute, - sym_subscript, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1527), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58323,9 +57886,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 14, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58338,58 +57903,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38197] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [37600] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, anon_sym_STAR, - STATE(971), 1, + ACTIONS(1029), 1, + anon_sym_not, + ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1119), 1, + anon_sym_await, + STATE(896), 1, sym_primary_expression, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1325), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1728), 1, sym_expression, - STATE(2678), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1117), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1115), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58397,7 +57962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58414,58 +57979,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38295] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [37698] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(817), 1, + anon_sym_LBRACE, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(971), 1, + STATE(982), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1087), 1, sym_string, - STATE(1325), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1923), 1, sym_expression, - STATE(2678), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1285), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1283), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58473,7 +58038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58490,58 +58055,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38393] = 22, - ACTIONS(715), 1, + [37796] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1287), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(964), 1, + STATE(982), 1, sym_primary_expression, - STATE(980), 1, + STATE(1087), 1, sym_string, - STATE(1229), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1962), 1, sym_expression, - STATE(2645), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58549,7 +58114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58566,58 +58131,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38491] = 22, - ACTIONS(67), 1, + [37894] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, - ACTIONS(387), 1, + ACTIONS(412), 1, sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(870), 1, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1024), 1, sym_string, - STATE(1135), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(2013), 1, sym_expression, - STATE(2672), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58625,7 +58190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58642,7 +58207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38589] = 22, + [37992] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -58657,19 +58222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1914), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58693,7 +58258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58701,7 +58266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58718,7 +58283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38687] = 22, + [38090] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -58733,19 +58298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2096), 1, + STATE(2015), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58769,7 +58334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58777,7 +58342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58794,58 +58359,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38785] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [38188] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, + sym_identifier, + ACTIONS(410), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(964), 1, + STATE(867), 1, sym_primary_expression, - STATE(980), 1, + STATE(962), 1, sym_string, - STATE(1229), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1782), 1, + STATE(1803), 1, sym_expression, - STATE(2645), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58853,7 +58418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58870,7 +58435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38883] = 22, + [38286] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -58887,17 +58452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(867), 1, sym_primary_expression, - STATE(969), 1, + STATE(962), 1, sym_string, - STATE(1135), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1670), 1, + STATE(1950), 1, sym_expression, - STATE(2672), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58921,7 +58486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58929,7 +58494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58946,7 +58511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38981] = 22, + [38384] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -58961,19 +58526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1925), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58997,7 +58562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59005,7 +58570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59022,58 +58587,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39079] = 22, - ACTIONS(690), 1, + [38482] = 22, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, ACTIONS(1009), 1, anon_sym_not, ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1105), 1, - sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1013), 1, anon_sym_await, - STATE(927), 1, - sym_primary_expression, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_STAR, STATE(983), 1, + sym_primary_expression, + STATE(1040), 1, sym_string, - STATE(1249), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(1909), 1, sym_expression, - STATE(2781), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59081,7 +58646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59098,58 +58663,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39177] = 22, - ACTIONS(737), 1, + [38580] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(992), 1, + STATE(982), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1087), 1, sym_string, - STATE(1451), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1999), 1, + STATE(1911), 1, sym_expression, - STATE(2786), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59157,7 +58722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59174,58 +58739,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39275] = 22, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [38678] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(928), 1, + STATE(867), 1, sym_primary_expression, - STATE(977), 1, + STATE(962), 1, sym_string, - STATE(1200), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(2068), 1, sym_expression, - STATE(2649), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59233,7 +58798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59250,84 +58815,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39373] = 23, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1355), 1, - anon_sym_STAR, - ACTIONS(1523), 1, - anon_sym_await, - ACTIONS(1533), 1, - sym_identifier, - STATE(967), 1, - sym_primary_expression, - STATE(1034), 1, - sym_string, - STATE(1316), 1, - sym_list_splat_pattern, - STATE(1964), 1, - sym_expression, - STATE(2630), 1, - sym__named_expression_lhs, + [38776] = 9, + ACTIONS(1507), 1, + anon_sym_else, + ACTIONS(1509), 1, + anon_sym_except, + ACTIONS(1511), 1, + anon_sym_finally, + STATE(698), 1, + sym_else_clause, + STATE(783), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, - sym_ellipsis, - sym_float, - ACTIONS(1537), 2, - anon_sym_match, - anon_sym_type, - STATE(1481), 2, - sym_attribute, - sym_subscript, - ACTIONS(793), 3, + STATE(623), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1485), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1535), 3, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(781), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [39473] = 22, + [38848] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -59342,19 +58893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(1721), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59378,7 +58929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59386,7 +58937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59403,58 +58954,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39571] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, + [38946] = 23, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, - anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, anon_sym_STAR, - STATE(971), 1, - sym_primary_expression, - STATE(1025), 1, + ACTIONS(1029), 1, + anon_sym_not, + ACTIONS(1031), 1, + anon_sym_lambda, + ACTIONS(1515), 1, + sym_identifier, + ACTIONS(1521), 1, + anon_sym_await, + STATE(969), 1, sym_string, - STATE(1325), 1, + STATE(1030), 1, + sym_primary_expression, + STATE(1238), 1, sym_list_splat_pattern, - STATE(2089), 1, + STATE(1905), 1, sym_expression, - STATE(2678), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1519), 2, + anon_sym_match, + anon_sym_type, + STATE(1141), 2, + sym_attribute, + sym_subscript, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1517), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59462,11 +59016,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1138), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59479,8 +59031,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39669] = 22, - ACTIONS(759), 1, + [39046] = 9, + ACTIONS(1507), 1, + anon_sym_else, + ACTIONS(1511), 1, + anon_sym_finally, + ACTIONS(1513), 1, + anon_sym_except_STAR, + STATE(698), 1, + sym_else_clause, + STATE(783), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(608), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1485), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [39118] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, ACTIONS(769), 1, anon_sym_LBRACK, @@ -59488,25 +59103,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(779), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(972), 1, + STATE(937), 1, sym_primary_expression, - STATE(1044), 1, + STATE(972), 1, sym_string, - STATE(1390), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1859), 1, sym_expression, - STATE(2684), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59514,23 +59129,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59538,7 +59153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59555,7 +59170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39767] = 22, + [39216] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -59572,17 +59187,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(867), 1, sym_primary_expression, - STATE(969), 1, + STATE(962), 1, sym_string, - STATE(1135), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1886), 1, + STATE(1823), 1, sym_expression, - STATE(2672), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59606,7 +59221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59614,7 +59229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59631,7 +59246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39865] = 22, + [39314] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -59648,17 +59263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(867), 1, sym_primary_expression, - STATE(969), 1, + STATE(962), 1, sym_string, - STATE(1135), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1796), 1, sym_expression, - STATE(2672), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59682,7 +59297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59690,7 +59305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59707,58 +59322,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39963] = 22, - ACTIONS(715), 1, + [39412] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(1021), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1119), 1, anon_sym_await, - ACTIONS(1305), 1, - anon_sym_STAR, - STATE(964), 1, + STATE(896), 1, sym_primary_expression, - STATE(980), 1, + STATE(969), 1, sym_string, - STATE(1229), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1756), 1, sym_expression, - STATE(2645), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59766,7 +59381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59783,61 +59398,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40061] = 23, - ACTIONS(737), 1, + [39510] = 22, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1515), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1539), 1, + ACTIONS(1291), 1, sym_identifier, - STATE(992), 1, + ACTIONS(1315), 1, + anon_sym_STAR, + STATE(983), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1040), 1, sym_string, - STATE(1451), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1977), 1, sym_expression, - STATE(2786), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1543), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - STATE(1482), 2, - sym_attribute, - sym_subscript, - ACTIONS(747), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1541), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59845,9 +59457,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59860,61 +59474,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40161] = 23, - ACTIONS(737), 1, + [39608] = 22, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1347), 1, - anon_sym_STAR, - ACTIONS(1515), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1545), 1, + ACTIONS(1155), 1, sym_identifier, - STATE(1037), 1, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(947), 1, sym_primary_expression, - STATE(1110), 1, + STATE(985), 1, sym_string, - STATE(1451), 1, + STATE(1142), 1, sym_list_splat_pattern, - STATE(1971), 1, + STATE(1670), 1, sym_expression, - STATE(2786), 1, + STATE(2674), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(1513), 2, + ACTIONS(833), 2, anon_sym_match, anon_sym_type, - STATE(1158), 2, - sym_attribute, - sym_subscript, - ACTIONS(747), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1511), 3, + ACTIONS(831), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(713), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1660), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59922,9 +59533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 14, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59937,58 +59550,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40261] = 22, - ACTIONS(690), 1, + [39706] = 23, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1333), 1, + anon_sym_STAR, + ACTIONS(1523), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1529), 1, anon_sym_await, - STATE(927), 1, + STATE(982), 1, sym_primary_expression, - STATE(983), 1, + STATE(1087), 1, sym_string, - STATE(1249), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1965), 1, sym_expression, - STATE(2781), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1527), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + STATE(1474), 2, + sym_attribute, + sym_subscript, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1525), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59996,11 +59612,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1411), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60013,58 +59627,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40359] = 22, - ACTIONS(690), 1, + [39806] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1021), 1, anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1119), 1, anon_sym_await, - STATE(927), 1, + STATE(896), 1, sym_primary_expression, - STATE(983), 1, + STATE(969), 1, sym_string, - STATE(1249), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1791), 1, + STATE(1885), 1, sym_expression, - STATE(2781), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60072,7 +59686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60089,135 +59703,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40457] = 23, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [39904] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1531), 1, - anon_sym_await, - ACTIONS(1547), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - STATE(927), 1, - sym_primary_expression, - STATE(983), 1, - sym_string, - STATE(1249), 1, - sym_list_splat_pattern, - STATE(1926), 1, - sym_expression, - STATE(2781), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(1551), 2, - anon_sym_match, - anon_sym_type, - STATE(1483), 2, - sym_attribute, - sym_subscript, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1549), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(688), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1760), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1198), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [40557] = 22, - ACTIONS(805), 1, + ACTIONS(410), 1, + anon_sym_await, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(817), 1, - anon_sym_LBRACE, - ACTIONS(823), 1, - sym_string_start, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, - sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(928), 1, + STATE(867), 1, sym_primary_expression, - STATE(977), 1, + STATE(962), 1, sym_string, - STATE(1200), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1919), 1, sym_expression, - STATE(2649), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60225,7 +59762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60242,7 +59779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40655] = 22, + [40002] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -60257,19 +59794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2110), 1, + STATE(2031), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -60293,7 +59830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60301,7 +59838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60318,184 +59855,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40753] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(710), 1, - sym_else_clause, - STATE(741), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1553), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [40100] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [40825] = 9, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1505), 1, - anon_sym_finally, - ACTIONS(1507), 1, - anon_sym_except_STAR, - STATE(710), 1, - sym_else_clause, - STATE(741), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1553), 12, + ACTIONS(81), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(387), 1, sym_identifier, + ACTIONS(410), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [40897] = 22, - ACTIONS(759), 1, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, - anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(972), 1, + STATE(867), 1, sym_primary_expression, - STATE(1044), 1, + STATE(962), 1, sym_string, - STATE(1390), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1632), 1, sym_expression, - STATE(2684), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60503,7 +59914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60520,58 +59931,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40995] = 22, - ACTIONS(783), 1, + [40198] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(967), 1, + STATE(937), 1, sym_primary_expression, - STATE(1034), 1, + STATE(972), 1, sym_string, - STATE(1316), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(2000), 1, + STATE(1771), 1, sym_expression, - STATE(2630), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(797), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1075), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(781), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60579,7 +59990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1418), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60596,58 +60007,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41093] = 22, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [40296] = 22, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(889), 1, + ACTIONS(318), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(326), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(972), 1, + STATE(964), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1024), 1, sym_string, - STATE(1390), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1837), 1, + STATE(1902), 1, sym_expression, - STATE(2684), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, - sym_ellipsis, - sym_float, - ACTIONS(1067), 2, + ACTIONS(297), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60655,7 +60066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60672,58 +60083,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41191] = 22, - ACTIONS(759), 1, - anon_sym_LPAREN, - ACTIONS(769), 1, - anon_sym_LBRACK, - ACTIONS(773), 1, + [40394] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(887), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1059), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(410), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(972), 1, + STATE(867), 1, sym_primary_expression, - STATE(1044), 1, + STATE(962), 1, sym_string, - STATE(1390), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1840), 1, + STATE(1628), 1, sym_expression, - STATE(2684), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60731,7 +60142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60748,8 +60159,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41289] = 22, - ACTIONS(759), 1, + [40492] = 22, + ACTIONS(761), 1, anon_sym_LPAREN, ACTIONS(769), 1, anon_sym_LBRACK, @@ -60757,25 +60168,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(779), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(891), 1, + sym_identifier, + ACTIONS(907), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(909), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(913), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(972), 1, + STATE(937), 1, sym_primary_expression, - STATE(1044), 1, + STATE(972), 1, sym_string, - STATE(1390), 1, + STATE(1157), 1, sym_list_splat_pattern, - STATE(1841), 1, + STATE(1741), 1, sym_expression, - STATE(2684), 1, + STATE(2616), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -60783,23 +60194,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(901), 2, anon_sym_match, anon_sym_type, ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(899), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(759), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1746), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60807,7 +60218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60824,110 +60235,34 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41387] = 22, - ACTIONS(759), 1, + [40590] = 23, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(972), 1, - sym_primary_expression, - STATE(1044), 1, - sym_string, - STATE(1390), 1, - sym_list_splat_pattern, - STATE(1842), 1, - sym_expression, - STATE(2684), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(775), 2, - sym_ellipsis, - sym_float, - ACTIONS(1067), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1065), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(757), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1818), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1389), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [41485] = 22, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1083), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_lambda, - ACTIONS(1087), 1, + ACTIONS(1501), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1531), 1, sym_identifier, - ACTIONS(1355), 1, - anon_sym_STAR, - STATE(967), 1, + STATE(983), 1, sym_primary_expression, - STATE(1034), 1, + STATE(1040), 1, sym_string, - STATE(1316), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1920), 1, sym_expression, - STATE(2630), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -60935,99 +60270,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1535), 2, anon_sym_match, anon_sym_type, - ACTIONS(793), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1075), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(781), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1418), 16, - sym_binary_operator, - sym_unary_operator, + STATE(1476), 2, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [41583] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, - anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, - sym_primary_expression, - STATE(969), 1, - sym_string, - STATE(1135), 1, - sym_list_splat_pattern, - STATE(1677), 1, - sym_expression, - STATE(2672), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(399), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1533), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61035,11 +60297,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1383), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61052,7 +60312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41681] = 22, + [40690] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -61067,19 +60327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1751), 1, + STATE(2077), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61103,7 +60363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61111,7 +60371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61128,58 +60388,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41779] = 22, - ACTIONS(690), 1, + [40788] = 22, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(708), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1021), 1, anon_sym_STAR, - ACTIONS(1009), 1, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(1011), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(1105), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1115), 1, + ACTIONS(1119), 1, anon_sym_await, - STATE(927), 1, + STATE(896), 1, sym_primary_expression, - STATE(983), 1, + STATE(969), 1, sym_string, - STATE(1249), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1762), 1, sym_expression, - STATE(2781), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(704), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(1113), 2, + ACTIONS(1117), 2, anon_sym_match, anon_sym_type, - ACTIONS(700), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1111), 3, + ACTIONS(1115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(688), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1760), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61187,7 +60447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1198), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61204,58 +60464,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41877] = 22, - ACTIONS(67), 1, + [40886] = 23, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, + anon_sym_STAR, + ACTIONS(1029), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1031), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - sym_identifier, - ACTIONS(410), 1, + ACTIONS(1521), 1, anon_sym_await, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(870), 1, + ACTIONS(1537), 1, + sym_identifier, + STATE(896), 1, sym_primary_expression, STATE(969), 1, sym_string, - STATE(1135), 1, + STATE(1238), 1, sym_list_splat_pattern, - STATE(1981), 1, + STATE(1905), 1, sym_expression, - STATE(2672), 1, + STATE(2748), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(399), 2, + ACTIONS(1541), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1477), 2, + sym_attribute, + sym_subscript, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(395), 3, + ACTIONS(1539), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(691), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1755), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61263,11 +60526,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1138), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61280,58 +60541,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41975] = 22, - ACTIONS(737), 1, + [40986] = 22, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(1029), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(1031), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1347), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(992), 1, + STATE(982), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1087), 1, sym_string, - STATE(1451), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1822), 1, sym_expression, - STATE(2786), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(751), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(1021), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, - ACTIONS(747), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1019), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(735), 4, + ACTIONS(803), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61339,7 +60600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1462), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61356,58 +60617,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42073] = 22, - ACTIONS(759), 1, + [41084] = 23, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(972), 1, + ACTIONS(1501), 1, + anon_sym_await, + ACTIONS(1543), 1, + sym_identifier, + STATE(1022), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1920), 1, sym_expression, - STATE(2684), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1499), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + STATE(1155), 2, + sym_attribute, + sym_subscript, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1497), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61415,11 +60679,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1383), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61432,7 +60694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42171] = 22, + [41184] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -61449,17 +60711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(1317), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(870), 1, + STATE(867), 1, sym_primary_expression, - STATE(969), 1, + STATE(962), 1, sym_string, - STATE(1135), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1626), 1, sym_expression, - STATE(2672), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61483,7 +60745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1679), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61491,7 +60753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1081), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61508,184 +60770,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42269] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(723), 1, - sym_else_clause, - STATE(836), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1553), 12, - sym__dedent, - sym_string_start, + [41282] = 22, + ACTIONS(737), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(747), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(751), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(863), 1, anon_sym_not, + ACTIONS(865), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1099), 1, sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42341] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1561), 1, - anon_sym_finally, - ACTIONS(1563), 1, - anon_sym_except_STAR, - STATE(723), 1, - sym_else_clause, - STATE(836), 1, - sym_finally_clause, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(965), 1, + sym_primary_expression, + STATE(1028), 1, + sym_string, + STATE(1326), 1, + sym_list_splat_pattern, + STATE(1872), 1, + sym_expression, + STATE(2767), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1553), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(753), 2, + sym_ellipsis, + sym_float, + ACTIONS(1105), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(749), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1555), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1103), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(735), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [42413] = 22, - ACTIONS(759), 1, + STATE(1820), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1343), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [41380] = 22, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(887), 1, + ACTIONS(1009), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(1011), 1, anon_sym_lambda, - ACTIONS(1059), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1013), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1291), 1, + sym_identifier, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(972), 1, + STATE(983), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1733), 1, sym_expression, - STATE(2684), 1, + STATE(2593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(1067), 2, + ACTIONS(1003), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1065), 3, + ACTIONS(1001), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(757), 4, + ACTIONS(781), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1818), 7, + STATE(1732), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61693,7 +60905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61710,7 +60922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42511] = 22, + [41478] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -61725,19 +60937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2123), 1, + STATE(2085), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61761,7 +60973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61769,7 +60981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61786,58 +60998,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42609] = 22, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [41576] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(865), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(387), 1, + sym_identifier, + ACTIONS(410), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(964), 1, + STATE(867), 1, sym_primary_expression, - STATE(980), 1, + STATE(962), 1, sym_string, - STATE(1229), 1, + STATE(1084), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1891), 1, sym_expression, - STATE(2645), 1, + STATE(2769), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(399), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(395), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1640), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61845,7 +61057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61862,7 +61074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42707] = 22, + [41674] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -61877,19 +61089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2103), 1, + STATE(2091), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61913,7 +61125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61921,7 +61133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61938,7 +61150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42805] = 22, + [41772] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -61953,19 +61165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2071), 1, + STATE(1699), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61989,7 +61201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61997,7 +61209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62014,7 +61226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42903] = 22, + [41870] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -62029,19 +61241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2005), 1, + STATE(2011), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62065,7 +61277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62073,7 +61285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62090,58 +61302,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43001] = 22, - ACTIONS(311), 1, + [41968] = 22, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(318), 1, - anon_sym_lambda, - ACTIONS(326), 1, - anon_sym_await, - ACTIONS(328), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(412), 1, - sym_identifier, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(971), 1, + STATE(965), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1028), 1, sym_string, - STATE(1325), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(2026), 1, + STATE(1799), 1, sym_expression, - STATE(2678), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(297), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(322), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(290), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(316), 3, + ACTIONS(1105), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(324), 4, + ACTIONS(1103), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62149,7 +61361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62166,7 +61378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43099] = 22, + [42066] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -62181,19 +61393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2091), 1, + STATE(2024), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62217,7 +61429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62225,7 +61437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62242,7 +61454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43197] = 22, + [42164] = 22, ACTIONS(805), 1, anon_sym_LPAREN, ACTIONS(813), 1, @@ -62251,25 +61463,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(823), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(1139), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1141), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1287), 1, + anon_sym_await, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(928), 1, + STATE(982), 1, sym_primary_expression, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1948), 1, sym_expression, - STATE(2649), 1, + STATE(2620), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62277,14 +61489,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1285), 2, anon_sym_match, anon_sym_type, ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1283), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -62293,7 +61505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1879), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62301,7 +61513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62318,7 +61530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43295] = 22, + [42262] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -62333,19 +61545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2018), 1, + STATE(2041), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62369,7 +61581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62377,7 +61589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62394,7 +61606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43393] = 22, + [42360] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -62409,19 +61621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2033), 1, + STATE(2050), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62445,7 +61657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62453,7 +61665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62470,58 +61682,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43491] = 22, - ACTIONS(805), 1, + [42458] = 22, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(841), 1, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1171), 1, + ACTIONS(1099), 1, sym_identifier, - ACTIONS(1265), 1, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(928), 1, + STATE(965), 1, sym_primary_expression, - STATE(977), 1, + STATE(1028), 1, sym_string, - STATE(1200), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1774), 1, sym_expression, - STATE(2649), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(819), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(815), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(803), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1695), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62529,7 +61741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1226), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62546,7 +61758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43589] = 22, + [42556] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -62561,19 +61773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2051), 1, + STATE(2055), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62597,7 +61809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62605,7 +61817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62622,7 +61834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43687] = 22, + [42654] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -62637,19 +61849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2053), 1, + STATE(2061), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62673,7 +61885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62681,7 +61893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62698,58 +61910,210 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43785] = 22, - ACTIONS(715), 1, + [42752] = 22, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(733), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(863), 1, + anon_sym_not, + ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(1099), 1, sym_identifier, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(965), 1, + sym_primary_expression, + STATE(1028), 1, + sym_string, + STATE(1326), 1, + sym_list_splat_pattern, + STATE(1819), 1, + sym_expression, + STATE(2767), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(753), 2, + sym_ellipsis, + sym_float, + ACTIONS(1105), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(749), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1103), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(735), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1820), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1343), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42850] = 22, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + anon_sym_LBRACE, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(863), 1, + anon_sym_not, ACTIONS(865), 1, + anon_sym_lambda, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, + anon_sym_await, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(965), 1, + sym_primary_expression, + STATE(1028), 1, + sym_string, + STATE(1326), 1, + sym_list_splat_pattern, + STATE(1769), 1, + sym_expression, + STATE(2767), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(753), 2, + sym_ellipsis, + sym_float, + ACTIONS(1105), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(749), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1103), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(735), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1820), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1343), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [42948] = 22, + ACTIONS(737), 1, + anon_sym_LPAREN, + ACTIONS(747), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + anon_sym_LBRACE, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(863), 1, anon_sym_not, - ACTIONS(867), 1, + ACTIONS(865), 1, anon_sym_lambda, - ACTIONS(871), 1, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(1107), 1, anon_sym_await, - ACTIONS(1305), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(964), 1, + STATE(965), 1, sym_primary_expression, - STATE(980), 1, + STATE(1028), 1, sym_string, - STATE(1229), 1, + STATE(1326), 1, sym_list_splat_pattern, - STATE(1778), 1, + STATE(1775), 1, sym_expression, - STATE(2645), 1, + STATE(2767), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(729), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(1105), 2, anon_sym_match, anon_sym_type, - ACTIONS(725), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(1103), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(713), 4, + ACTIONS(735), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1787), 7, + STATE(1820), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62757,7 +62121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1152), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62774,7 +62138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43883] = 22, + [43046] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -62789,19 +62153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2065), 1, + STATE(2067), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62825,7 +62189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62833,7 +62197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62850,7 +62214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43981] = 22, + [43144] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -62865,19 +62229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2067), 1, + STATE(1702), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62901,7 +62265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62909,7 +62273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62926,133 +62290,235 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44079] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(704), 1, - sym_else_clause, - STATE(753), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1497), 12, - sym__dedent, + [43242] = 22, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(672), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(682), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, + anon_sym_STAR, + STATE(964), 1, + sym_primary_expression, + STATE(1024), 1, + sym_string, + STATE(1294), 1, + sym_list_splat_pattern, + STATE(2069), 1, + sym_expression, + STATE(2777), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(290), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44151] = 9, - ACTIONS(1557), 1, - anon_sym_else, - ACTIONS(1561), 1, - anon_sym_finally, - ACTIONS(1563), 1, - anon_sym_except_STAR, - STATE(704), 1, - sym_else_clause, - STATE(753), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1497), 12, - sym__dedent, + STATE(1714), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1296), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43340] = 22, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, sym_string_start, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(672), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(682), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, + anon_sym_STAR, + STATE(964), 1, + sym_primary_expression, + STATE(1024), 1, + sym_string, + STATE(1294), 1, + sym_list_splat_pattern, + STATE(1703), 1, + sym_expression, + STATE(2777), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(290), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(316), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, + ACTIONS(324), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1714), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1296), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43438] = 22, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(318), 1, + anon_sym_lambda, + ACTIONS(326), 1, + anon_sym_await, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(412), 1, + sym_identifier, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1045), 1, + anon_sym_not, + ACTIONS(1435), 1, + anon_sym_STAR, + STATE(964), 1, + sym_primary_expression, + STATE(1024), 1, + sym_string, + STATE(1294), 1, + sym_list_splat_pattern, + STATE(1704), 1, + sym_expression, + STATE(2777), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(297), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(290), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44223] = 22, + STATE(1714), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1296), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43536] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -63067,19 +62533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(2068), 1, + STATE(2074), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -63103,7 +62569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63111,7 +62577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63128,7 +62594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44321] = 22, + [43634] = 22, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(318), 1, @@ -63143,19 +62609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1045), 1, anon_sym_not, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(971), 1, + STATE(964), 1, sym_primary_expression, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(2076), 1, sym_expression, - STATE(2678), 1, + STATE(2777), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -63179,7 +62645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1738), 7, + STATE(1714), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63187,7 +62653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1311), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63204,81 +62670,100 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44419] = 10, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1574), 1, - anon_sym_COLON, - ACTIONS(1577), 1, - anon_sym_EQ, - ACTIONS(1579), 1, + [43732] = 23, + ACTIONS(805), 1, + anon_sym_LPAREN, + ACTIONS(813), 1, anon_sym_LBRACK, - STATE(2077), 1, - sym_type_parameter, + ACTIONS(817), 1, + anon_sym_LBRACE, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1139), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_lambda, + ACTIONS(1333), 1, + anon_sym_STAR, + ACTIONS(1529), 1, + anon_sym_await, + ACTIONS(1545), 1, + sym_identifier, + STATE(1029), 1, + sym_primary_expression, + STATE(1087), 1, + sym_string, + STATE(1417), 1, + sym_list_splat_pattern, + STATE(1965), 1, + sym_expression, + STATE(2620), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1570), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(819), 2, + sym_ellipsis, + sym_float, + ACTIONS(1549), 2, + anon_sym_match, + anon_sym_type, + STATE(1352), 2, + sym_attribute, + sym_subscript, + ACTIONS(815), 3, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44492] = 7, - ACTIONS(284), 1, + anon_sym_TILDE, + ACTIONS(1547), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(803), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1879), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1411), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [43832] = 10, + ACTIONS(1553), 1, anon_sym_COMMA, - ACTIONS(292), 1, + ACTIONS(1558), 1, anon_sym_COLON_EQ, + ACTIONS(1560), 1, + anon_sym_COLON, + ACTIONS(1563), 1, + anon_sym_EQ, + ACTIONS(1565), 1, + anon_sym_LBRACK, + STATE(2114), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(320), 13, + ACTIONS(1567), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63292,7 +62777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 15, + ACTIONS(1556), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63308,7 +62793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 17, + ACTIONS(1551), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63316,7 +62801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_if, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -63326,78 +62810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44558] = 5, - ACTIONS(1587), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1583), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1585), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [44620] = 8, - ACTIONS(1557), 1, + [43905] = 8, + ACTIONS(1487), 1, anon_sym_else, - ACTIONS(1594), 1, + ACTIONS(1573), 1, anon_sym_elif, - STATE(629), 1, + STATE(630), 1, aux_sym_if_statement_repeat1, - STATE(722), 1, + STATE(697), 1, sym_elif_clause, - STATE(735), 1, + STATE(737), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1592), 12, + ACTIONS(1571), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63410,7 +62837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1590), 32, + ACTIONS(1569), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63443,21 +62870,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44688] = 8, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1600), 1, - anon_sym_elif, - STATE(622), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(781), 1, - sym_else_clause, + [43973] = 5, + ACTIONS(1579), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1596), 12, + STATE(608), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1575), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63470,7 +62892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1598), 32, + ACTIONS(1577), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63482,11 +62904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63503,18 +62927,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44756] = 7, - ACTIONS(1567), 1, + [44035] = 8, + ACTIONS(284), 1, anon_sym_COMMA, - ACTIONS(1572), 1, + ACTIONS(292), 1, anon_sym_COLON_EQ, + ACTIONS(294), 1, + anon_sym_COLON, + ACTIONS(302), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1577), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1581), 13, + ACTIONS(320), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63528,7 +62953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + ACTIONS(279), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63544,7 +62969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 17, + ACTIONS(277), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63562,14 +62987,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44822] = 8, + [44103] = 8, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(294), 1, anon_sym_COLON, - ACTIONS(304), 1, + ACTIONS(302), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, @@ -63622,23 +63047,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44890] = 8, - ACTIONS(1557), 1, + [44171] = 8, + ACTIONS(1507), 1, anon_sym_else, - ACTIONS(1594), 1, + ACTIONS(1586), 1, anon_sym_elif, - STATE(619), 1, + STATE(631), 1, aux_sym_if_statement_repeat1, - STATE(722), 1, + STATE(703), 1, sym_elif_clause, - STATE(818), 1, + STATE(813), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1596), 12, - sym__dedent, + ACTIONS(1582), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63649,7 +63074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1598), 32, + ACTIONS(1584), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63682,21 +63107,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44958] = 8, - ACTIONS(1557), 1, + [44239] = 8, + ACTIONS(1487), 1, anon_sym_else, - ACTIONS(1594), 1, + ACTIONS(1573), 1, anon_sym_elif, - STATE(629), 1, + STATE(607), 1, aux_sym_if_statement_repeat1, - STATE(722), 1, + STATE(697), 1, sym_elif_clause, - STATE(754), 1, + STATE(843), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1604), 12, + ACTIONS(1590), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63709,7 +63134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1602), 32, + ACTIONS(1588), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63742,21 +63167,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45026] = 8, - ACTIONS(1557), 1, + [44307] = 8, + ACTIONS(1487), 1, anon_sym_else, - ACTIONS(1594), 1, + ACTIONS(1573), 1, anon_sym_elif, - STATE(614), 1, + STATE(619), 1, aux_sym_if_statement_repeat1, - STATE(722), 1, + STATE(697), 1, sym_elif_clause, - STATE(757), 1, + STATE(738), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1608), 12, + ACTIONS(1594), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63769,7 +63194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1606), 32, + ACTIONS(1592), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63802,83 +63227,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45094] = 8, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_COLON, - ACTIONS(304), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(320), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45162] = 8, - ACTIONS(1501), 1, - anon_sym_else, + [44375] = 5, ACTIONS(1600), 1, - anon_sym_elif, - STATE(638), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(843), 1, - sym_else_clause, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1604), 12, + STATE(614), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1598), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63889,7 +63249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1602), 32, + ACTIONS(1596), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63901,11 +63261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63922,23 +63284,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45230] = 8, - ACTIONS(1501), 1, - anon_sym_else, - ACTIONS(1600), 1, - anon_sym_elif, - STATE(625), 1, - aux_sym_if_statement_repeat1, - STATE(719), 1, - sym_elif_clause, - STATE(845), 1, - sym_else_clause, + [44437] = 5, + ACTIONS(1603), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1608), 12, + STATE(615), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1575), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63949,7 +63306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1606), 32, + ACTIONS(1577), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63961,11 +63318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63982,80 +63341,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45298] = 7, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(304), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(320), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45364] = 8, - ACTIONS(1501), 1, + [44499] = 8, + ACTIONS(1507), 1, anon_sym_else, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_elif, - STATE(638), 1, + STATE(631), 1, aux_sym_if_statement_repeat1, - STATE(719), 1, + STATE(703), 1, sym_elif_clause, - STATE(738), 1, + STATE(793), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1592), 12, + ACTIONS(1571), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -64068,7 +63368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1590), 32, + ACTIONS(1569), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64101,16 +63401,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45432] = 5, - ACTIONS(1614), 1, - anon_sym_except, + [44567] = 8, + ACTIONS(1507), 1, + anon_sym_else, + ACTIONS(1586), 1, + anon_sym_elif, + STATE(611), 1, + aux_sym_if_statement_repeat1, + STATE(703), 1, + sym_elif_clause, + STATE(794), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1610), 12, + ACTIONS(1594), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -64123,7 +63428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1612), 34, + ACTIONS(1592), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64135,13 +63440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64158,73 +63461,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45494] = 5, - ACTIONS(1617), 1, - anon_sym_except, + [44635] = 7, + ACTIONS(1553), 1, + anon_sym_COMMA, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(627), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1610), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1563), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1567), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1556), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1612), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1551), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45556] = 5, - ACTIONS(1620), 1, - anon_sym_except_STAR, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [44701] = 8, + ACTIONS(1487), 1, + anon_sym_else, + ACTIONS(1573), 1, + anon_sym_elif, + STATE(630), 1, + aux_sym_if_statement_repeat1, + STATE(697), 1, + sym_elif_clause, + STATE(753), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(628), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1583), 12, + ACTIONS(1582), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64237,7 +63547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 34, + ACTIONS(1584), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64249,13 +63559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64272,19 +63580,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45618] = 6, - ACTIONS(1627), 1, + [44769] = 8, + ACTIONS(1507), 1, + anon_sym_else, + ACTIONS(1586), 1, anon_sym_elif, - STATE(629), 1, + STATE(616), 1, aux_sym_if_statement_repeat1, - STATE(722), 1, + STATE(703), 1, sym_elif_clause, + STATE(752), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 12, - sym__dedent, + ACTIONS(1590), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64295,7 +63607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1623), 33, + ACTIONS(1588), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64307,7 +63619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -64329,16 +63640,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45681] = 6, - ACTIONS(1632), 1, + [44837] = 7, + ACTIONS(284), 1, anon_sym_COMMA, - ACTIONS(1639), 1, - anon_sym_EQ, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 14, + ACTIONS(302), 2, anon_sym_COLON, + anon_sym_EQ, + ACTIONS(320), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64352,7 +63665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1635), 15, + ACTIONS(279), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64368,7 +63681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 17, + ACTIONS(277), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64386,19 +63699,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45744] = 5, + [44903] = 7, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 3, + ACTIONS(302), 2, + anon_sym_COLON, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(669), 13, + ACTIONS(320), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(279), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64412,14 +63738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64429,35 +63758,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45805] = 5, + [44969] = 5, + ACTIONS(1606), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 3, - anon_sym_DOT, + STATE(623), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1598), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(669), 13, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1596), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45031] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64468,14 +63834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64498,33 +63869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45866] = 6, - ACTIONS(1639), 1, - anon_sym_EQ, + [45088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1637), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1635), 15, + ACTIONS(1615), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64537,13 +63890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 17, + ACTIONS(1613), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64555,11 +63910,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45929] = 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 16, + ACTIONS(1615), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64576,7 +63944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 32, + ACTIONS(1613), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64609,15 +63977,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45986] = 3, + [45202] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 16, + ACTIONS(1619), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1625), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64628,19 +64003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1645), 32, + ACTIONS(1617), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -64663,15 +64033,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46043] = 3, + [45263] = 6, + ACTIONS(1629), 1, + anon_sym_COMMA, + ACTIONS(1636), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 16, + ACTIONS(1634), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1632), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64684,15 +64072,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 32, + ACTIONS(1627), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64704,24 +64090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46100] = 3, + [45326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 16, + ACTIONS(1611), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64738,7 +64111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 32, + ACTIONS(1609), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64771,19 +64144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46157] = 6, - ACTIONS(1649), 1, + [45383] = 6, + ACTIONS(1642), 1, anon_sym_elif, - STATE(638), 1, + STATE(630), 1, aux_sym_if_statement_repeat1, - STATE(719), 1, + STATE(697), 1, sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 12, + ACTIONS(1640), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64794,7 +64167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1623), 33, + ACTIONS(1638), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64828,72 +64201,108 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46220] = 5, + [45446] = 6, + ACTIONS(1645), 1, + anon_sym_elif, + STATE(631), 1, + aux_sym_if_statement_repeat1, + STATE(703), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 3, - anon_sym_DOT, + ACTIONS(1640), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1660), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1657), 13, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1652), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1638), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46281] = 6, - ACTIONS(1577), 1, - anon_sym_EQ, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45509] = 7, + ACTIONS(1650), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_COMMA, + ACTIONS(1619), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1648), 2, + anon_sym_DOT, anon_sym_COLON, - ACTIONS(1581), 13, + ACTIONS(1625), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 12, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1617), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64907,10 +64316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1667), 15, + [45574] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1654), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64923,13 +64337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 17, + ACTIONS(1652), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64941,16 +64357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46344] = 6, - ACTIONS(1577), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1581), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64964,10 +64370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + [45631] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1658), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64980,13 +64391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 17, + ACTIONS(1656), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64998,11 +64411,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46407] = 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 16, + ACTIONS(1662), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65019,7 +64445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 32, + ACTIONS(1660), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65052,28 +64478,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46464] = 7, - ACTIONS(1675), 1, - anon_sym_PIPE, + [45745] = 6, + ACTIONS(1666), 1, + anon_sym_COMMA, + ACTIONS(1673), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 2, + ACTIONS(1671), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1669), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(1673), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1660), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [45808] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(674), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1657), 12, + ACTIONS(688), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(669), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -65081,12 +64561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 28, + ACTIONS(667), 29, sym__newline, anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_not, anon_sym_and, @@ -65110,16 +64591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46529] = 6, - ACTIONS(1684), 1, + [45869] = 6, + ACTIONS(1553), 1, + anon_sym_COMMA, + ACTIONS(1563), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, - anon_sym_COMMA, + ACTIONS(1567), 14, anon_sym_COLON, - ACTIONS(1686), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65133,7 +64614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1682), 15, + ACTIONS(1556), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65149,7 +64630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 17, + ACTIONS(1551), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65167,16 +64648,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46592] = 6, - ACTIONS(1577), 1, + [45932] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(674), 3, anon_sym_EQ, - ACTIONS(1664), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(688), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(669), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(667), 29, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45993] = 6, + ACTIONS(1673), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 14, + ACTIONS(1666), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1671), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65190,7 +64727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1667), 15, + ACTIONS(1669), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65206,7 +64743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 17, + ACTIONS(1664), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65224,15 +64761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46655] = 6, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1577), 1, + [46056] = 6, + ACTIONS(1563), 1, anon_sym_EQ, + ACTIONS(1677), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 14, + ACTIONS(1567), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -65247,7 +64784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + ACTIONS(1680), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65263,7 +64800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 17, + ACTIONS(1675), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65281,16 +64818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46718] = 6, - ACTIONS(1679), 1, - anon_sym_COMMA, - ACTIONS(1684), 1, + [46119] = 6, + ACTIONS(1563), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 14, + ACTIONS(1677), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1567), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65304,7 +64841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1682), 15, + ACTIONS(1680), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65320,7 +64857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 17, + ACTIONS(1675), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65338,15 +64875,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46781] = 3, + [46182] = 6, + ACTIONS(1563), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 16, + ACTIONS(1553), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1567), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1556), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65359,15 +64914,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 32, + ACTIONS(1551), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -65379,6 +64932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [46245] = 6, + ACTIONS(1636), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1634), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65392,15 +64955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46838] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1694), 16, + ACTIONS(1632), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65413,15 +64971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 32, + ACTIONS(1627), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -65433,26 +64989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46895] = 3, + [46308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, + ACTIONS(1684), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -65464,7 +65007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 34, + ACTIONS(1682), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65499,11 +65042,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46951] = 3, + [46364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1686), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65516,7 +65059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1688), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65552,82 +65095,170 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47007] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [46420] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 13, sym_string_start, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1706), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1708), 1, anon_sym_STAR, - ACTIONS(1714), 1, + anon_sym_except_STAR, anon_sym_LBRACK, - ACTIONS(1716), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1692), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1584), 1, - sym_list_splat_pattern, - STATE(1632), 1, - sym_primary_expression, - STATE(2088), 1, - sym_pattern, + sym_true, + sym_false, + sym_none, + [46476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(1696), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1712), 2, + ACTIONS(1694), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1585), 2, - sym_attribute, - sym_subscript, - STATE(2122), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46532] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1698), 13, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_except_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1710), 3, + sym_ellipsis, + sym_float, + ACTIONS(1700), 34, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(324), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(995), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [47099] = 3, + [46588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1704), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65640,7 +65271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1702), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65676,16 +65307,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47155] = 3, + [46644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, + ACTIONS(1706), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65694,7 +65324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 34, + ACTIONS(1708), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65706,6 +65336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -65729,13 +65360,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47211] = 3, + [46700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1706), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65746,7 +65377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1708), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65782,15 +65413,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47267] = 3, + [46756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, - sym__dedent, + ACTIONS(1710), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65799,7 +65431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1712), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65817,7 +65449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65835,16 +65466,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47323] = 3, + [46812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 13, - sym__dedent, + ACTIONS(1714), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65853,7 +65483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 34, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65871,6 +65501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65888,11 +65519,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47379] = 3, + [46868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1704), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65905,7 +65536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1702), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65917,13 +65548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -65941,13 +65572,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47435] = 3, + [46924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 13, - sym__dedent, + ACTIONS(1684), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -65959,7 +65590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 34, + ACTIONS(1682), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65994,16 +65625,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47491] = 3, + [46980] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 13, + ACTIONS(1690), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66012,7 +65642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 34, + ACTIONS(1692), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66024,6 +65654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -66047,16 +65678,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47547] = 3, + [47036] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 13, + ACTIONS(1686), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66065,7 +65695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1738), 34, + ACTIONS(1688), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66077,6 +65707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -66100,16 +65731,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47603] = 3, + [47092] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, + ACTIONS(1714), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66118,7 +65748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 34, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66136,6 +65766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66153,11 +65784,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47659] = 3, + [47148] = 21, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(1718), 1, + sym_identifier, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_STAR, + ACTIONS(1728), 1, + anon_sym_LBRACK, + ACTIONS(1730), 1, + anon_sym_await, + STATE(1024), 1, + sym_string, + STATE(1577), 1, + sym_list_splat_pattern, + STATE(1613), 1, + sym_primary_expression, + STATE(2089), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(1726), 2, + anon_sym_match, + anon_sym_type, + STATE(1571), 2, + sym_attribute, + sym_subscript, + STATE(2052), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1724), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(995), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [47240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1690), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66170,7 +65872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1692), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66206,16 +65908,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47715] = 3, + [47296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, - sym__dedent, + ACTIONS(1686), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66224,7 +65925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 34, + ACTIONS(1688), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66236,6 +65937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -66259,11 +65961,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47771] = 3, + [47352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, + ACTIONS(1698), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66276,7 +65978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 35, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66312,13 +66014,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47827] = 3, + [47408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, - sym__dedent, + ACTIONS(1698), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66329,7 +66031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 35, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66365,11 +66067,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47883] = 3, + [47464] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1696), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66382,7 +66084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66394,13 +66096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66418,16 +66120,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47939] = 3, + [47520] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 13, + ACTIONS(1698), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66436,7 +66137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 34, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66448,6 +66149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -66471,13 +66173,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47995] = 3, + [47576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 13, + ACTIONS(1734), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -66489,7 +66191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1738), 34, + ACTIONS(1732), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66524,11 +66226,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48051] = 3, + [47632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1736), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66541,7 +66243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1738), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66577,13 +66279,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48107] = 3, + [47688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1746), 12, + ACTIONS(1686), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66594,7 +66296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 35, + ACTIONS(1688), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66630,119 +66332,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48163] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1720), 12, + [47744] = 21, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1718), 1, + sym_identifier, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_STAR, + ACTIONS(1728), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1718), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1730), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [48219] = 3, + STATE(1024), 1, + sym_string, + STATE(1577), 1, + sym_list_splat_pattern, + STATE(1613), 1, + sym_primary_expression, + STATE(2089), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(1726), 2, + anon_sym_match, + anon_sym_type, + STATE(1571), 2, + sym_attribute, + sym_subscript, + STATE(2052), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(316), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1752), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(1724), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(324), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [48275] = 3, + ACTIONS(981), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [47836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, - sym__dedent, + ACTIONS(1740), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66753,7 +66420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1742), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66765,13 +66432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66789,15 +66456,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48331] = 3, + [47892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, - sym__dedent, + ACTIONS(1744), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66806,7 +66474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1746), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66824,7 +66492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66842,11 +66509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48387] = 3, + [47948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 13, + ACTIONS(1706), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66860,7 +66527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1760), 34, + ACTIONS(1708), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66895,11 +66562,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48443] = 3, + [48004] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1748), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66912,7 +66579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1750), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66948,15 +66615,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48499] = 3, + [48060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1752), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66965,7 +66633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1754), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66983,7 +66651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67001,16 +66668,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48555] = 3, + [48116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1762), 13, + ACTIONS(1706), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67019,7 +66685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1764), 34, + ACTIONS(1708), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67037,6 +66703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67054,16 +66721,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48611] = 3, + [48172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 13, + ACTIONS(1710), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67072,7 +66738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1734), 34, + ACTIONS(1712), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67084,6 +66750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -67107,16 +66774,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48667] = 3, + [48228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1762), 13, + ACTIONS(1698), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67125,7 +66791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1764), 34, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67143,6 +66809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67160,13 +66827,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48723] = 3, + [48284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1706), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67177,7 +66844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1708), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67189,13 +66856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67213,11 +66880,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48779] = 3, + [48340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1710), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67230,7 +66897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1712), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67266,13 +66933,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48835] = 3, + [48396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, - sym__dedent, + ACTIONS(1690), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67283,7 +66950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1692), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67319,87 +66986,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48891] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1704), 1, - sym_identifier, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1708), 1, - anon_sym_STAR, - ACTIONS(1714), 1, - anon_sym_LBRACK, - ACTIONS(1716), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1584), 1, - sym_list_splat_pattern, - STATE(1632), 1, - sym_primary_expression, - STATE(2088), 1, - sym_pattern, + [48452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1712), 2, - anon_sym_match, - anon_sym_type, - STATE(1585), 2, - sym_attribute, - sym_subscript, - STATE(2122), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1710), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(981), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [48983] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1758), 13, + ACTIONS(1690), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67408,7 +67003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1760), 34, + ACTIONS(1692), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67426,6 +67021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67443,11 +67039,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49039] = 3, + [48508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, + ACTIONS(1736), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67460,7 +67056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 35, + ACTIONS(1738), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67496,13 +67092,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49095] = 3, + [48564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, + ACTIONS(1686), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67514,7 +67110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 34, + ACTIONS(1688), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67549,13 +67145,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49151] = 3, + [48620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, - sym__dedent, + ACTIONS(1710), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67566,7 +67162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1712), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67578,13 +67174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67602,13 +67198,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49207] = 3, + [48676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1742), 12, - sym__dedent, + ACTIONS(1710), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67619,7 +67215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 35, + ACTIONS(1712), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67655,13 +67251,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49263] = 3, + [48732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 12, + ACTIONS(1740), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67672,7 +67268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1730), 35, + ACTIONS(1742), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67708,15 +67304,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49319] = 3, + [48788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1698), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67725,7 +67322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1700), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67743,7 +67340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67761,13 +67357,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49375] = 3, + [48844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 13, + ACTIONS(1706), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67779,7 +67375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 34, + ACTIONS(1708), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67814,15 +67410,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49431] = 3, + [48900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1710), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67831,7 +67428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1712), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67843,7 +67440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -67867,15 +67463,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49487] = 3, + [48956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1690), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67884,7 +67481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1692), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67902,7 +67499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67920,13 +67516,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49543] = 3, + [49012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, - sym__dedent, + ACTIONS(1686), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, @@ -67938,7 +67534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1718), 34, + ACTIONS(1688), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67973,15 +67569,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49599] = 3, + [49068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1744), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -67990,7 +67587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 35, + ACTIONS(1746), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68002,7 +67599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -68026,11 +67622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49655] = 3, + [49124] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1746), 12, + ACTIONS(1748), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68043,7 +67639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1748), 35, + ACTIONS(1750), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68079,15 +67675,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49711] = 3, + [49180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1752), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -68096,7 +67693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 35, + ACTIONS(1754), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68114,7 +67711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68132,15 +67728,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49767] = 3, + [49236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, - sym__dedent, + ACTIONS(1734), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -68149,7 +67746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1732), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68161,7 +67758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -68185,13 +67781,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49823] = 3, + [49292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 12, + ACTIONS(1758), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68202,7 +67798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1766), 35, + ACTIONS(1756), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68214,14 +67810,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49347] = 5, + ACTIONS(1511), 1, anon_sym_finally, + STATE(803), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1760), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1762), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68238,11 +67887,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49879] = 3, + [49406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1766), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68255,7 +67904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 34, + ACTIONS(1764), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68290,17 +67939,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49934] = 5, - ACTIONS(1557), 1, + [49461] = 5, + ACTIONS(1507), 1, anon_sym_else, - STATE(751), 1, + STATE(826), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1776), 12, - sym__dedent, + ACTIONS(1768), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68311,7 +67960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1770), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68344,15 +67993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49993] = 5, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(759), 1, - sym_finally_clause, + [49520] = 5, + ACTIONS(1487), 1, + anon_sym_else, + STATE(726), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1774), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68365,7 +68014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68398,10 +68047,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50052] = 5, - ACTIONS(1501), 1, + [49579] = 5, + ACTIONS(1507), 1, anon_sym_else, - STATE(744), 1, + STATE(798), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, @@ -68419,7 +68068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1774), 32, + ACTIONS(1778), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68452,15 +68101,169 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50111] = 5, - ACTIONS(1501), 1, + [49638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1758), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1756), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49693] = 5, + ACTIONS(1487), 1, anon_sym_else, - STATE(739), 1, + STATE(765), 1, sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1768), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1770), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1782), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1780), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [49807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1766), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68473,7 +68276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1764), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68485,6 +68288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68506,15 +68311,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50170] = 5, - ACTIONS(1505), 1, + [49862] = 5, + ACTIONS(1511), 1, anon_sym_finally, - STATE(748), 1, + STATE(818), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1784), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68527,7 +68332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1786), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68560,17 +68365,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50229] = 5, - ACTIONS(1557), 1, + [49921] = 5, + ACTIONS(1507), 1, anon_sym_else, - STATE(790), 1, + STATE(779), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, - sym__dedent, + ACTIONS(1774), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68581,7 +68386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68614,15 +68419,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50288] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(782), 1, - sym_else_clause, + [49980] = 5, + ACTIONS(1491), 1, + anon_sym_finally, + STATE(757), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1784), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68635,7 +68440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1786), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68668,15 +68473,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50347] = 5, - ACTIONS(1505), 1, - anon_sym_finally, - STATE(787), 1, - sym_finally_clause, + [50039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1782), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68689,7 +68490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1780), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68701,6 +68502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68722,17 +68525,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50406] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(765), 1, - sym_else_clause, + [50094] = 5, + ACTIONS(1491), 1, + anon_sym_finally, + STATE(745), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1760), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68743,7 +68546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68776,10 +68579,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50465] = 5, - ACTIONS(1501), 1, + [50153] = 5, + ACTIONS(1507), 1, anon_sym_else, - STATE(770), 1, + STATE(825), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, @@ -68797,7 +68600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 32, + ACTIONS(1790), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68830,13 +68633,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50524] = 3, + [50212] = 5, + ACTIONS(1487), 1, + anon_sym_else, + STATE(770), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1794), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68847,7 +68654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 34, + ACTIONS(1792), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68859,8 +68666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68882,15 +68687,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50579] = 5, - ACTIONS(1557), 1, + [50271] = 5, + ACTIONS(1487), 1, anon_sym_else, - STATE(838), 1, + STATE(742), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1776), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68903,7 +68708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 32, + ACTIONS(1778), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68936,17 +68741,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50638] = 5, - ACTIONS(1501), 1, + [50330] = 5, + ACTIONS(1487), 1, anon_sym_else, - STATE(777), 1, + STATE(763), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 12, + ACTIONS(1788), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68957,7 +68762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1804), 32, + ACTIONS(1790), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68990,13 +68795,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50697] = 3, + [50389] = 5, + ACTIONS(1487), 1, + anon_sym_else, + STATE(754), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 12, + ACTIONS(1798), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69007,7 +68816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1770), 34, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69019,8 +68828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69042,13 +68849,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50752] = 3, + [50448] = 5, + ACTIONS(1507), 1, + anon_sym_else, + STATE(815), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1798), 12, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69059,7 +68870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 34, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69071,8 +68882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -69094,17 +68903,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50807] = 5, - ACTIONS(1557), 1, + [50507] = 5, + ACTIONS(1507), 1, anon_sym_else, - STATE(805), 1, + STATE(832), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 12, - sym__dedent, + ACTIONS(1794), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69115,7 +68924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1804), 32, + ACTIONS(1792), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69148,11 +68957,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50866] = 3, + [50566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1806), 12, + ACTIONS(1800), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69165,7 +68974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1808), 34, + ACTIONS(1802), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69177,13 +68986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69200,15 +69008,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50921] = 5, - ACTIONS(1557), 1, - anon_sym_else, - STATE(825), 1, - sym_else_clause, + [50620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1806), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69221,7 +69025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1804), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69238,6 +69042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69254,15 +69059,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50980] = 5, - ACTIONS(1501), 1, - anon_sym_else, - STATE(736), 1, - sym_else_clause, + [50674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1806), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69275,7 +69076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1804), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69292,6 +69093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69308,11 +69110,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51039] = 3, + [50728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1806), 12, + ACTIONS(1800), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69325,7 +69127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1808), 34, + ACTIONS(1802), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69337,13 +69139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69360,15 +69161,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51094] = 5, - ACTIONS(1561), 1, - anon_sym_finally, - STATE(847), 1, - sym_finally_clause, + [50782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1810), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69381,7 +69178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1808), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69414,13 +69211,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51153] = 3, + [50835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1814), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69431,7 +69228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 33, + ACTIONS(1812), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69448,7 +69245,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69465,11 +69261,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51207] = 3, + [50888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1818), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69482,7 +69278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 33, + ACTIONS(1816), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69499,7 +69295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69516,11 +69311,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51261] = 3, + [50941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1820), 12, + ACTIONS(1822), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69533,7 +69328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1818), 33, + ACTIONS(1820), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69550,7 +69345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69567,153 +69361,113 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51315] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [50994] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1824), 12, sym_string_start, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1826), 1, - anon_sym_RPAREN, - ACTIONS(1828), 1, anon_sym_STAR, - ACTIONS(1834), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, - STATE(2424), 1, - sym_pattern, - STATE(2773), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, - anon_sym_match, - anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1830), 3, + sym_ellipsis, + sym_float, + ACTIONS(1826), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(324), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [51407] = 22, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [51047] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1760), 12, + sym__dedent, sym_string_start, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, anon_sym_STAR, - ACTIONS(1834), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, - anon_sym_await, - ACTIONS(1838), 1, - anon_sym_RPAREN, - STATE(1025), 1, - sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, - STATE(2424), 1, - sym_pattern, - STATE(2694), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, - anon_sym_match, - anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1830), 3, + sym_ellipsis, + sym_float, + ACTIONS(1762), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(324), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [51499] = 3, + [51100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1820), 12, + ACTIONS(1830), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69724,7 +69478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1818), 33, + ACTIONS(1828), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69741,7 +69495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69758,13 +69511,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51553] = 3, + [51153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, + ACTIONS(1503), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69775,7 +69528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(1505), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69808,11 +69561,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51606] = 3, + [51206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 12, + ACTIONS(1832), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69825,7 +69578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1846), 32, + ACTIONS(1834), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69858,13 +69611,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51659] = 3, + [51259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1838), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69875,7 +69628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69908,13 +69661,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51712] = 3, + [51312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(1842), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69925,7 +69678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1854), 32, + ACTIONS(1840), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69958,11 +69711,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51765] = 3, + [51365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1846), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69975,7 +69728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70008,11 +69761,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51818] = 3, + [51418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1850), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70025,7 +69778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1848), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70058,13 +69811,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51871] = 3, + [51471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, + ACTIONS(1854), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70075,7 +69828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1852), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70108,13 +69861,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51924] = 3, + [51524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, + ACTIONS(1858), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70125,7 +69878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(1856), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70158,13 +69911,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51977] = 3, + [51577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1862), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70208,13 +69961,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52030] = 3, + [51630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1872), 12, + ACTIONS(1866), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70225,7 +69978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1874), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70258,13 +70011,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52083] = 3, + [51683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1876), 12, + ACTIONS(1870), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70275,7 +70028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1878), 32, + ACTIONS(1868), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70308,13 +70061,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52136] = 3, + [51736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1874), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70325,7 +70078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70358,81 +70111,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52189] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2279), 1, - sym_pattern, - STATE(2795), 1, - sym_pattern_list, + [51789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [52278] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1878), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70443,7 +70128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70476,13 +70161,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52331] = 3, + [51842] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, + ACTIONS(1882), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70493,7 +70178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(1880), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70526,11 +70211,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52384] = 3, + [51895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1876), 12, + ACTIONS(1886), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70543,7 +70228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1878), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70576,11 +70261,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52437] = 3, + [51948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1890), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70593,7 +70278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70626,163 +70311,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52490] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1900), 12, + [52001] = 21, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1435), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1902), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1892), 1, sym_identifier, + ACTIONS(1894), 1, + anon_sym_LPAREN, + ACTIONS(1900), 1, + anon_sym_in, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [52543] = 3, + STATE(1024), 1, + sym_string, + STATE(1600), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(1618), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1906), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, + ACTIONS(1898), 2, anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [52596] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1908), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(1604), 2, + sym_attribute, + sym_subscript, + STATE(1619), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(316), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1910), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1896), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(324), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [52649] = 3, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(1784), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70793,7 +70396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1914), 32, + ACTIONS(1786), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70826,11 +70429,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52702] = 3, + [52143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1896), 12, + ACTIONS(1908), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70843,7 +70446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1898), 32, + ACTIONS(1906), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70876,13 +70479,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52755] = 3, + [52196] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, + ACTIONS(1912), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70893,7 +70496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1910), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70926,11 +70529,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52808] = 3, + [52249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1916), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70943,7 +70546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1914), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70976,11 +70579,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52861] = 3, + [52302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(1920), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70993,7 +70596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71026,11 +70629,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52914] = 3, + [52355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1497), 12, + ACTIONS(1922), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71043,7 +70646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1499), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71076,11 +70679,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52967] = 3, + [52408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, + ACTIONS(1928), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71093,7 +70696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1926), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71126,11 +70729,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53020] = 3, + [52461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1932), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71143,7 +70746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71176,13 +70779,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53073] = 3, + [52514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, - sym__dedent, + ACTIONS(1934), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71193,7 +70796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(1936), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71226,11 +70829,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53126] = 3, + [52567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, + ACTIONS(1940), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71243,7 +70846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71276,11 +70879,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53179] = 3, + [52620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1908), 12, + ACTIONS(1944), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71293,7 +70896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1910), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71326,11 +70929,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53232] = 3, + [52673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1912), 12, + ACTIONS(1948), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71343,7 +70946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1914), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71376,11 +70979,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53285] = 3, + [52726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1952), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71393,7 +70996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1950), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71426,11 +71029,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53338] = 3, + [52779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 12, + ACTIONS(1956), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71443,7 +71046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1936), 32, + ACTIONS(1954), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71476,11 +71079,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53391] = 3, + [52832] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, + ACTIONS(1960), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71493,7 +71096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1958), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71526,11 +71129,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53444] = 3, + [52885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1485), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71543,7 +71146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71576,11 +71179,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53497] = 3, + [52938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1844), 12, + ACTIONS(1964), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71593,7 +71196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1846), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71626,11 +71229,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53550] = 3, + [52991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, + ACTIONS(1810), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71643,7 +71246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1808), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71676,13 +71279,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53603] = 3, + [53044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1968), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71693,7 +71296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1966), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71726,81 +71329,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53656] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1822), 1, - sym_identifier, - ACTIONS(1824), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_STAR, - ACTIONS(1834), 1, - anon_sym_LBRACK, - ACTIONS(1836), 1, - anon_sym_await, - ACTIONS(1952), 1, - anon_sym_RPAREN, - STATE(1025), 1, - sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, - STATE(2611), 1, - sym_pattern, + [53097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1832), 2, - anon_sym_match, - anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1830), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [53745] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(1972), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71811,7 +71346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1970), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71844,81 +71379,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53798] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2293), 1, - sym_pattern, - STATE(2783), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [53887] = 3, + [53150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1976), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71929,7 +71396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71962,13 +71429,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53940] = 3, + [53203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, + ACTIONS(1980), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71979,7 +71446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72012,11 +71479,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53993] = 3, + [53256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1984), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72029,7 +71496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72062,11 +71529,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54046] = 3, + [53309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(1988), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72079,7 +71546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1854), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72112,113 +71579,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54099] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1966), 12, + [53362] = 21, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1990), 1, + sym_identifier, + ACTIONS(1992), 1, anon_sym_LPAREN, + ACTIONS(1994), 1, anon_sym_STAR, + ACTIONS(2000), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1968), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(2002), 1, + anon_sym_RBRACK, + ACTIONS(2004), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [54152] = 3, + STATE(1024), 1, + sym_string, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, + STATE(2524), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(1998), 2, + anon_sym_match, + anon_sym_type, + STATE(1585), 2, + sym_attribute, + sym_subscript, + STATE(2536), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(316), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1972), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1996), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(324), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [54205] = 3, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53451] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(2008), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72229,7 +71664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72262,13 +71697,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54258] = 3, + [53504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, + ACTIONS(2012), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72279,7 +71714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72312,11 +71747,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54311] = 3, + [53557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(2016), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72329,7 +71764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(2014), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72362,11 +71797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54364] = 3, + [53610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1814), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72379,7 +71814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1812), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72412,11 +71847,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54417] = 3, + [53663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(2020), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72429,7 +71864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72462,11 +71897,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54470] = 3, + [53716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, + ACTIONS(1818), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72479,7 +71914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1992), 32, + ACTIONS(1816), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72512,13 +71947,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54523] = 3, + [53769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 12, + ACTIONS(2024), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72529,7 +71964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(2022), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72562,11 +71997,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54576] = 3, + [53822] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(1822), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72579,7 +72014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1820), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72612,11 +72047,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54629] = 3, + [53875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, + ACTIONS(2028), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72629,7 +72064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(2026), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72662,13 +72097,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54682] = 3, + [53928] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 12, + ACTIONS(2032), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72679,7 +72114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2004), 32, + ACTIONS(2030), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72712,13 +72147,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54735] = 3, + [53981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, + ACTIONS(2036), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72729,7 +72164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(2034), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72762,13 +72197,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54788] = 3, + [54034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, - sym__dedent, + ACTIONS(1760), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72779,7 +72214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1762), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72812,11 +72247,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54841] = 3, + [54087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(1824), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72829,7 +72264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1826), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72862,13 +72297,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54894] = 3, + [54140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, + ACTIONS(2040), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72879,7 +72314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(2038), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72912,11 +72347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54947] = 3, + [54193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 12, + ACTIONS(1842), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72929,7 +72364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1555), 32, + ACTIONS(1840), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72962,13 +72397,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55000] = 3, + [54246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, - sym__dedent, + ACTIONS(1846), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72979,7 +72414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(1844), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73012,11 +72447,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55053] = 3, + [54299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2018), 12, + ACTIONS(1850), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73029,7 +72464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(1848), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73062,79 +72497,161 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55106] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [54352] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1854), 12, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1888), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1890), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1852), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2511), 1, - sym_pattern, - STATE(2804), 1, - sym_pattern_list, + sym_true, + sym_false, + sym_none, + [54405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(1882), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1880), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2042), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + sym_ellipsis, + sym_float, + ACTIONS(2044), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(324), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55195] = 3, + [54511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(1832), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73147,7 +72664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2022), 32, + ACTIONS(1834), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73180,13 +72697,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55248] = 3, + [54564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, - sym__dedent, + ACTIONS(1858), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73197,7 +72714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1856), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73230,13 +72747,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55301] = 3, + [54617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, - sym__dedent, + ACTIONS(1862), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73247,7 +72764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1860), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73280,13 +72797,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55354] = 3, + [54670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, - sym__dedent, + ACTIONS(1866), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73297,7 +72814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73330,11 +72847,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55407] = 3, + [54723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 12, + ACTIONS(1870), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73347,7 +72864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2032), 32, + ACTIONS(1868), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73380,13 +72897,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55460] = 3, + [54776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 12, - sym__dedent, + ACTIONS(1874), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73397,7 +72914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2034), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73430,11 +72947,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55513] = 3, + [54829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1984), 12, + ACTIONS(1878), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73447,7 +72964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1982), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73480,11 +72997,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55566] = 3, + [54882] = 21, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2048), 1, + anon_sym_LPAREN, + ACTIONS(2050), 1, + anon_sym_RPAREN, + ACTIONS(2052), 1, + anon_sym_STAR, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2060), 1, + anon_sym_await, + STATE(1024), 1, + sym_string, + STATE(1588), 1, + sym_list_splat_pattern, + STATE(1610), 1, + sym_primary_expression, + STATE(2496), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2040), 12, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(2056), 2, + anon_sym_match, + anon_sym_type, + STATE(1589), 2, + sym_attribute, + sym_subscript, + STATE(2539), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2054), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54971] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1485), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73497,7 +73082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2038), 32, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73530,51 +73115,51 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55619] = 21, + [55024] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(2042), 1, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(2044), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(2046), 1, - anon_sym_STAR, - ACTIONS(2052), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(2054), 1, - anon_sym_RBRACK, - ACTIONS(2056), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1599), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1631), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2612), 1, + STATE(2470), 1, sym_pattern, + STATE(2591), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2050), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1600), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2048), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -73583,7 +73168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73598,13 +73183,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [55708] = 3, + [55113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, - sym__dedent, + ACTIONS(1886), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73615,7 +73200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73648,13 +73233,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55761] = 3, + [55166] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, - sym__dedent, + ACTIONS(1890), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73665,7 +73250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73698,11 +73283,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55814] = 3, + [55219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2058), 12, + ACTIONS(2040), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73715,7 +73300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2060), 32, + ACTIONS(2038), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73748,79 +73333,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55867] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - ACTIONS(2062), 1, - anon_sym_in, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(1640), 1, - sym_pattern, + [55272] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + ACTIONS(1784), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + sym_ellipsis, + sym_float, + ACTIONS(1786), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(324), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55956] = 3, + [55325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, + ACTIONS(1908), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73833,7 +73400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1906), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73866,30 +73433,30 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56009] = 21, + [55378] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1952), 1, - anon_sym_RBRACK, - ACTIONS(2042), 1, + ACTIONS(1990), 1, sym_identifier, - ACTIONS(2044), 1, + ACTIONS(1992), 1, anon_sym_LPAREN, - ACTIONS(2046), 1, + ACTIONS(1994), 1, anon_sym_STAR, - ACTIONS(2052), 1, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(2004), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2050), 1, + anon_sym_RBRACK, + STATE(1024), 1, sym_string, - STATE(1599), 1, + STATE(1598), 1, sym_list_splat_pattern, - STATE(1631), 1, + STATE(1612), 1, sym_primary_expression, - STATE(2612), 1, + STATE(2524), 1, sym_pattern, ACTIONS(3), 2, sym_comment, @@ -73897,20 +73464,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2050), 2, + ACTIONS(1998), 2, anon_sym_match, anon_sym_type, - STATE(1600), 2, + STATE(1585), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2048), 3, + ACTIONS(1996), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -73919,7 +73486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73934,11 +73501,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [56098] = 3, + [55467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(2042), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73951,7 +73518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(2044), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73984,13 +73551,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56151] = 3, + [55520] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1840), 12, - sym__dedent, + ACTIONS(1912), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74001,7 +73568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1842), 32, + ACTIONS(1910), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74034,11 +73601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56204] = 3, + [55573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2040), 12, + ACTIONS(1916), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74051,7 +73618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2038), 32, + ACTIONS(1914), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74084,11 +73651,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56257] = 3, + [55626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 12, + ACTIONS(2064), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74101,7 +73668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1555), 32, + ACTIONS(2062), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74134,13 +73701,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56310] = 3, + [55679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 12, - sym__dedent, + ACTIONS(1920), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74151,7 +73718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2032), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74184,13 +73751,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56363] = 3, + [55732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2058), 12, - sym__dedent, + ACTIONS(1928), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74201,7 +73768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2060), 32, + ACTIONS(1926), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74234,11 +73801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56416] = 3, + [55785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1830), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74251,7 +73818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1828), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74284,13 +73851,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56469] = 3, + [55838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, - sym__dedent, + ACTIONS(1932), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74301,7 +73868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74334,11 +73901,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56522] = 3, + [55891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(2064), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74351,7 +73918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2014), 32, + ACTIONS(2062), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74384,13 +73951,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56575] = 3, + [55944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 12, - sym__dedent, + ACTIONS(1940), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74401,7 +73968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74434,13 +74001,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56628] = 3, + [55997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, - sym__dedent, + ACTIONS(1944), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74451,7 +74018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(1942), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74484,13 +74051,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56681] = 3, + [56050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2018), 12, - sym__dedent, + ACTIONS(1948), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74501,7 +74068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74534,11 +74101,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56734] = 3, + [56103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2064), 12, + ACTIONS(1952), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74551,7 +74118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2066), 32, + ACTIONS(1950), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74584,13 +74151,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56787] = 3, + [56156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2070), 12, - sym__dedent, + ACTIONS(1956), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74601,7 +74168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2068), 32, + ACTIONS(1954), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74634,61 +74201,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56840] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1864), 12, - sym__dedent, + [56209] = 21, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1435), 1, anon_sym_STAR, + ACTIONS(1892), 1, + sym_identifier, + ACTIONS(1894), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1904), 1, + anon_sym_await, + STATE(1024), 1, + sym_string, + STATE(1600), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(2482), 1, + sym_pattern, + STATE(2747), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(1898), 2, + anon_sym_match, + anon_sym_type, + STATE(1604), 2, + sym_attribute, + sym_subscript, + STATE(1619), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(316), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1866), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1896), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(324), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [56893] = 3, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [56298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(1838), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74701,7 +74286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(1836), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74734,11 +74319,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56946] = 3, + [56351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1960), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74751,7 +74336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1958), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74784,79 +74369,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56999] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2262), 1, - sym_pattern, - STATE(2714), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [57088] = 3, + [56404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2036), 12, + ACTIONS(1964), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74869,7 +74386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2034), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74902,13 +74419,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57141] = 3, + [56457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, - sym__dedent, + ACTIONS(1968), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74919,7 +74436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(1966), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74952,11 +74469,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57194] = 3, + [56510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2070), 12, + ACTIONS(1972), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74969,7 +74486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2068), 32, + ACTIONS(1970), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75002,13 +74519,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57247] = 3, + [56563] = 21, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1892), 1, + sym_identifier, + ACTIONS(1894), 1, + anon_sym_LPAREN, + ACTIONS(1902), 1, + anon_sym_LBRACK, + ACTIONS(1904), 1, + anon_sym_await, + STATE(1024), 1, + sym_string, + STATE(1600), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(2439), 1, + sym_pattern, + STATE(2761), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, - sym__dedent, + ACTIONS(322), 2, + sym_ellipsis, + sym_float, + ACTIONS(1898), 2, + anon_sym_match, + anon_sym_type, + STATE(1604), 2, + sym_attribute, + sym_subscript, + STATE(1619), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(316), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1896), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [56652] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1976), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75019,7 +74604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(1974), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75052,11 +74637,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57300] = 3, + [56705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 12, + ACTIONS(1980), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -75069,7 +74654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1936), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75102,13 +74687,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57353] = 3, + [56758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, - sym__dedent, + ACTIONS(1984), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75119,7 +74704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75152,13 +74737,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57406] = 3, + [56811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 12, - sym__dedent, + ACTIONS(1988), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75169,7 +74754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75202,13 +74787,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57459] = 3, + [56864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, - sym__dedent, + ACTIONS(2008), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75219,7 +74804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75252,81 +74837,213 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57512] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, + [56917] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2012), 12, sym_string_start, - ACTIONS(1822), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2010), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1824), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56970] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2016), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1828), 1, anon_sym_STAR, - ACTIONS(1834), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2014), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2054), 1, - anon_sym_RPAREN, - STATE(1025), 1, - sym_string, - STATE(1606), 1, - sym_list_splat_pattern, - STATE(1624), 1, - sym_primary_expression, - STATE(2611), 1, - sym_pattern, + sym_true, + sym_false, + sym_none, + [57023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(2020), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1832), 2, + ACTIONS(2018), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1607), 2, - sym_attribute, - sym_subscript, - STATE(2597), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57076] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2024), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1830), 3, + sym_ellipsis, + sym_float, + ACTIONS(2022), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(324), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [57601] = 3, + [57129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1872), 12, - sym__dedent, + ACTIONS(2028), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75337,7 +75054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1874), 32, + ACTIONS(2026), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75370,13 +75087,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57654] = 3, + [57182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2064), 12, - sym__dedent, + ACTIONS(2032), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75387,7 +75104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2066), 32, + ACTIONS(2030), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75420,51 +75137,51 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57707] = 21, + [57235] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(2002), 1, + anon_sym_RPAREN, + ACTIONS(2046), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(2048), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(2052), 1, + anon_sym_STAR, + ACTIONS(2058), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(2060), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1598), 1, + STATE(1588), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1610), 1, sym_primary_expression, - STATE(2469), 1, + STATE(2496), 1, sym_pattern, - STATE(2700), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(2056), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1589), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2539), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(2054), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -75473,7 +75190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75488,30 +75205,30 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57796] = 21, + [57324] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1598), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2498), 1, + STATE(2428), 1, sym_pattern, - STATE(2775), 1, + STATE(2622), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, @@ -75519,20 +75236,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -75541,7 +75258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75556,79 +75273,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57885] = 21, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - sym_identifier, - ACTIONS(1882), 1, - anon_sym_LPAREN, - ACTIONS(1888), 1, - anon_sym_LBRACK, - ACTIONS(1890), 1, - anon_sym_await, - STATE(1025), 1, - sym_string, - STATE(1598), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2471), 1, - sym_pattern, - STATE(2709), 1, - sym_pattern_list, + [57413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(1886), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1650), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1884), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [57974] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(2036), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -75641,7 +75290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(2034), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75674,11 +75323,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58027] = 3, + [57466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 12, + ACTIONS(1922), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75691,7 +75340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1992), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75724,213 +75373,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58080] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1930), 12, + [57519] = 21, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1435), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1928), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1892), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [58133] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1497), 12, - sym__dedent, - sym_string_start, + ACTIONS(1894), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1902), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1499), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1904), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [58186] = 3, + ACTIONS(2066), 1, + anon_sym_in, + STATE(1024), 1, + sym_string, + STATE(1600), 1, + sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, + STATE(1618), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2004), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, + ACTIONS(1898), 2, anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [58239] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2024), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(1604), 2, + sym_attribute, + sym_subscript, + STATE(1619), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(316), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2022), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1896), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(324), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [58292] = 3, + STATE(1296), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [57608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2028), 12, + ACTIONS(1934), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75941,7 +75458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(1936), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75974,30 +75491,30 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58345] = 21, + [57661] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1598), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2483), 1, + STATE(2458), 1, sym_pattern, - STATE(2734), 1, + STATE(2684), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, @@ -76005,20 +75522,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76027,7 +75544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76042,30 +75559,30 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58434] = 21, + [57750] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1598), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2484), 1, + STATE(2461), 1, sym_pattern, - STATE(2736), 1, + STATE(2692), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, @@ -76073,20 +75590,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76095,7 +75612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76110,30 +75627,30 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58523] = 21, + [57839] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1598), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2510), 1, + STATE(2473), 1, sym_pattern, - STATE(2800), 1, + STATE(2719), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, @@ -76141,20 +75658,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76163,7 +75680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76178,51 +75695,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58612] = 21, + [57928] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(1904), 1, anon_sym_await, - ACTIONS(2072), 1, - anon_sym_in, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1598), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1603), 1, sym_primary_expression, - STATE(1640), 1, + STATE(2474), 1, sym_pattern, + STATE(2721), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76231,7 +75748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76246,49 +75763,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58701] = 20, + [58017] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1125), 1, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(1127), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(1135), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1137), 1, + ACTIONS(1904), 1, anon_sym_await, - ACTIONS(2074), 1, - anon_sym_STAR, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1489), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1625), 1, + STATE(1603), 1, sym_primary_expression, - STATE(1640), 1, + STATE(2493), 1, sym_pattern, + STATE(2781), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1133), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1491), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1131), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76297,7 +75816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76312,49 +75831,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58787] = 20, + [58106] = 21, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1822), 1, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(1824), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_STAR, - ACTIONS(1834), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(1836), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1606), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1603), 1, sym_primary_expression, - STATE(2611), 1, + STATE(2494), 1, sym_pattern, + STATE(2784), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1832), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1607), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(2597), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1830), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76363,7 +75884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76378,28 +75899,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58873] = 20, + [58195] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1503), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1505), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58248] = 20, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1880), 1, + ACTIONS(1990), 1, sym_identifier, - ACTIONS(1882), 1, + ACTIONS(1992), 1, anon_sym_LPAREN, - ACTIONS(1888), 1, + ACTIONS(1994), 1, + anon_sym_STAR, + ACTIONS(2000), 1, anon_sym_LBRACK, - ACTIONS(1890), 1, + ACTIONS(2004), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, STATE(1598), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1612), 1, sym_primary_expression, - STATE(1640), 1, + STATE(2524), 1, sym_pattern, ACTIONS(3), 2, sym_comment, @@ -76407,20 +75978,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1886), 2, + ACTIONS(1998), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1585), 2, sym_attribute, sym_subscript, - STATE(1650), 2, + STATE(2536), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1884), 3, + ACTIONS(1996), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76429,7 +76000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76444,49 +76015,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58959] = 20, + [58334] = 20, + ACTIONS(17), 1, + anon_sym_STAR, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(1704), 1, + ACTIONS(979), 1, sym_identifier, - ACTIONS(1706), 1, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(1708), 1, - anon_sym_STAR, - ACTIONS(1714), 1, + ACTIONS(991), 1, anon_sym_LBRACK, - ACTIONS(1716), 1, + ACTIONS(993), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1584), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1632), 1, - sym_primary_expression, - STATE(2088), 1, + STATE(1591), 1, sym_pattern, + STATE(1599), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(1712), 2, + ACTIONS(989), 2, anon_sym_match, anon_sym_type, - STATE(1585), 2, + STATE(1330), 2, sym_attribute, sym_subscript, - STATE(2122), 2, + STATE(1593), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1710), 3, + ACTIONS(987), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76495,7 +76066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76510,49 +76081,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59045] = 20, - ACTIONS(17), 1, - anon_sym_STAR, + [58420] = 20, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(979), 1, + ACTIONS(1435), 1, + anon_sym_STAR, + ACTIONS(1892), 1, sym_identifier, - ACTIONS(983), 1, + ACTIONS(1894), 1, anon_sym_LPAREN, - ACTIONS(991), 1, + ACTIONS(1902), 1, anon_sym_LBRACK, - ACTIONS(993), 1, + ACTIONS(1904), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1370), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1614), 1, - sym_pattern, - STATE(1616), 1, + STATE(1603), 1, sym_primary_expression, + STATE(1618), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(989), 2, + ACTIONS(1898), 2, anon_sym_match, anon_sym_type, - STATE(1371), 2, + STATE(1604), 2, sym_attribute, sym_subscript, - STATE(1628), 2, + STATE(1619), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(987), 3, + ACTIONS(1896), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76561,7 +76132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76576,28 +76147,28 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59131] = 20, + [58506] = 20, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(2042), 1, + ACTIONS(1718), 1, sym_identifier, - ACTIONS(2044), 1, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(2046), 1, + ACTIONS(1722), 1, anon_sym_STAR, - ACTIONS(2052), 1, + ACTIONS(1728), 1, anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(1730), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1599), 1, + STATE(1577), 1, sym_list_splat_pattern, - STATE(1631), 1, + STATE(1613), 1, sym_primary_expression, - STATE(2612), 1, + STATE(2089), 1, sym_pattern, ACTIONS(3), 2, sym_comment, @@ -76605,20 +76176,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2050), 2, + ACTIONS(1726), 2, anon_sym_match, anon_sym_type, - STATE(1600), 2, + STATE(1571), 2, sym_attribute, sym_subscript, - STATE(2596), 2, + STATE(2052), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2048), 3, + ACTIONS(1724), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76627,7 +76198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76642,47 +76213,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59217] = 19, + [58592] = 20, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(1077), 1, + sym_identifier, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(1087), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2076), 1, - sym_identifier, - ACTIONS(2084), 1, + ACTIONS(1089), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2068), 1, + anon_sym_STAR, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1478), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1606), 1, sym_primary_expression, + STATE(1618), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2078), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2082), 2, + ACTIONS(1085), 2, anon_sym_match, anon_sym_type, - STATE(1592), 2, + STATE(1465), 2, sym_attribute, sym_subscript, + STATE(1619), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2080), 3, + ACTIONS(1083), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76691,7 +76264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76706,47 +76279,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59300] = 19, + [58678] = 20, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(2046), 1, + sym_identifier, + ACTIONS(2048), 1, anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(2052), 1, anon_sym_STAR, - ACTIONS(2086), 1, - sym_identifier, - ACTIONS(2092), 1, + ACTIONS(2058), 1, + anon_sym_LBRACK, + ACTIONS(2060), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1588), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1610), 1, sym_primary_expression, + STATE(2496), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2078), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2090), 2, + ACTIONS(2056), 2, anon_sym_match, anon_sym_type, - STATE(1630), 2, + STATE(1589), 2, sym_attribute, sym_subscript, + STATE(2539), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2088), 3, + ACTIONS(2054), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -76755,7 +76330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76770,7 +76345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59383] = 17, + [58764] = 17, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -76781,15 +76356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(665), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1307), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_not, - STATE(969), 1, + STATE(962), 1, sym_string, - STATE(988), 1, + STATE(976), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1084), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -76814,7 +76389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76831,51 +76406,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59461] = 17, - ACTIONS(715), 1, + [58842] = 17, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1315), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_not, - STATE(980), 1, + STATE(1040), 1, sym_string, - STATE(1004), 1, + STATE(1271), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76892,51 +76467,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59539] = 17, - ACTIONS(690), 1, + [58920] = 17, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_not, - STATE(983), 1, + STATE(1024), 1, sym_string, - STATE(1019), 1, + STATE(1110), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(678), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76953,51 +76528,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59617] = 17, - ACTIONS(805), 1, + [58998] = 17, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(755), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_not, - STATE(977), 1, + STATE(1028), 1, sym_string, - STATE(1040), 1, + STATE(1058), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(735), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77014,51 +76589,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59695] = 17, - ACTIONS(783), 1, + [59076] = 17, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_not, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1102), 1, + STATE(1004), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(721), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(719), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(713), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77075,51 +76650,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59773] = 17, - ACTIONS(737), 1, + [59154] = 17, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(777), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1247), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_not, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1258), 1, + STATE(987), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(759), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77136,51 +76711,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59851] = 17, - ACTIONS(759), 1, + [59232] = 17, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(821), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1333), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_not, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1071), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(811), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(809), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(803), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77197,51 +76772,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59929] = 17, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [59310] = 17, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, anon_sym_STAR, - ACTIONS(2094), 1, + ACTIONS(2070), 1, anon_sym_not, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1062), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(699), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(697), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(703), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(691), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77258,62 +76833,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60007] = 21, - ACTIONS(2098), 1, + [59388] = 21, + ACTIONS(2074), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2076), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2084), 1, anon_sym_STAR_STAR, - ACTIONS(2110), 1, + ACTIONS(2086), 1, anon_sym_EQ, - ACTIONS(2112), 1, + ACTIONS(2088), 1, anon_sym_LBRACK, - ACTIONS(2118), 1, + ACTIONS(2094), 1, anon_sym_PIPE, - ACTIONS(2120), 1, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2122), 1, + ACTIONS(2098), 1, anon_sym_AMP, - ACTIONS(2124), 1, + ACTIONS(2100), 1, anon_sym_CARET, - ACTIONS(2126), 1, + ACTIONS(2102), 1, anon_sym_is, - STATE(1564), 1, + STATE(1556), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2078), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, + ACTIONS(2080), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2128), 2, + ACTIONS(2104), 2, anon_sym_LT, anon_sym_GT, - STATE(965), 2, + STATE(922), 2, sym__not_in, sym__is_not, - STATE(1084), 2, + STATE(1114), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2090), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2106), 6, + ACTIONS(2082), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2096), 9, + ACTIONS(2072), 9, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -77323,49 +76898,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [60093] = 16, - ACTIONS(783), 1, + [59474] = 16, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1021), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(969), 1, sym_string, - STATE(1096), 1, + STATE(1012), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(699), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(697), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(691), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77382,53 +76957,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60168] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [59549] = 18, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(983), 1, + ACTIONS(2106), 1, + sym_identifier, + ACTIONS(2112), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1021), 1, - sym_primary_expression, - STATE(1249), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1599), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(2110), 2, + anon_sym_match, + anon_sym_type, + STATE(627), 2, + sym_attribute, + sym_subscript, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(2108), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77441,49 +77018,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60243] = 16, - ACTIONS(715), 1, + [59628] = 16, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(980), 1, + STATE(1040), 1, sym_string, - STATE(1008), 1, + STATE(1270), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77500,49 +77077,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60318] = 16, - ACTIONS(759), 1, + [59703] = 16, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1127), 1, + STATE(1271), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77559,49 +77136,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60393] = 16, - ACTIONS(759), 1, + [59778] = 16, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1133), 1, + STATE(1272), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77618,49 +77195,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60468] = 16, - ACTIONS(759), 1, + [59853] = 16, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1071), 1, + STATE(1131), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77677,49 +77254,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60543] = 16, - ACTIONS(759), 1, + [59928] = 16, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1101), 1, + STATE(1274), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77736,49 +77313,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60618] = 16, - ACTIONS(759), 1, + [60003] = 16, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1040), 1, sym_string, - STATE(1055), 1, + STATE(1275), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77795,49 +77372,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60693] = 16, - ACTIONS(759), 1, + [60078] = 16, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1024), 1, sym_string, - STATE(1088), 1, + STATE(1085), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(775), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(678), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77854,49 +77431,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60768] = 16, - ACTIONS(759), 1, + [60153] = 16, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1024), 1, sym_string, - STATE(1090), 1, + STATE(1104), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(775), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(678), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77913,49 +77490,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60843] = 16, - ACTIONS(759), 1, + [60228] = 16, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(773), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(779), 1, - sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1024), 1, sym_string, - STATE(1125), 1, + STATE(1110), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(775), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(678), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77972,7 +77549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60918] = 16, + [60303] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -77981,44 +77558,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2114), 1, + sym_identifier, + ACTIONS(2120), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1060), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1583), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2118), 2, anon_sym_match, anon_sym_type, + STATE(1057), 2, + sym_attribute, + sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78031,49 +77610,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60993] = 16, - ACTIONS(690), 1, + [60382] = 16, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(983), 1, + STATE(1024), 1, sym_string, - STATE(1022), 1, + STATE(1061), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(678), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78090,49 +77669,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61068] = 16, - ACTIONS(783), 1, + [60457] = 16, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1024), 1, sym_string, - STATE(1104), 1, + STATE(1111), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(678), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78149,108 +77728,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61143] = 16, - ACTIONS(783), 1, + [60532] = 16, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1024), 1, sym_string, - STATE(1105), 1, + STATE(1127), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1418), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [61218] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - STATE(983), 1, - sym_string, - STATE(1023), 1, - sym_primary_expression, - STATE(1249), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(694), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78267,49 +77787,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61293] = 16, - ACTIONS(783), 1, + [60607] = 16, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(795), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1024), 1, sym_string, - STATE(1106), 1, + STATE(1041), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(797), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(678), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78326,49 +77846,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61368] = 16, - ACTIONS(690), 1, + [60682] = 16, + ACTIONS(311), 1, + anon_sym_LBRACE, + ACTIONS(328), 1, + sym_string_start, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(686), 1, anon_sym_await, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(983), 1, - sym_string, STATE(1024), 1, + sym_string, + STATE(1043), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1294), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(680), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(678), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78385,7 +77905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61443] = 18, + [60757] = 16, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -78394,46 +77914,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2136), 1, + ACTIONS(686), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(1435), 1, + anon_sym_STAR, + STATE(1024), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1049), 1, sym_primary_expression, + STATE(1294), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2134), 2, + ACTIONS(680), 2, anon_sym_match, anon_sym_type, - STATE(1605), 2, - sym_attribute, - sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2132), 3, + ACTIONS(678), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(324), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78446,7 +77964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61522] = 18, + [60832] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -78455,17 +77973,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(2138), 1, + ACTIONS(2122), 1, sym_identifier, - ACTIONS(2144), 1, + ACTIONS(2128), 1, anon_sym_await, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1631), 1, + STATE(1611), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -78473,17 +77991,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2142), 2, + ACTIONS(2126), 2, anon_sym_match, anon_sym_type, - STATE(1268), 2, + STATE(1410), 2, sym_attribute, sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2140), 3, + ACTIONS(2124), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -78492,7 +78010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78507,49 +78025,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61601] = 16, - ACTIONS(783), 1, + [60911] = 16, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(821), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1087), 1, sym_string, - STATE(1107), 1, + STATE(1221), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(811), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(809), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(803), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78566,49 +78084,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61676] = 16, - ACTIONS(737), 1, + [60986] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1251), 1, + STATE(968), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(659), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(657), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78625,49 +78143,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61751] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [61061] = 16, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(795), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(801), 1, + sym_string_start, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(1040), 1, sym_string, - STATE(1061), 1, + STATE(1276), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(797), 2, + sym_ellipsis, + sym_float, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(793), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78684,7 +78202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61826] = 16, + [61136] = 16, ACTIONS(805), 1, anon_sym_LPAREN, ACTIONS(813), 1, @@ -78695,13 +78213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(823), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1038), 1, + STATE(1222), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -78726,7 +78244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78743,7 +78261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61901] = 16, + [61211] = 16, ACTIONS(805), 1, anon_sym_LPAREN, ACTIONS(813), 1, @@ -78754,13 +78272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(823), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1039), 1, + STATE(1223), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -78785,7 +78303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78802,55 +78320,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61976] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [61286] = 16, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2146), 1, - sym_identifier, - ACTIONS(2152), 1, + ACTIONS(727), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(733), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1034), 1, sym_primary_expression, + STATE(1142), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2150), 2, + ACTIONS(721), 2, anon_sym_match, anon_sym_type, - STATE(1402), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(729), 2, + sym_ellipsis, + sym_float, + ACTIONS(719), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(725), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(713), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78863,7 +78379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62055] = 16, + [61361] = 16, ACTIONS(805), 1, anon_sym_LPAREN, ACTIONS(813), 1, @@ -78874,13 +78390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(823), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1040), 1, + STATE(1224), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -78905,7 +78421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78922,49 +78438,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62130] = 16, - ACTIONS(759), 1, + [61436] = 16, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(821), 1, anon_sym_await, - ACTIONS(779), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1087), 1, sym_string, - STATE(1138), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1390), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(765), 2, + ACTIONS(811), 2, anon_sym_match, anon_sym_type, - ACTIONS(775), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(763), 3, + ACTIONS(809), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(771), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 5, + ACTIONS(803), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1389), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78981,55 +78497,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62205] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [61511] = 16, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2154), 1, - sym_identifier, - ACTIONS(2160), 1, + ACTIONS(727), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(733), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1627), 1, + STATE(1002), 1, sym_primary_expression, + STATE(1142), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2158), 2, + ACTIONS(721), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(729), 2, + sym_ellipsis, + sym_float, + ACTIONS(719), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(725), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(713), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79042,7 +78556,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62284] = 16, + [61586] = 21, + ACTIONS(2086), 1, + anon_sym_EQ, + ACTIONS(2096), 1, + anon_sym_not, + ACTIONS(2130), 1, + anon_sym_DOT, + ACTIONS(2132), 1, + anon_sym_LPAREN, + ACTIONS(2140), 1, + anon_sym_STAR_STAR, + ACTIONS(2142), 1, + anon_sym_LBRACK, + ACTIONS(2148), 1, + anon_sym_PIPE, + ACTIONS(2150), 1, + anon_sym_AMP, + ACTIONS(2152), 1, + anon_sym_CARET, + ACTIONS(2154), 1, + anon_sym_is, + STATE(1564), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2134), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2136), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2146), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2156), 2, + anon_sym_LT, + anon_sym_GT, + STATE(908), 2, + sym__not_in, + sym__is_not, + STATE(1156), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2144), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2138), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2072), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [61671] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -79051,44 +78629,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2158), 1, + sym_identifier, + ACTIONS(2164), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1069), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1607), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2162), 2, anon_sym_match, anon_sym_type, + STATE(1198), 2, + sym_attribute, + sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2160), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79101,49 +78681,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62359] = 16, - ACTIONS(805), 1, + [61750] = 16, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(977), 1, + STATE(985), 1, sym_string, - STATE(1041), 1, + STATE(1003), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1142), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(721), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(719), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(713), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79160,49 +78740,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62434] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [61825] = 16, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(727), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(733), 1, + sym_string_start, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(969), 1, + STATE(985), 1, sym_string, STATE(989), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1142), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(721), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(729), 2, + sym_ellipsis, + sym_float, + ACTIONS(719), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(725), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(713), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79219,7 +78799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62509] = 16, + [61900] = 16, ACTIONS(715), 1, anon_sym_LPAREN, ACTIONS(723), 1, @@ -79230,13 +78810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(733), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(998), 1, + STATE(1004), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1142), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79261,7 +78841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79278,49 +78858,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62584] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [61975] = 16, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(969), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(699), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(697), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(691), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1138), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62050] = 16, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + anon_sym_await, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, + anon_sym_STAR, + STATE(969), 1, + sym_string, + STATE(1009), 1, + sym_primary_expression, + STATE(1238), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(699), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(697), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(703), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(691), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79337,7 +78976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62659] = 16, + [62125] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -79346,44 +78985,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2166), 1, + sym_identifier, + ACTIONS(2172), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1063), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2170), 2, anon_sym_match, anon_sym_type, + STATE(1322), 2, + sym_attribute, + sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2168), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79396,49 +79037,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62734] = 16, - ACTIONS(715), 1, + [62204] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(777), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(980), 1, + STATE(972), 1, sym_string, - STATE(1002), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1157), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(759), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79455,7 +79096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62809] = 16, + [62279] = 16, ACTIONS(805), 1, anon_sym_LPAREN, ACTIONS(813), 1, @@ -79466,13 +79107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(823), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1087), 1, sym_string, - STATE(1042), 1, + STATE(1220), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79497,7 +79138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79514,53 +79155,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62884] = 16, - ACTIONS(67), 1, + [62354] = 18, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2174), 1, + sym_identifier, + ACTIONS(2180), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(990), 1, - sym_primary_expression, - STATE(1135), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1608), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(2178), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1416), 2, + sym_attribute, + sym_subscript, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(2176), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79573,49 +79216,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62959] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [62433] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(773), 1, + anon_sym_LBRACE, + ACTIONS(777), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(779), 1, + sym_string_start, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(969), 1, + STATE(972), 1, sym_string, - STATE(991), 1, + STATE(990), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1157), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(775), 2, + sym_ellipsis, + sym_float, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(771), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(759), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79632,55 +79275,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63034] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62508] = 16, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2162), 1, - sym_identifier, - ACTIONS(2168), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, + anon_sym_STAR, + STATE(969), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1632), 1, + STATE(1010), 1, sym_primary_expression, + STATE(1238), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2166), 2, + ACTIONS(699), 2, anon_sym_match, anon_sym_type, - STATE(1269), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2164), 3, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(697), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(703), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(691), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79693,49 +79334,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63113] = 16, - ACTIONS(715), 1, + [62583] = 16, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(755), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(980), 1, + STATE(1028), 1, sym_string, - STATE(1003), 1, + STATE(1094), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(735), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79752,55 +79393,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63188] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62658] = 16, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2170), 1, - sym_identifier, - ACTIONS(2176), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, + anon_sym_STAR, + STATE(969), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1616), 1, + STATE(1039), 1, sym_primary_expression, + STATE(1238), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2174), 2, + ACTIONS(699), 2, anon_sym_match, anon_sym_type, - STATE(639), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(697), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(703), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(691), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79813,55 +79452,112 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63267] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [62733] = 16, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2178), 1, - sym_identifier, - ACTIONS(2184), 1, + ACTIONS(817), 1, + anon_sym_LBRACE, + ACTIONS(821), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1333), 1, + anon_sym_STAR, + STATE(1087), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1623), 1, + STATE(1217), 1, sym_primary_expression, + STATE(1417), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2182), 2, + ACTIONS(811), 2, anon_sym_match, anon_sym_type, - STATE(1085), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(819), 2, + sym_ellipsis, + sym_float, + ACTIONS(809), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(803), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1411), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62808] = 16, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(723), 1, + anon_sym_LBRACK, + ACTIONS(727), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_await, + ACTIONS(733), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(985), 1, + sym_string, + STATE(1005), 1, + sym_primary_expression, + STATE(1142), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(721), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(729), 2, + sym_ellipsis, + sym_float, + ACTIONS(719), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(725), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(713), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79874,55 +79570,112 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63346] = 18, - ACTIONS(311), 1, + [62883] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2184), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(2186), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + STATE(962), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1623), 1, + STATE(974), 1, sym_primary_expression, + STATE(1084), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2182), 2, + ACTIONS(659), 2, anon_sym_match, anon_sym_type, - STATE(1085), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(657), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1126), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62958] = 16, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + anon_sym_await, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, + anon_sym_STAR, + STATE(969), 1, + sym_string, + STATE(1014), 1, + sym_primary_expression, + STATE(1238), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(699), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(697), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(703), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(691), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79935,7 +79688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63425] = 18, + [63033] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -79944,17 +79697,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2194), 1, + ACTIONS(2120), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(2182), 1, + sym_identifier, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1625), 1, + STATE(1583), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -79962,17 +79715,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2192), 2, + ACTIONS(2118), 2, anon_sym_match, anon_sym_type, - STATE(1480), 2, + STATE(1057), 2, sym_attribute, sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2190), 3, + ACTIONS(2116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -79981,7 +79734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79996,49 +79749,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63504] = 16, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [63112] = 16, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(817), 1, + anon_sym_LBRACE, + ACTIONS(821), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(823), 1, + sym_string_start, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(1087), 1, sym_string, - STATE(1070), 1, + STATE(1218), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(680), 2, + ACTIONS(811), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(819), 2, + sym_ellipsis, + sym_float, + ACTIONS(809), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(803), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1411), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63187] = 16, + ACTIONS(693), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + anon_sym_await, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, + anon_sym_STAR, + STATE(969), 1, + sym_string, + STATE(993), 1, + sym_primary_expression, + STATE(1238), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(699), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(697), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(703), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(691), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80055,7 +79867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63579] = 16, + [63262] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -80064,44 +79876,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(686), 1, - anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1025), 1, + ACTIONS(2172), 1, + anon_sym_await, + ACTIONS(2184), 1, + sym_identifier, + STATE(1024), 1, sym_string, - STATE(1052), 1, - sym_primary_expression, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1603), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(2170), 2, anon_sym_match, anon_sym_type, + STATE(1322), 2, + sym_attribute, + sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(2168), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80114,49 +79928,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63654] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, + [63341] = 16, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(711), 1, + sym_string_start, + ACTIONS(1021), 1, anon_sym_STAR, STATE(969), 1, sym_string, - STATE(987), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(699), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(707), 2, + sym_ellipsis, + sym_float, + ACTIONS(697), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(703), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(691), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80173,49 +79987,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63729] = 16, - ACTIONS(805), 1, + [63416] = 16, + ACTIONS(693), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(701), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(705), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(709), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(711), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1021), 1, anon_sym_STAR, - STATE(977), 1, + STATE(969), 1, sym_string, - STATE(1043), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1238), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(699), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(707), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(697), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(703), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(691), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1138), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80232,49 +80046,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63804] = 16, - ACTIONS(311), 1, + [63491] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(962), 1, sym_string, - STATE(1072), 1, + STATE(975), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1084), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(659), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(657), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80291,49 +80105,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63879] = 16, - ACTIONS(311), 1, + [63566] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(686), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(1443), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(962), 1, sym_string, - STATE(1064), 1, + STATE(976), 1, sym_primary_expression, - STATE(1325), 1, + STATE(1084), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(680), 2, + ACTIONS(659), 2, anon_sym_match, anon_sym_type, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(678), 3, + ACTIONS(657), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80350,53 +80164,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63954] = 16, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, + [63641] = 18, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(733), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(980), 1, + ACTIONS(2128), 1, + anon_sym_await, + ACTIONS(2186), 1, + sym_identifier, + STATE(1024), 1, sym_string, - STATE(1007), 1, - sym_primary_expression, - STATE(1229), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1611), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(2126), 2, + anon_sym_match, + anon_sym_type, + STATE(1410), 2, + sym_attribute, + sym_subscript, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(2124), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80409,7 +80225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64029] = 16, + [63720] = 16, ACTIONS(715), 1, anon_sym_LPAREN, ACTIONS(723), 1, @@ -80420,13 +80236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(733), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(980), 1, + STATE(985), 1, sym_string, - STATE(1009), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1142), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80451,7 +80267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80468,49 +80284,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64104] = 16, - ACTIONS(715), 1, + [63795] = 16, + ACTIONS(805), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(813), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(817), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(821), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(823), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1333), 1, anon_sym_STAR, - STATE(980), 1, + STATE(1087), 1, sym_string, - STATE(1005), 1, + STATE(1202), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1417), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(811), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(819), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(809), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(815), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(803), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1411), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80527,55 +80343,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64179] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [63870] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2196), 1, - sym_identifier, - ACTIONS(2202), 1, + ACTIONS(773), 1, + anon_sym_LBRACE, + ACTIONS(777), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(779), 1, + sym_string_start, + ACTIONS(1247), 1, + anon_sym_STAR, + STATE(972), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(1038), 1, sym_primary_expression, + STATE(1157), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2200), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - STATE(1594), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2198), 3, + ACTIONS(775), 2, + sym_ellipsis, + sym_float, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(771), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(759), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80588,55 +80402,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64258] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [63945] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(773), 1, + anon_sym_LBRACE, + ACTIONS(777), 1, anon_sym_await, - ACTIONS(2204), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(779), 1, + sym_string_start, + ACTIONS(1247), 1, + anon_sym_STAR, + STATE(972), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1629), 1, + STATE(1011), 1, sym_primary_expression, + STATE(1157), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2208), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2206), 3, + ACTIONS(775), 2, + sym_ellipsis, + sym_float, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(771), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(759), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80649,177 +80461,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64337] = 21, - ACTIONS(2110), 1, - anon_sym_EQ, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2210), 1, - anon_sym_DOT, - ACTIONS(2212), 1, - anon_sym_LPAREN, - ACTIONS(2220), 1, - anon_sym_STAR_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, - ACTIONS(2234), 1, - anon_sym_is, - STATE(1576), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2214), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2236), 2, - anon_sym_LT, - anon_sym_GT, - STATE(954), 2, - sym__not_in, - sym__is_not, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2218), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2096), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [64422] = 21, - ACTIONS(2110), 1, - anon_sym_as, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, + [64020] = 16, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2258), 1, - anon_sym_AMP, - ACTIONS(2260), 1, - anon_sym_CARET, - ACTIONS(2262), 1, - anon_sym_is, - STATE(1569), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2242), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2264), 2, - anon_sym_LT, - anon_sym_GT, - STATE(897), 2, - sym__not_in, - sym__is_not, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2246), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2096), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [64507] = 16, - ACTIONS(67), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, + ACTIONS(755), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1028), 1, sym_string, - STATE(974), 1, + STATE(1073), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, + ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, + ACTIONS(753), 2, + sym_ellipsis, + sym_float, + ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(749), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(735), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80836,55 +80520,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64582] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [64095] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2168), 1, + ACTIONS(773), 1, + anon_sym_LBRACE, + ACTIONS(777), 1, anon_sym_await, - ACTIONS(2266), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(779), 1, + sym_string_start, + ACTIONS(1247), 1, + anon_sym_STAR, + STATE(972), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1626), 1, + STATE(987), 1, sym_primary_expression, + STATE(1157), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2270), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - STATE(1248), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2268), 3, + ACTIONS(775), 2, + sym_ellipsis, + sym_float, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(771), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(759), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80897,7 +80579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64661] = 16, + [64170] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -80908,13 +80590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(665), 1, anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(969), 1, + STATE(962), 1, sym_string, - STATE(975), 1, + STATE(977), 1, sym_primary_expression, - STATE(1135), 1, + STATE(1084), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80939,7 +80621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1081), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80956,49 +80638,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64736] = 16, - ACTIONS(715), 1, + [64245] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(723), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(727), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(777), 1, anon_sym_await, - ACTIONS(733), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1305), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(980), 1, + STATE(972), 1, sym_string, - STATE(1004), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1229), 1, + STATE(1157), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(721), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - ACTIONS(729), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(719), 3, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(759), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81015,112 +80697,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64811] = 16, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [64320] = 18, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(821), 1, - anon_sym_await, - ACTIONS(823), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(977), 1, + ACTIONS(2128), 1, + anon_sym_await, + ACTIONS(2188), 1, + sym_identifier, + STATE(1024), 1, sym_string, - STATE(1010), 1, - sym_primary_expression, - STATE(1200), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(2192), 2, + anon_sym_match, + anon_sym_type, + STATE(1137), 2, + sym_attribute, + sym_subscript, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1226), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [64886] = 16, - ACTIONS(715), 1, - anon_sym_LPAREN, - ACTIONS(723), 1, - anon_sym_LBRACK, - ACTIONS(727), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - anon_sym_await, - ACTIONS(733), 1, - sym_string_start, - ACTIONS(1305), 1, - anon_sym_STAR, - STATE(980), 1, - sym_string, - STATE(1006), 1, - sym_primary_expression, - STATE(1229), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(721), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(729), 2, - sym_ellipsis, - sym_float, - ACTIONS(719), 3, + ACTIONS(2190), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(725), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(713), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1152), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81133,49 +80758,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64961] = 16, - ACTIONS(805), 1, + [64399] = 16, + ACTIONS(783), 1, anon_sym_LPAREN, - ACTIONS(813), 1, + ACTIONS(791), 1, anon_sym_LBRACK, - ACTIONS(817), 1, + ACTIONS(795), 1, anon_sym_LBRACE, - ACTIONS(821), 1, + ACTIONS(799), 1, anon_sym_await, - ACTIONS(823), 1, + ACTIONS(801), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(977), 1, + STATE(1040), 1, sym_string, - STATE(1045), 1, + STATE(1242), 1, sym_primary_expression, - STATE(1200), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, + ACTIONS(789), 2, anon_sym_match, anon_sym_type, - ACTIONS(819), 2, + ACTIONS(797), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, + ACTIONS(787), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(793), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(781), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81192,53 +80817,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65036] = 16, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(817), 1, + [64474] = 18, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(821), 1, - anon_sym_await, - ACTIONS(823), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1265), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(977), 1, + ACTIONS(2164), 1, + anon_sym_await, + ACTIONS(2194), 1, + sym_identifier, + STATE(1024), 1, sym_string, - STATE(1017), 1, - sym_primary_expression, - STATE(1200), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1613), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(819), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(809), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(815), 3, + ACTIONS(2198), 2, + anon_sym_match, + anon_sym_type, + STATE(1139), 2, + sym_attribute, + sym_subscript, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(803), 5, + ACTIONS(2196), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1226), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81251,53 +80878,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65111] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, + [64553] = 18, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(983), 1, + ACTIONS(2200), 1, + sym_identifier, + ACTIONS(2206), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1048), 1, - sym_primary_expression, - STATE(1249), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1606), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(2204), 2, + anon_sym_match, + anon_sym_type, + STATE(1473), 2, + sym_attribute, + sym_subscript, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(2202), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81310,7 +80939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65186] = 18, + [64632] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -81319,17 +80948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(2160), 1, + ACTIONS(2112), 1, anon_sym_await, - ACTIONS(2272), 1, + ACTIONS(2208), 1, sym_identifier, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1599), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -81337,17 +80966,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2276), 2, + ACTIONS(2110), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(627), 2, sym_attribute, sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2274), 3, + ACTIONS(2108), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -81356,7 +80985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81371,49 +81000,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65265] = 16, - ACTIONS(690), 1, + [64711] = 21, + ACTIONS(2086), 1, + anon_sym_as, + ACTIONS(2096), 1, + anon_sym_not, + ACTIONS(2210), 1, + anon_sym_DOT, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, anon_sym_LBRACK, - ACTIONS(702), 1, + ACTIONS(2228), 1, + anon_sym_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, + ACTIONS(2234), 1, + anon_sym_is, + STATE(1567), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2216), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2226), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2236), 2, + anon_sym_LT, + anon_sym_GT, + STATE(929), 2, + sym__not_in, + sym__is_not, + STATE(1209), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2224), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2218), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2072), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [64796] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(1001), 1, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_await, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(983), 1, + STATE(962), 1, sym_string, - STATE(1018), 1, + STATE(984), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1084), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(659), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(657), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81430,49 +81123,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65340] = 16, - ACTIONS(690), 1, + [64871] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(706), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(983), 1, + STATE(962), 1, sym_string, - STATE(1013), 1, + STATE(980), 1, sym_primary_expression, - STATE(1249), 1, + STATE(1084), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(694), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(700), 3, + ACTIONS(659), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(657), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81489,49 +81182,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65415] = 16, - ACTIONS(783), 1, + [64946] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(777), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(972), 1, sym_string, - STATE(1100), 1, + STATE(1021), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1157), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(759), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81548,49 +81241,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65490] = 16, - ACTIONS(783), 1, + [65021] = 16, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(755), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1028), 1, sym_string, - STATE(1148), 1, + STATE(1091), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(735), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81607,24 +81300,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65565] = 16, + [65096] = 16, ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, ACTIONS(755), 1, + anon_sym_await, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1028), 1, sym_string, - STATE(1256), 1, + STATE(1109), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -81632,14 +81325,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -81649,7 +81342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81666,24 +81359,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65640] = 16, + [65171] = 16, ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, ACTIONS(755), 1, + anon_sym_await, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1028), 1, sym_string, - STATE(1257), 1, + STATE(1058), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -81691,14 +81384,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -81708,7 +81401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81725,49 +81418,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65715] = 16, - ACTIONS(737), 1, + [65246] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(773), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(777), 1, anon_sym_await, - ACTIONS(755), 1, + ACTIONS(779), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1247), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(972), 1, sym_string, - STATE(1258), 1, + STATE(1033), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1157), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(775), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(759), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81784,49 +81477,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65790] = 16, - ACTIONS(737), 1, + [65321] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(749), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(755), 1, - sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1307), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(962), 1, sym_string, - STATE(1259), 1, + STATE(981), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1084), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(659), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, + ACTIONS(657), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81843,55 +81536,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65865] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [65396] = 16, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2152), 1, + ACTIONS(727), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(2278), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(733), 1, + sym_string_start, + ACTIONS(1269), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(1031), 1, sym_primary_expression, + STATE(1142), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2150), 2, + ACTIONS(721), 2, anon_sym_match, anon_sym_type, - STATE(1402), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(729), 2, + sym_ellipsis, + sym_float, + ACTIONS(719), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(725), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(713), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81904,24 +81595,88 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65944] = 16, + [65471] = 21, + ACTIONS(2086), 1, + anon_sym_as, + ACTIONS(2096), 1, + anon_sym_not, + ACTIONS(2238), 1, + anon_sym_DOT, + ACTIONS(2240), 1, + anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_STAR_STAR, + ACTIONS(2250), 1, + anon_sym_LBRACK, + ACTIONS(2256), 1, + anon_sym_PIPE, + ACTIONS(2258), 1, + anon_sym_AMP, + ACTIONS(2260), 1, + anon_sym_CARET, + ACTIONS(2262), 1, + anon_sym_is, + STATE(1560), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2242), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2244), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2264), 2, + anon_sym_LT, + anon_sym_GT, + STATE(900), 2, + sym__not_in, + sym__is_not, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2252), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2246), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2072), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [65556] = 16, ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, ACTIONS(755), 1, + anon_sym_await, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1028), 1, sym_string, - STATE(1260), 1, + STATE(1062), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -81929,14 +81684,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -81946,7 +81701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81963,24 +81718,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66019] = 16, + [65631] = 16, ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, ACTIONS(755), 1, + anon_sym_await, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1028), 1, sym_string, - STATE(1261), 1, + STATE(1064), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -81988,14 +81743,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -82005,7 +81760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82022,55 +81777,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66094] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [65706] = 16, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2160), 1, + ACTIONS(751), 1, + anon_sym_LBRACE, + ACTIONS(755), 1, anon_sym_await, - ACTIONS(2280), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(757), 1, + sym_string_start, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(1028), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1627), 1, + STATE(1117), 1, sym_primary_expression, + STATE(1326), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2158), 2, + ACTIONS(743), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(753), 2, + sym_ellipsis, + sym_float, + ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(749), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(735), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82083,24 +81836,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66173] = 16, + [65781] = 16, ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(745), 1, + ACTIONS(747), 1, anon_sym_LBRACK, - ACTIONS(749), 1, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, ACTIONS(755), 1, + anon_sym_await, + ACTIONS(757), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1110), 1, + STATE(1028), 1, sym_string, - STATE(1262), 1, + STATE(1088), 1, sym_primary_expression, - STATE(1451), 1, + STATE(1326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -82108,14 +81861,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(743), 2, anon_sym_match, anon_sym_type, - ACTIONS(751), 2, + ACTIONS(753), 2, sym_ellipsis, sym_float, ACTIONS(741), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(749), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -82125,7 +81878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1462), 16, + STATE(1343), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82142,7 +81895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66248] = 18, + [65856] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -82151,17 +81904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(2176), 1, - anon_sym_await, - ACTIONS(2282), 1, + ACTIONS(2158), 1, sym_identifier, - STATE(1025), 1, + ACTIONS(2164), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1616), 1, + STATE(1613), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -82169,17 +81922,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2174), 2, + ACTIONS(2162), 2, anon_sym_match, anon_sym_type, - STATE(639), 2, + STATE(1198), 2, sym_attribute, sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(2160), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -82188,7 +81941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82203,112 +81956,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66327] = 16, - ACTIONS(737), 1, - anon_sym_LPAREN, - ACTIONS(745), 1, - anon_sym_LBRACK, - ACTIONS(749), 1, + [65935] = 18, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - anon_sym_await, - ACTIONS(755), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(1347), 1, + ACTIONS(672), 1, + anon_sym_LPAREN, + ACTIONS(682), 1, + anon_sym_LBRACK, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(1110), 1, + ACTIONS(2174), 1, + sym_identifier, + ACTIONS(2180), 1, + anon_sym_await, + STATE(1024), 1, sym_string, - STATE(1263), 1, - sym_primary_expression, - STATE(1451), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1610), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(743), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(751), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(741), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(747), 3, + ACTIONS(2178), 2, + anon_sym_match, + anon_sym_type, + STATE(1416), 2, + sym_attribute, + sym_subscript, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(735), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1462), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66402] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - STATE(983), 1, - sym_string, - STATE(1019), 1, - sym_primary_expression, - STATE(1249), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(694), 3, + ACTIONS(2176), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82321,112 +82017,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66477] = 16, - ACTIONS(67), 1, + [66014] = 18, + ACTIONS(311), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(328), 1, sym_string_start, - ACTIONS(653), 1, + ACTIONS(672), 1, anon_sym_LPAREN, - ACTIONS(661), 1, + ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, + ACTIONS(1435), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2128), 1, + anon_sym_await, + ACTIONS(2186), 1, + sym_identifier, + STATE(1024), 1, sym_string, - STATE(973), 1, - sym_primary_expression, - STATE(1135), 1, + STATE(1294), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(659), 2, + ACTIONS(2126), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1410), 2, + sym_attribute, + sym_subscript, + ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(657), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1081), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66552] = 16, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_LBRACK, - ACTIONS(702), 1, - anon_sym_LBRACE, - ACTIONS(706), 1, - anon_sym_await, - ACTIONS(708), 1, - sym_string_start, - ACTIONS(1001), 1, - anon_sym_STAR, - STATE(983), 1, - sym_string, - STATE(993), 1, - sym_primary_expression, - STATE(1249), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(696), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(704), 2, - sym_ellipsis, - sym_float, - ACTIONS(694), 3, + ACTIONS(2124), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(700), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(688), 5, + ACTIONS(324), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1198), 16, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82439,49 +82078,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66627] = 16, - ACTIONS(783), 1, + [66093] = 16, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(723), 1, anon_sym_LBRACK, - ACTIONS(795), 1, + ACTIONS(727), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(733), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1269), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(985), 1, sym_string, - STATE(1102), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1142), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(789), 2, + ACTIONS(721), 2, anon_sym_match, anon_sym_type, - ACTIONS(797), 2, + ACTIONS(729), 2, sym_ellipsis, sym_float, - ACTIONS(787), 3, + ACTIONS(719), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(793), 3, + ACTIONS(725), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(781), 5, + ACTIONS(713), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1268), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82498,55 +82137,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66702] = 18, - ACTIONS(311), 1, + [66168] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(328), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(672), 1, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(661), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2168), 1, + ACTIONS(665), 1, anon_sym_await, - ACTIONS(2266), 1, - sym_identifier, - STATE(1025), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + STATE(962), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1632), 1, + STATE(979), 1, sym_primary_expression, + STATE(1084), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2270), 2, + ACTIONS(659), 2, anon_sym_match, anon_sym_type, - STATE(1248), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2268), 3, + ACTIONS(657), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1126), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82559,116 +82196,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66781] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, + [66243] = 16, + ACTIONS(761), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(769), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2154), 1, - sym_identifier, - ACTIONS(2160), 1, + ACTIONS(773), 1, + anon_sym_LBRACE, + ACTIONS(777), 1, anon_sym_await, - STATE(1025), 1, + ACTIONS(779), 1, + sym_string_start, + ACTIONS(1247), 1, + anon_sym_STAR, + STATE(972), 1, sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(995), 1, sym_primary_expression, + STATE(1157), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2158), 2, + ACTIONS(767), 2, anon_sym_match, anon_sym_type, - STATE(1368), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(775), 2, + sym_ellipsis, + sym_float, + ACTIONS(765), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(324), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1311), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [66860] = 18, - ACTIONS(311), 1, - anon_sym_LBRACE, - ACTIONS(328), 1, - sym_string_start, - ACTIONS(672), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_LBRACK, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(2144), 1, - anon_sym_await, - ACTIONS(2284), 1, - sym_identifier, - STATE(1025), 1, - sym_string, - STATE(1325), 1, - sym_list_splat_pattern, - STATE(1631), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(322), 2, - sym_ellipsis, - sym_float, - ACTIONS(2208), 2, - anon_sym_match, - anon_sym_type, - STATE(1435), 2, - sym_attribute, - sym_subscript, - ACTIONS(316), 3, + ACTIONS(771), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2206), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(324), 4, + ACTIONS(759), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1147), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82681,7 +82255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66939] = 16, + [66318] = 16, ACTIONS(783), 1, anon_sym_LPAREN, ACTIONS(791), 1, @@ -82692,13 +82266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(801), 1, sym_string_start, - ACTIONS(1355), 1, + ACTIONS(1315), 1, anon_sym_STAR, - STATE(1034), 1, + STATE(1040), 1, sym_string, - STATE(1103), 1, + STATE(1269), 1, sym_primary_expression, - STATE(1316), 1, + STATE(1413), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -82723,7 +82297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1418), 16, + STATE(1383), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82740,7 +82314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67014] = 18, + [66393] = 18, ACTIONS(311), 1, anon_sym_LBRACE, ACTIONS(328), 1, @@ -82749,17 +82323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(682), 1, anon_sym_LBRACK, - ACTIONS(1443), 1, + ACTIONS(1435), 1, anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(2180), 1, anon_sym_await, - ACTIONS(2284), 1, + ACTIONS(2266), 1, sym_identifier, - STATE(1025), 1, + STATE(1024), 1, sym_string, - STATE(1325), 1, + STATE(1294), 1, sym_list_splat_pattern, - STATE(1629), 1, + STATE(1610), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, @@ -82767,17 +82341,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(322), 2, sym_ellipsis, sym_float, - ACTIONS(2208), 2, + ACTIONS(2270), 2, anon_sym_match, anon_sym_type, - STATE(1435), 2, + STATE(1304), 2, sym_attribute, sym_subscript, ACTIONS(316), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2206), 3, + ACTIONS(2268), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -82786,7 +82360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1311), 14, + STATE(1296), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82801,204 +82375,178 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67093] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, + [66472] = 5, ACTIONS(81), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(969), 1, - sym_string, - STATE(986), 1, - sym_primary_expression, - STATE(1135), 1, - sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + STATE(963), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2274), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2272), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1081), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [67168] = 21, - ACTIONS(2110), 1, - anon_sym_as, - ACTIONS(2120), 1, anon_sym_not, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66524] = 20, + ACTIONS(2076), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2084), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, + ACTIONS(2094), 1, anon_sym_PIPE, - ACTIONS(2306), 1, + ACTIONS(2096), 1, + anon_sym_not, + ACTIONS(2098), 1, anon_sym_AMP, - ACTIONS(2308), 1, + ACTIONS(2100), 1, anon_sym_CARET, - ACTIONS(2310), 1, + ACTIONS(2102), 1, anon_sym_is, - STATE(1574), 1, + ACTIONS(2276), 1, + anon_sym_DOT, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(1556), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2078), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, + ACTIONS(2080), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2302), 2, + ACTIONS(2092), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2312), 2, + ACTIONS(2104), 2, anon_sym_LT, anon_sym_GT, - STATE(932), 2, + STATE(922), 2, sym__not_in, sym__is_not, - STATE(1171), 2, + STATE(1114), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2090), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2294), 6, + ACTIONS(2082), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2096), 8, + ACTIONS(2072), 8, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [67253] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, + [66606] = 5, ACTIONS(81), 1, sym_string_start, - ACTIONS(653), 1, - anon_sym_LPAREN, - ACTIONS(661), 1, - anon_sym_LBRACK, - ACTIONS(665), 1, - anon_sym_await, - ACTIONS(1317), 1, - anon_sym_STAR, - STATE(969), 1, - sym_string, - STATE(988), 1, - sym_primary_expression, - STATE(1135), 1, - sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(659), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + STATE(960), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1556), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1551), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(657), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1081), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [67328] = 5, - ACTIONS(2318), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66658] = 5, + ACTIONS(2284), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(966), 2, + STATE(963), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(2282), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 31, + ACTIONS(2280), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -83030,160 +82578,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67380] = 21, - ACTIONS(2110), 1, + [66710] = 21, + ACTIONS(2086), 1, anon_sym_EQ, - ACTIONS(2120), 1, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2321), 1, + ACTIONS(2287), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2299), 1, anon_sym_LBRACK, - ACTIONS(2339), 1, + ACTIONS(2305), 1, anon_sym_PIPE, - ACTIONS(2341), 1, + ACTIONS(2307), 1, anon_sym_AMP, - ACTIONS(2343), 1, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2345), 1, + ACTIONS(2311), 1, anon_sym_is, - STATE(1573), 1, + STATE(1561), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2347), 2, + ACTIONS(2313), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(878), 2, sym__not_in, sym__is_not, - STATE(1315), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2301), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2329), 6, + ACTIONS(2295), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2096), 7, - anon_sym_RPAREN, + ACTIONS(2072), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_and, anon_sym_or, - [67464] = 20, - ACTIONS(2100), 1, + [66794] = 21, + ACTIONS(2086), 1, + anon_sym_as, + ACTIONS(2096), 1, + anon_sym_not, + ACTIONS(2315), 1, + anon_sym_DOT, + ACTIONS(2317), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2325), 1, anon_sym_STAR_STAR, - ACTIONS(2118), 1, + ACTIONS(2327), 1, + anon_sym_LBRACK, + ACTIONS(2333), 1, anon_sym_PIPE, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2122), 1, + ACTIONS(2335), 1, anon_sym_AMP, - ACTIONS(2124), 1, + ACTIONS(2337), 1, anon_sym_CARET, - ACTIONS(2126), 1, + ACTIONS(2339), 1, anon_sym_is, - ACTIONS(2349), 1, - anon_sym_DOT, - ACTIONS(2351), 1, - anon_sym_LBRACK, - STATE(1564), 1, + STATE(1570), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, + ACTIONS(2321), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2128), 2, + ACTIONS(2341), 2, anon_sym_LT, anon_sym_GT, - STATE(965), 2, + STATE(943), 2, sym__not_in, sym__is_not, - STATE(1084), 2, + STATE(1380), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2329), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2106), 6, + ACTIONS(2323), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2096), 8, - sym__newline, - anon_sym_SEMI, + ACTIONS(2072), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_and, anon_sym_or, - [67546] = 5, - ACTIONS(81), 1, + [66878] = 5, + ACTIONS(2343), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(970), 2, + STATE(966), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2282), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2280), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83202,38 +82750,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67598] = 5, - ACTIONS(81), 1, + [66929] = 5, + ACTIONS(2346), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(966), 2, + STATE(967), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(2282), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2280), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83249,154 +82796,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67650] = 21, - ACTIONS(2110), 1, - anon_sym_EQ, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2375), 1, - anon_sym_PIPE, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(2381), 1, - anon_sym_is, - STATE(1572), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2383), 2, - anon_sym_LT, - anon_sym_GT, - STATE(904), 2, - sym__not_in, - sym__is_not, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2365), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2096), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [67734] = 21, - ACTIONS(2110), 1, - anon_sym_as, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2403), 1, - anon_sym_PIPE, - ACTIONS(2405), 1, - anon_sym_AMP, - ACTIONS(2407), 1, - anon_sym_CARET, - ACTIONS(2409), 1, - anon_sym_is, - STATE(1589), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2411), 2, - anon_sym_LT, - anon_sym_GT, - STATE(876), 2, - sym__not_in, - sym__is_not, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2393), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2096), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [67818] = 8, - ACTIONS(2098), 1, + [66980] = 8, + ACTIONS(2074), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2076), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2084), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2088), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, + STATE(1114), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2351), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 27, + ACTIONS(2349), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83424,142 +82845,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67875] = 12, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, + [67037] = 5, + ACTIONS(711), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + STATE(973), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1556), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67940] = 8, - ACTIONS(2098), 1, + ACTIONS(1551), 30, anon_sym_DOT, - ACTIONS(2100), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67997] = 8, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2421), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83575,22 +82890,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68054] = 5, - ACTIONS(823), 1, + sym_type_conversion, + [67088] = 5, + ACTIONS(733), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(978), 2, + STATE(966), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2274), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2272), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83621,34 +82937,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68105] = 5, - ACTIONS(823), 1, - sym_string_start, + [67139] = 8, + ACTIONS(2074), 1, + anon_sym_DOT, + ACTIONS(2076), 1, + anon_sym_LPAREN, + ACTIONS(2084), 1, + anon_sym_STAR_STAR, + ACTIONS(2088), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, - sym_string, - aux_sym_concatenated_string_repeat1, + STATE(1114), 2, + sym_argument_list, + sym_generator_expression, ACTIONS(2355), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2353), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83667,22 +82986,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68156] = 5, - ACTIONS(2425), 1, + [67196] = 5, + ACTIONS(779), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, + STATE(986), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(1556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 30, + ACTIONS(1551), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83694,10 +83013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83713,30 +83032,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68207] = 5, - ACTIONS(733), 1, + [67247] = 5, + ACTIONS(711), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(981), 2, + STATE(978), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2274), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2272), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -83759,37 +83077,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68258] = 5, - ACTIONS(733), 1, - sym_string_start, + sym_type_conversion, + [67298] = 8, + ACTIONS(2074), 1, + anon_sym_DOT, + ACTIONS(2076), 1, + anon_sym_LPAREN, + ACTIONS(2084), 1, + anon_sym_STAR_STAR, + ACTIONS(2088), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(982), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, - anon_sym_as, + STATE(1114), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83805,43 +83127,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68309] = 5, - ACTIONS(2428), 1, - sym_string_start, + [67355] = 11, + ACTIONS(2074), 1, + anon_sym_DOT, + ACTIONS(2076), 1, + anon_sym_LPAREN, + ACTIONS(2084), 1, + anon_sym_STAR_STAR, + ACTIONS(2088), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(982), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, - anon_sym_as, + ACTIONS(2078), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2092), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1114), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2090), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -83851,82 +83179,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68360] = 5, - ACTIONS(708), 1, - sym_string_start, + [67418] = 15, + ACTIONS(2074), 1, + anon_sym_DOT, + ACTIONS(2076), 1, + anon_sym_LPAREN, + ACTIONS(2084), 1, + anon_sym_STAR_STAR, + ACTIONS(2088), 1, + anon_sym_LBRACK, + ACTIONS(2094), 1, + anon_sym_PIPE, + ACTIONS(2098), 1, + anon_sym_AMP, + ACTIONS(2100), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2078), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2080), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2092), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1114), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2090), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2363), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2361), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68411] = 5, - ACTIONS(708), 1, - sym_string_start, + [67489] = 8, + ACTIONS(2074), 1, + anon_sym_DOT, + ACTIONS(2076), 1, + anon_sym_LPAREN, + ACTIONS(2084), 1, + anon_sym_STAR_STAR, + ACTIONS(2088), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(985), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + STATE(1114), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83942,23 +83284,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68462] = 5, - ACTIONS(2431), 1, + [67546] = 5, + ACTIONS(2365), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(985), 2, + STATE(978), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(2282), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 30, + ACTIONS(2280), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83989,91 +83330,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68513] = 8, - ACTIONS(2098), 1, + [67597] = 12, + ACTIONS(2074), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2076), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2084), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2088), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2078), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2080), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68570] = 11, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2102), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2116), 2, + ACTIONS(2092), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, + STATE(1114), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2090), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2359), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, + ACTIONS(2357), 20, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -84083,52 +83377,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68633] = 15, - ACTIONS(2098), 1, + [67662] = 14, + ACTIONS(2074), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2076), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2084), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2088), 1, anon_sym_LBRACK, - ACTIONS(2118), 1, - anon_sym_PIPE, - ACTIONS(2122), 1, + ACTIONS(2098), 1, anon_sym_AMP, - ACTIONS(2124), 1, + ACTIONS(2100), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2078), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, + ACTIONS(2080), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2092), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, + STATE(1114), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2090), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, + ACTIONS(2359), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 17, + ACTIONS(2357), 18, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84137,6 +83428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84146,220 +83438,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68704] = 10, - ACTIONS(2098), 1, + [67731] = 13, + ACTIONS(2074), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2076), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2084), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2088), 1, anon_sym_LBRACK, + ACTIONS(2100), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2078), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1084), 2, + ACTIONS(2080), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2092), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1114), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2090), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2359), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 24, + ACTIONS(2357), 19, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68765] = 14, - ACTIONS(2098), 1, + [67798] = 21, + ACTIONS(2086), 1, + anon_sym_EQ, + ACTIONS(2096), 1, + anon_sym_not, + ACTIONS(2368), 1, anon_sym_DOT, - ACTIONS(2100), 1, + ACTIONS(2370), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - ACTIONS(2112), 1, + ACTIONS(2380), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, + ACTIONS(2386), 1, + anon_sym_PIPE, + ACTIONS(2388), 1, anon_sym_AMP, - ACTIONS(2124), 1, + ACTIONS(2390), 1, anon_sym_CARET, + ACTIONS(2392), 1, + anon_sym_is, + STATE(1579), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2102), 2, + ACTIONS(2372), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2104), 2, + ACTIONS(2374), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2116), 2, + ACTIONS(2384), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1084), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2114), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + ACTIONS(2394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68834] = 13, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2100), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_STAR_STAR, - ACTIONS(2112), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2102), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2104), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2116), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1084), 2, + STATE(894), 2, + sym__not_in, + sym__is_not, + STATE(1429), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2114), 3, + ACTIONS(2382), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2072), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_is, + ACTIONS(2376), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68901] = 20, - ACTIONS(2120), 1, + [67881] = 20, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2438), 1, + ACTIONS(2396), 1, anon_sym_DOT, - ACTIONS(2440), 1, + ACTIONS(2398), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, + ACTIONS(2406), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, + ACTIONS(2408), 1, anon_sym_LBRACK, - ACTIONS(2456), 1, + ACTIONS(2414), 1, anon_sym_PIPE, - ACTIONS(2458), 1, + ACTIONS(2416), 1, anon_sym_AMP, - ACTIONS(2460), 1, + ACTIONS(2418), 1, anon_sym_CARET, - ACTIONS(2462), 1, + ACTIONS(2420), 1, anon_sym_is, - STATE(1578), 1, + STATE(1566), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2442), 2, + ACTIONS(2400), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, + ACTIONS(2402), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2454), 2, + ACTIONS(2412), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2464), 2, + ACTIONS(2422), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, + STATE(871), 2, sym__not_in, sym__is_not, - STATE(1440), 2, + STATE(1441), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2452), 3, + ACTIONS(2410), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2446), 6, + ACTIONS(2404), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2096), 7, + ACTIONS(2072), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -84367,44 +83615,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [68982] = 8, - ACTIONS(2210), 1, + [67962] = 10, + ACTIONS(2074), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2076), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2084), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2088), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, + ACTIONS(2078), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1114), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_STAR, + ACTIONS(2090), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2357), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84414,34 +83666,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69038] = 5, - ACTIONS(328), 1, + [68023] = 5, + ACTIONS(733), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, + STATE(970), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(1556), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + ACTIONS(1551), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84460,36 +83712,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69088] = 5, - ACTIONS(2466), 1, + [68074] = 5, + ACTIONS(779), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(995), 2, + STATE(967), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(2274), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, + ACTIONS(2272), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84505,72 +83758,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69138] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, + [68125] = 15, + ACTIONS(2210), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + anon_sym_LPAREN, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, anon_sym_LBRACK, - STATE(2076), 1, - sym_type_parameter, + ACTIONS(2228), 1, + anon_sym_PIPE, + ACTIONS(2230), 1, + anon_sym_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(2214), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(2216), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2226), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1209), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2224), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2363), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2361), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69190] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2090), 1, - sym_type_parameter, + [68195] = 5, + ACTIONS(757), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + STATE(998), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2274), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(2272), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84578,7 +83839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84597,28 +83858,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69242] = 8, - ACTIONS(2286), 1, + [68245] = 8, + ACTIONS(2238), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2240), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2248), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2250), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2351), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2349), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84626,10 +83887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84645,28 +83906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69298] = 8, - ACTIONS(2286), 1, + [68301] = 8, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, + STATE(1209), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2351), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + ACTIONS(2349), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84693,29 +83954,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69354] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [68357] = 5, + ACTIONS(328), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1013), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2274), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2272), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84737,19 +83999,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69402] = 3, + [68407] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 32, + ACTIONS(277), 30, sym__newline, - sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -84758,7 +84022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84780,34 +84043,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69448] = 8, - ACTIONS(2286), 1, + [68455] = 8, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + ACTIONS(2351), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2349), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -84828,48 +84090,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69504] = 11, - ACTIONS(2286), 1, + sym_type_conversion, + [68511] = 8, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2355), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(2353), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84879,83 +84138,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69566] = 15, - ACTIONS(2286), 1, + sym_type_conversion, + [68567] = 13, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - ACTIONS(2304), 1, - anon_sym_PIPE, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, + ACTIONS(2232), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2214), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, + ACTIONS(2216), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2302), 2, + ACTIONS(2226), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1171), 2, + STATE(1209), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, + ACTIONS(2359), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(2357), 18, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69636] = 8, - ACTIONS(2286), 1, + [68633] = 8, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1171), 2, + STATE(1209), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2355), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2353), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84982,47 +84240,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69692] = 10, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [68689] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(277), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85032,166 +84284,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69752] = 14, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - anon_sym_AMP, - ACTIONS(2308), 1, - anon_sym_CARET, + [68737] = 5, + ACTIONS(2424), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + STATE(998), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2282), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2280), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [69820] = 13, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, anon_sym_LBRACK, - ACTIONS(2308), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 18, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69886] = 12, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [68787] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(1556), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2302), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1171), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(1551), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69950] = 8, + [68835] = 8, ACTIONS(2238), 1, anon_sym_DOT, ACTIONS(2240), 1, @@ -85203,16 +84385,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2355), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2353), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85239,7 +84421,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70006] = 8, + [68891] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2429), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2427), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68937] = 8, ACTIONS(2238), 1, anon_sym_DOT, ACTIONS(2240), 1, @@ -85251,16 +84476,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2359), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + ACTIONS(2357), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85287,41 +84512,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70062] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [68993] = 11, + ACTIONS(2238), 1, + anon_sym_DOT, + ACTIONS(2240), 1, + anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_STAR_STAR, + ACTIONS(2250), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2242), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2254), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2252), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2357), 21, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85331,38 +84563,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70110] = 8, - ACTIONS(2210), 1, + [69055] = 15, + ACTIONS(2238), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2240), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2248), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2250), 1, + anon_sym_LBRACK, + ACTIONS(2256), 1, + anon_sym_PIPE, + ACTIONS(2258), 1, + anon_sym_AMP, + ACTIONS(2260), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2242), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2244), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2254), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2252), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2363), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2361), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69125] = 8, + ACTIONS(2238), 1, + anon_sym_DOT, + ACTIONS(2240), 1, + anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_STAR_STAR, + ACTIONS(2250), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2359), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2357), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85378,45 +84666,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70166] = 8, - ACTIONS(2210), 1, + [69181] = 10, + ACTIONS(2238), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2240), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2248), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2250), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2242), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2252), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 26, + ACTIONS(2357), 23, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85426,35 +84716,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70222] = 3, + [69241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(1658), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(1656), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85470,29 +84758,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70268] = 3, + sym_type_conversion, + [69287] = 8, + ACTIONS(2130), 1, + anon_sym_DOT, + ACTIONS(2132), 1, + anon_sym_LPAREN, + ACTIONS(2140), 1, + anon_sym_STAR_STAR, + ACTIONS(2142), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 6, - anon_sym_as, + STATE(1156), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85513,102 +84807,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70314] = 12, - ACTIONS(2238), 1, + [69343] = 11, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(2134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, + ACTIONS(2146), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1250), 2, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, + ACTIONS(2144), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2357), 21, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70378] = 11, - ACTIONS(2210), 1, + sym_type_conversion, + [69405] = 15, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, + ACTIONS(2148), 1, + anon_sym_PIPE, + ACTIONS(2150), 1, + anon_sym_AMP, + ACTIONS(2152), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2226), 2, + ACTIONS(2136), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2146), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1205), 2, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2144), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2363), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(2361), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85616,7 +84913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70440] = 15, + [69475] = 11, ACTIONS(2210), 1, anon_sym_DOT, ACTIONS(2212), 1, @@ -85625,45 +84922,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2222), 1, anon_sym_LBRACK, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2214), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, ACTIONS(2226), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1205), 2, + STATE(1209), 2, sym_argument_list, sym_generator_expression, ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, + ACTIONS(2359), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 21, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69537] = 10, + ACTIONS(2130), 1, + anon_sym_DOT, + ACTIONS(2132), 1, + anon_sym_LPAREN, + ACTIONS(2140), 1, + anon_sym_STAR_STAR, + ACTIONS(2142), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2134), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1156), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2144), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(2357), 23, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85671,30 +85014,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70510] = 5, - ACTIONS(2479), 1, + [69597] = 5, + ACTIONS(2431), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1020), 2, + STATE(1013), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, - anon_sym_as, + ACTIONS(2282), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, + ACTIONS(2280), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85716,49 +85059,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70560] = 10, - ACTIONS(2210), 1, + [69647] = 14, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, + ACTIONS(2150), 1, + anon_sym_AMP, + ACTIONS(2152), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2134), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1205), 2, + ACTIONS(2136), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2146), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2144), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2359), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(2357), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85766,7 +85113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70620] = 14, + [69715] = 12, ACTIONS(2210), 1, anon_sym_DOT, ACTIONS(2212), 1, @@ -85775,10 +85122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2222), 1, anon_sym_LBRACK, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -85791,70 +85134,72 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2226), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1205), 2, + STATE(1209), 2, sym_argument_list, sym_generator_expression, ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + ACTIONS(2359), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2357), 19, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70688] = 13, - ACTIONS(2210), 1, + [69779] = 13, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, - ACTIONS(2232), 1, + ACTIONS(2152), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, + ACTIONS(2136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(2146), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1205), 2, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2144), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2359), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2357), 18, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -85873,39 +85218,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70754] = 12, - ACTIONS(2210), 1, + [69845] = 12, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, + ACTIONS(2136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2226), 2, + ACTIONS(2146), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1205), 2, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2224), 3, + ACTIONS(2144), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2359), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 19, + ACTIONS(2357), 19, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -85925,36 +85270,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70818] = 5, - ACTIONS(328), 1, - sym_string_start, + [69909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(994), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(1654), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1652), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85970,35 +85312,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70868] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [69955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1662), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1660), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86014,18 +85355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70916] = 3, + sym_type_conversion, + [70001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 6, + ACTIONS(1611), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 31, + ACTIONS(1609), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86057,20 +85399,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70962] = 3, + [70047] = 10, + ACTIONS(2210), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + anon_sym_LPAREN, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 6, + ACTIONS(2214), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1209), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2224), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 23, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70107] = 20, + ACTIONS(2096), 1, + anon_sym_not, + ACTIONS(2238), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + anon_sym_LBRACK, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2414), 1, + anon_sym_PIPE, + ACTIONS(2416), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_is, + STATE(1566), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2400), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2402), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2412), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2422), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 31, + STATE(871), 2, + sym__not_in, + sym__is_not, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2072), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + ACTIONS(2404), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70187] = 8, + ACTIONS(2210), 1, anon_sym_DOT, + ACTIONS(2212), 1, anon_sym_LPAREN, + ACTIONS(2220), 1, + anon_sym_STAR_STAR, + ACTIONS(2222), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1209), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86078,8 +85538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86099,34 +85557,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71008] = 3, + [70243] = 5, + ACTIONS(328), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, - anon_sym_as, + STATE(991), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86142,19 +85602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71054] = 3, + [70293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 6, + ACTIONS(1611), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, + ACTIONS(1609), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86186,18 +85645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71100] = 3, + [70339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 6, + ACTIONS(1615), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, + ACTIONS(1613), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86229,18 +85688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71146] = 3, + [70385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 6, + ACTIONS(1615), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, + ACTIONS(1613), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86272,90 +85731,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71192] = 20, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2339), 1, - anon_sym_PIPE, - ACTIONS(2341), 1, - anon_sym_AMP, - ACTIONS(2343), 1, - anon_sym_CARET, - ACTIONS(2345), 1, - anon_sym_is, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2397), 1, - anon_sym_LBRACK, - STATE(1573), 1, - aux_sym_comparison_operator_repeat1, + [70431] = 5, + ACTIONS(757), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2327), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2347), 2, - anon_sym_LT, - anon_sym_GT, - STATE(957), 2, - sym__not_in, - sym__is_not, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2096), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2329), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71272] = 5, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1035), 2, + STATE(988), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(1556), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86377,157 +85776,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71322] = 5, - ACTIONS(801), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1036), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2353), 29, + [70481] = 20, + ACTIONS(2096), 1, + anon_sym_not, + ACTIONS(2315), 1, anon_sym_DOT, + ACTIONS(2327), 1, + anon_sym_LBRACK, + ACTIONS(2370), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2378), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2386), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2388), 1, anon_sym_AMP, + ACTIONS(2390), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2392), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71372] = 5, - ACTIONS(2482), 1, - sym_string_start, + STATE(1579), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1036), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 5, + ACTIONS(2372), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2374), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2384), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2394), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(894), 2, + sym__not_in, + sym__is_not, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2382), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2072), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2376), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71422] = 20, - ACTIONS(2120), 1, + [70561] = 20, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LBRACK, - ACTIONS(2440), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2456), 1, + ACTIONS(2148), 1, anon_sym_PIPE, - ACTIONS(2458), 1, + ACTIONS(2150), 1, anon_sym_AMP, - ACTIONS(2460), 1, + ACTIONS(2152), 1, anon_sym_CARET, - ACTIONS(2462), 1, + ACTIONS(2154), 1, anon_sym_is, - STATE(1578), 1, + ACTIONS(2210), 1, + anon_sym_DOT, + ACTIONS(2222), 1, + anon_sym_LBRACK, + STATE(1564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2442), 2, + ACTIONS(2134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, + ACTIONS(2136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2454), 2, + ACTIONS(2146), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2464), 2, + ACTIONS(2156), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, + STATE(908), 2, sym__not_in, sym__is_not, - STATE(1440), 2, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2452), 3, + ACTIONS(2144), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2096), 6, + ACTIONS(2072), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - ACTIONS(2446), 6, + ACTIONS(2138), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71502] = 8, + [70641] = 14, ACTIONS(2238), 1, anon_sym_DOT, ACTIONS(2240), 1, @@ -86536,77 +85905,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2250), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 26, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2258), 1, anon_sym_AMP, + ACTIONS(2260), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71558] = 11, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2242), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2244), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, ACTIONS(2254), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1250), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, ACTIONS(2252), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2359), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 21, + ACTIONS(2357), 17, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, @@ -86617,16 +85944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71620] = 15, + [70709] = 13, ACTIONS(2238), 1, anon_sym_DOT, ACTIONS(2240), 1, @@ -86635,10 +85959,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2250), 1, anon_sym_LBRACK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2258), 1, - anon_sym_AMP, ACTIONS(2260), 1, anon_sym_CARET, ACTIONS(3), 2, @@ -86653,18 +85973,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2254), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1250), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, ACTIONS(2252), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, + ACTIONS(2359), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 16, + ACTIONS(2357), 18, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -86672,114 +85992,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_in, anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71690] = 8, - ACTIONS(2238), 1, + [70775] = 14, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2240), 1, + ACTIONS(2212), 1, anon_sym_LPAREN, - ACTIONS(2248), 1, + ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2250), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, + ACTIONS(2230), 1, + anon_sym_AMP, + ACTIONS(2232), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + ACTIONS(2214), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 26, - anon_sym_COMMA, + ACTIONS(2216), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2226), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [71746] = 10, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2242), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1250), 2, + STATE(1209), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2252), 3, + ACTIONS(2224), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2359), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 23, + ACTIONS(2357), 17, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71806] = 14, + [70843] = 12, ACTIONS(2238), 1, anon_sym_DOT, ACTIONS(2240), 1, @@ -86788,10 +86066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2250), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, - anon_sym_AMP, - ACTIONS(2260), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -86804,18 +86078,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2254), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1250), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, ACTIONS(2252), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2359), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2357), 19, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -86827,36 +86101,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71874] = 5, - ACTIONS(779), 1, - sym_string_start, + [70907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1046), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2436), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2434), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86878,78 +86152,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71924] = 13, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2240), 1, - anon_sym_LPAREN, - ACTIONS(2248), 1, - anon_sym_STAR_STAR, - ACTIONS(2250), 1, + [70953] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(2438), 1, anon_sym_LBRACK, - ACTIONS(2260), 1, - anon_sym_CARET, + STATE(2003), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2242), 2, + ACTIONS(279), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2244), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2254), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1250), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2252), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(277), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71990] = 5, - ACTIONS(779), 1, - sym_string_start, + [71005] = 6, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(2438), 1, + anon_sym_LBRACK, + STATE(2004), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1020), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 5, + ACTIONS(1556), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, + ACTIONS(1551), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86957,7 +86225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86976,88 +86244,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72040] = 20, - ACTIONS(2120), 1, - anon_sym_not, + [71057] = 8, + ACTIONS(2210), 1, + anon_sym_DOT, ACTIONS(2212), 1, anon_sym_LPAREN, ACTIONS(2220), 1, anon_sym_STAR_STAR, - ACTIONS(2228), 1, - anon_sym_PIPE, - ACTIONS(2230), 1, - anon_sym_AMP, - ACTIONS(2232), 1, - anon_sym_CARET, - ACTIONS(2234), 1, - anon_sym_is, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2298), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - STATE(1576), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + STATE(1209), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2216), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2226), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2236), 2, anon_sym_LT, anon_sym_GT, - STATE(954), 2, - sym__not_in, - sym__is_not, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2224), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2096), 6, + ACTIONS(2357), 26, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2218), 6, - anon_sym_in, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72120] = 8, - ACTIONS(2210), 1, + [71113] = 8, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2212), 1, + ACTIONS(2132), 1, anon_sym_LPAREN, - ACTIONS(2220), 1, + ACTIONS(2140), 1, anon_sym_STAR_STAR, - ACTIONS(2222), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, + STATE(1156), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(2359), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 26, + ACTIONS(2357), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -87084,21 +86340,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [72176] = 3, + [71169] = 5, + ACTIONS(801), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + STATE(1095), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1556), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1551), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87108,6 +86365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87126,62 +86384,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72221] = 3, + [71218] = 14, + ACTIONS(2287), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_LPAREN, + ACTIONS(2297), 1, + anon_sym_STAR_STAR, + ACTIONS(2299), 1, + anon_sym_LBRACK, + ACTIONS(2307), 1, + anon_sym_AMP, + ACTIONS(2309), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2291), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2293), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2303), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1292), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2357), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72266] = 4, - ACTIONS(1572), 1, + [71285] = 4, + ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(279), 6, anon_sym_as, anon_sym_STAR, anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -87192,10 +86461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87211,82 +86480,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72313] = 8, - ACTIONS(2357), 1, + [71332] = 13, + ACTIONS(2287), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2299), 1, anon_sym_LBRACK, + ACTIONS(2309), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, + ACTIONS(2291), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2293), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2303), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_STAR, + ACTIONS(2301), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2357), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72368] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [71397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(2442), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, + ACTIONS(2440), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87305,30 +86574,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72423] = 3, + [71442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, - anon_sym_as, + ACTIONS(2446), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, - sym_string_start, + ACTIONS(2444), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87347,33 +86616,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72468] = 10, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [71487] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(745), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -87381,12 +86640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87396,36 +86660,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72527] = 6, + [71536] = 5, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + ACTIONS(745), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87441,36 +86704,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72578] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, + [71585] = 5, + ACTIONS(2448), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + STATE(1048), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2282), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(2280), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87486,75 +86748,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72629] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1660), 1, - anon_sym_COLON, + [71634] = 12, + ACTIONS(2287), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_LPAREN, + ACTIONS(2297), 1, + anon_sym_STAR_STAR, + ACTIONS(2299), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2293), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2303), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1292), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72680] = 3, + [71697] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(1556), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1551), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87573,38 +86842,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72725] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [71744] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(674), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(667), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(669), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(688), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87620,139 +86887,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72780] = 11, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [71795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2453), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 20, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [72841] = 15, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2375), 1, - anon_sym_PIPE, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [72910] = 8, - ACTIONS(2357), 1, + ACTIONS(2451), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2359), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87771,46 +86929,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72965] = 10, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [71840] = 5, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(2455), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(1556), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, + ACTIONS(1551), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87820,26 +86973,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73024] = 3, + [71889] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(674), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(667), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(669), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(688), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -87862,34 +87018,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73069] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [71940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(2436), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2434), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87905,31 +87059,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73116] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [71985] = 5, + ACTIONS(823), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + STATE(1059), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2274), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2272), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87948,93 +87104,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73163] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [72034] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, - anon_sym_as, + ACTIONS(1622), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(1625), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1619), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1617), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73210] = 14, - ACTIONS(2357), 1, + [72083] = 15, + ACTIONS(2315), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2317), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2325), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2327), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2333), 1, + anon_sym_PIPE, + ACTIONS(2335), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2337), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2321), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1380), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2329), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, + ACTIONS(2363), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 16, + ACTIONS(2361), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -88044,187 +87202,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73277] = 13, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_CARET, + [72152] = 5, + ACTIONS(2457), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + STATE(1059), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2282), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2280), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73342] = 15, - ACTIONS(2385), 1, + [72201] = 8, + ACTIONS(2287), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2299), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, - anon_sym_PIPE, - ACTIONS(2405), 1, - anon_sym_AMP, - ACTIONS(2407), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_as, + ACTIONS(2355), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 15, - anon_sym_RPAREN, + ACTIONS(2353), 25, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73411] = 12, - ACTIONS(2357), 1, + [72256] = 8, + ACTIONS(2287), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2299), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + ACTIONS(2351), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, + ACTIONS(2349), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73474] = 3, + [72311] = 8, + ACTIONS(2315), 1, + anon_sym_DOT, + ACTIONS(2317), 1, + anon_sym_LPAREN, + ACTIONS(2325), 1, + anon_sym_STAR_STAR, + ACTIONS(2327), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + STATE(1380), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2357), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88243,17 +87387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73519] = 3, + [72366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2429), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, + ACTIONS(2427), 31, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -88285,39 +87429,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73564] = 3, + [72411] = 10, + ACTIONS(2315), 1, + anon_sym_DOT, + ACTIONS(2317), 1, + anon_sym_LPAREN, + ACTIONS(2325), 1, + anon_sym_STAR_STAR, + ACTIONS(2327), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(2319), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1380), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2329), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2357), 22, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88327,17 +87478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73609] = 3, + [72470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2462), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 31, + ACTIONS(2460), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88369,17 +87520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73654] = 3, + [72515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2466), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, + ACTIONS(2464), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88411,17 +87562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73699] = 3, + [72560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2470), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 31, + ACTIONS(2468), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88453,33 +87604,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73744] = 3, + [72605] = 6, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(1625), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1617), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1622), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1619), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88495,17 +87649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73789] = 3, + [72656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2474), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 31, + ACTIONS(2472), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88537,33 +87691,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73834] = 3, + [72701] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88579,34 +87733,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73879] = 5, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1572), 1, + sym_type_conversion, + [72748] = 4, + ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(279), 6, + anon_sym_as, anon_sym_STAR, anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88622,34 +87777,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73928] = 3, + [72795] = 5, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88665,99 +87820,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73973] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2493), 31, - sym__newline, - anon_sym_SEMI, + sym_type_conversion, + [72844] = 12, + ACTIONS(2315), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2317), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2325), 1, anon_sym_STAR_STAR, + ACTIONS(2327), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [74018] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2321), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2331), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1380), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2329), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1652), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(2359), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 18, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74067] = 6, + [72907] = 5, + ACTIONS(284), 1, + anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(2497), 1, - anon_sym_LBRACK, - STATE(1968), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -88768,19 +87887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88796,33 +87915,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74118] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2497), 1, - anon_sym_LBRACK, - STATE(1970), 1, - sym_type_parameter, + sym_type_conversion, + [72956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2478), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2476), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88841,86 +87958,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74169] = 14, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_AMP, - ACTIONS(2407), 1, - anon_sym_CARET, + [73001] = 7, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(1650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2391), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(1617), 2, anon_sym_async, anon_sym_for, - anon_sym_in, + ACTIONS(1648), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [74236] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1622), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(1619), 23, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88936,69 +88004,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74281] = 13, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(2407), 1, - anon_sym_CARET, + [73054] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2391), 2, + ACTIONS(674), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(688), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2401), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 17, - anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(667), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74346] = 3, + [73103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2482), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 31, + ACTIONS(2480), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89030,75 +88090,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74391] = 3, + [73148] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(669), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(688), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(667), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74436] = 3, + [73197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(2436), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2434), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89114,25 +88176,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74481] = 3, + [73242] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -89156,17 +88219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [74526] = 3, + [73289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1658), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 31, + ACTIONS(1656), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89198,82 +88261,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74571] = 8, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, + [73334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [74626] = 8, - ACTIONS(2321), 1, + ACTIONS(277), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2323), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2421), 25, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89292,17 +88303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74681] = 3, + [73379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1680), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 31, + ACTIONS(1675), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89334,32 +88345,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74726] = 3, + [73424] = 8, + ACTIONS(2287), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_LPAREN, + ACTIONS(2297), 1, + anon_sym_STAR_STAR, + ACTIONS(2299), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + STATE(1292), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89375,36 +88392,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74771] = 8, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, + [73479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, - anon_sym_RPAREN, + ACTIONS(277), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89423,35 +88434,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74826] = 8, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [73524] = 5, + ACTIONS(823), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + STATE(1056), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1556), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(1551), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89470,89 +88478,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74881] = 15, - ACTIONS(2321), 1, + [73573] = 13, + ACTIONS(2315), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2317), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2325), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2327), 1, anon_sym_LBRACK, - ACTIONS(2339), 1, - anon_sym_PIPE, - ACTIONS(2341), 1, - anon_sym_AMP, - ACTIONS(2343), 1, + ACTIONS(2337), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, + ACTIONS(2321), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2337), 2, + ACTIONS(2331), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1315), 2, + STATE(1380), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, + ACTIONS(2329), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2436), 3, - anon_sym_EQ, + ACTIONS(2359), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 15, + ACTIONS(2357), 17, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74950] = 8, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, + [73638] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(2484), 1, anon_sym_LBRACK, + STATE(1983), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(277), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89571,46 +88575,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75005] = 10, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, + [73689] = 6, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(2484), 1, anon_sym_LBRACK, + STATE(1937), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(1556), 6, anon_sym_STAR, - anon_sym_SLASH, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 22, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1551), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89620,173 +88620,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75064] = 14, - ACTIONS(2321), 1, + [73740] = 8, + ACTIONS(2315), 1, anon_sym_DOT, - ACTIONS(2323), 1, + ACTIONS(2317), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2325), 1, anon_sym_STAR_STAR, - ACTIONS(2333), 1, + ACTIONS(2327), 1, anon_sym_LBRACK, - ACTIONS(2341), 1, - anon_sym_AMP, - ACTIONS(2343), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2327), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, + STATE(1380), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 16, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2359), 5, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75131] = 13, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, - ACTIONS(2343), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2325), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2327), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 17, + ACTIONS(2357), 25, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75196] = 12, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, + [73795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(1654), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2327), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 18, - anon_sym_RPAREN, + ACTIONS(1652), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75259] = 3, + [73840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2488), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 31, + ACTIONS(2486), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89818,30 +88751,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75304] = 3, + [73885] = 8, + ACTIONS(2315), 1, + anon_sym_DOT, + ACTIONS(2317), 1, + anon_sym_LPAREN, + ACTIONS(2325), 1, + anon_sym_STAR_STAR, + ACTIONS(2327), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + STATE(1380), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2351), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2349), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89860,21 +88798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75349] = 5, - ACTIONS(755), 1, + [73940] = 5, + ACTIONS(801), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1116), 2, + STATE(1048), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 4, + ACTIONS(2274), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2272), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89904,20 +88842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75398] = 4, - ACTIONS(292), 1, + [73989] = 4, + ACTIONS(1558), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1556), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -89947,33 +88885,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [75445] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [74036] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2492), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2490), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89989,34 +88927,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75492] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [74081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1662), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1660), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90032,18 +88969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75539] = 3, + [74126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1611), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 31, + ACTIONS(1609), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90075,17 +89011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75584] = 3, + [74171] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(1611), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 31, + ACTIONS(1609), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90117,32 +89053,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75629] = 5, - ACTIONS(755), 1, - sym_string_start, + [74216] = 8, + ACTIONS(2315), 1, + anon_sym_DOT, + ACTIONS(2317), 1, + anon_sym_LPAREN, + ACTIONS(2325), 1, + anon_sym_STAR_STAR, + ACTIONS(2327), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1117), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2355), 4, + STATE(1380), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2355), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2353), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2353), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90161,22 +89100,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75678] = 5, - ACTIONS(2539), 1, - sym_string_start, + [74271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1117), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2316), 4, + ACTIONS(1615), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2314), 29, + ACTIONS(1613), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -90186,7 +89124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90205,17 +89142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75727] = 3, + [74316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1615), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 31, + ACTIONS(1613), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90247,39 +89184,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75772] = 3, + [74361] = 11, + ACTIONS(2287), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_LPAREN, + ACTIONS(2297), 1, + anon_sym_STAR_STAR, + ACTIONS(2299), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2291), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2303), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1292), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2357), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90289,17 +89234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75817] = 3, + [74422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2496), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 31, + ACTIONS(2494), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90331,17 +89276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75862] = 3, + [74467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2500), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 31, + ACTIONS(2498), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90373,29 +89318,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75907] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [74512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1632), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1627), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90417,29 +89360,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75956] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [74557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1669), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1664), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90461,23 +89402,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76005] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2558), 1, - anon_sym_EQ, + [74602] = 11, + ACTIONS(2315), 1, + anon_sym_DOT, + ACTIONS(2317), 1, + anon_sym_LPAREN, + ACTIONS(2325), 1, + anon_sym_STAR_STAR, + ACTIONS(2327), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2319), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2331), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1380), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2329), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -90485,17 +89439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90505,127 +89452,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76054] = 12, - ACTIONS(2385), 1, + [74663] = 15, + ACTIONS(2287), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2299), 1, anon_sym_LBRACK, + ACTIONS(2305), 1, + anon_sym_PIPE, + ACTIONS(2307), 1, + anon_sym_AMP, + ACTIONS(2309), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2389), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2391), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2401), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1409), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 3, + ACTIONS(2301), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76117] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 5, - anon_sym_STAR, + ACTIONS(2363), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2361), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76162] = 8, - ACTIONS(2385), 1, + [74732] = 8, + ACTIONS(2287), 1, anon_sym_DOT, - ACTIONS(2387), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2395), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2397), 1, + ACTIONS(2299), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 5, - anon_sym_as, + ACTIONS(2359), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, - anon_sym_RPAREN, + ACTIONS(2357), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -90645,37 +89553,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76217] = 7, - ACTIONS(1572), 1, + [74787] = 6, + ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1675), 1, + ACTIONS(674), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, + ACTIONS(667), 2, anon_sym_async, anon_sym_for, - ACTIONS(1673), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1657), 5, + ACTIONS(669), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 23, + ACTIONS(688), 27, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90691,34 +89598,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76270] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [74838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2504), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2502), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90734,35 +89640,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76319] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [74883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2508), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2506), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90778,78 +89682,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [76368] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + [74928] = 5, + ACTIONS(1553), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76417] = 3, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, - anon_sym_as, + ACTIONS(1556), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 31, - sym_string_start, + ACTIONS(1551), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90865,67 +89725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76462] = 11, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2389), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2401), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76523] = 3, + sym_type_conversion, + [74977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 31, + ACTIONS(2510), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90957,120 +89768,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76568] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1667), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1662), 31, - sym__newline, - anon_sym_SEMI, + [75022] = 14, + ACTIONS(2315), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2317), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2325), 1, anon_sym_STAR_STAR, + ACTIONS(2327), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2335), 1, anon_sym_AMP, + ACTIONS(2337), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76613] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2568), 1, - anon_sym_LBRACK, - STATE(1984), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2319), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2321), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2331), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1380), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2329), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(2357), 16, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76664] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2568), 1, - anon_sym_LBRACK, - STATE(1988), 1, - sym_type_parameter, + [75089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2516), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2514), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91089,38 +89863,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76715] = 8, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [75134] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(279), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91136,38 +89906,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76770] = 8, - ACTIONS(2385), 1, - anon_sym_DOT, - ACTIONS(2387), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_STAR_STAR, - ACTIONS(2397), 1, - anon_sym_LBRACK, + [75181] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1409), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2423), 5, + ACTIONS(279), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, - anon_sym_RPAREN, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91183,80 +89949,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76825] = 5, + [75228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2520), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2518), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76874] = 6, - ACTIONS(292), 1, + [75273] = 4, + ACTIONS(1558), 1, anon_sym_COLON_EQ, - ACTIONS(674), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, + ACTIONS(1556), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91272,7 +90034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76925] = 6, + [75320] = 6, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(674), 1, @@ -91289,7 +90051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(688), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91317,30 +90079,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76976] = 3, + [75371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2436), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2434), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91359,34 +90121,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77021] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [75416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2429), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2427), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91402,17 +90163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77068] = 3, + [75461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(1556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 31, + ACTIONS(1551), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91444,40 +90205,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77113] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [75506] = 10, + ACTIONS(2287), 1, + anon_sym_DOT, + ACTIONS(2289), 1, + anon_sym_LPAREN, + ACTIONS(2297), 1, + anon_sym_STAR_STAR, + ACTIONS(2299), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(2291), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + STATE(1292), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 22, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91487,17 +90254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77160] = 3, + [75565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 31, + ACTIONS(2522), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91529,78 +90296,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77205] = 11, - ACTIONS(2321), 1, - anon_sym_DOT, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR_STAR, - ACTIONS(2333), 1, - anon_sym_LBRACK, + [75610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 2, + ACTIONS(2528), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2337), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1315), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2335), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [77266] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2526), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91622,32 +90338,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77314] = 3, + [75655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(2429), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(2427), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91663,17 +90379,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77358] = 3, + sym_type_conversion, + [75700] = 10, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2408), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2359), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2520), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91685,10 +90450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91704,73 +90469,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77402] = 3, + [75802] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(669), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(667), 16, + anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75850] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(688), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(667), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77446] = 4, - ACTIONS(1664), 1, - anon_sym_COMMA, + [75898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(1615), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1613), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91786,33 +90596,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77492] = 4, - ACTIONS(1567), 1, - anon_sym_COMMA, + [75942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1615), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1613), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91828,22 +90637,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77538] = 4, - ACTIONS(1679), 1, + [75986] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1622), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1625), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1617), 16, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(1556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(1551), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -91871,18 +90721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77584] = 5, + [76078] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1622), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, + ACTIONS(1625), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1619), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -91897,11 +90747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, + ACTIONS(1617), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_RBRACE, anon_sym_not, @@ -91913,65 +90764,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77632] = 5, + [76126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2492), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2490), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77680] = 4, + [76170] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 3, + ACTIONS(1617), 3, anon_sym_COLON, anon_sym_async, anon_sym_for, - ACTIONS(1657), 5, + ACTIONS(1622), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(1619), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91980,10 +90828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91999,30 +90847,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77726] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1680), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1675), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92041,30 +90888,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77772] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76260] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2520), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92083,27 +90929,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77818] = 4, - ACTIONS(1572), 1, + [76304] = 5, + ACTIONS(1558), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1553), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1556), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1551), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92125,21 +90972,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77864] = 4, - ACTIONS(1632), 1, - anon_sym_COMMA, + [76352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92167,13 +91013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77910] = 3, + [76396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -92181,11 +91027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92208,17 +91053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77954] = 3, + sym_type_conversion, + [76440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1551), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92249,32 +91095,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77998] = 3, + [76484] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, - anon_sym_as, + ACTIONS(2429), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(2427), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92290,25 +91136,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78042] = 3, + [76528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(2488), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2486), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92331,25 +91176,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78086] = 3, + sym_type_conversion, + [76572] = 4, + ACTIONS(1677), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, - anon_sym_as, + ACTIONS(1680), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(1675), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92372,31 +91218,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78130] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [76618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, + ACTIONS(2524), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(2522), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92415,34 +91260,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78178] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [76662] = 4, + ACTIONS(1553), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(667), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(669), 5, - anon_sym_as, + ACTIONS(1556), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 27, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92458,31 +91301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78226] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [76708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, + ACTIONS(2478), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(2476), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92501,25 +91343,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78274] = 3, + [76752] = 4, + ACTIONS(1629), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(1632), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(1627), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92542,25 +91384,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78318] = 3, + sym_type_conversion, + [76798] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(1617), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1622), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(1619), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76844] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2508), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2506), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92583,17 +91467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78362] = 3, + sym_type_conversion, + [76888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(1675), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92624,25 +91509,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78406] = 3, + [76932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(2524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2522), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92665,25 +91549,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78450] = 3, + sym_type_conversion, + [76976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(2478), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2476), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92706,17 +91590,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78494] = 3, + sym_type_conversion, + [77020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1632), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1627), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92728,10 +91613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92747,17 +91632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78538] = 3, + [77064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(1669), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 30, + ACTIONS(1664), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92788,25 +91673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78582] = 3, + [77108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(2462), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2460), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92829,26 +91713,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78626] = 3, + sym_type_conversion, + [77152] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(667), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(669), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(688), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [77200] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(2438), 1, + anon_sym_LBRACK, + STATE(2003), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 5, + anon_sym_STAR, anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [77250] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(667), 2, anon_sym_async, anon_sym_for, + ACTIONS(669), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(688), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92870,32 +91844,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78670] = 3, + [77298] = 5, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1617), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1622), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(1619), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92911,25 +91887,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78714] = 3, + [77346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_as, + ACTIONS(2470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(2468), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92952,25 +91927,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78758] = 3, + sym_type_conversion, + [77390] = 6, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(2438), 1, + anon_sym_LBRACK, + STATE(2004), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1556), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1551), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [77440] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2474), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(2472), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92993,23 +92012,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78802] = 3, + sym_type_conversion, + [77484] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -93018,7 +92041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93034,25 +92056,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78846] = 3, + [77532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_as, + ACTIONS(2446), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(2444), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93075,23 +92096,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78890] = 3, + sym_type_conversion, + [77576] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -93100,7 +92125,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93116,66 +92140,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78934] = 3, + [77624] = 5, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2560), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + ACTIONS(1617), 2, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78978] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(1622), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(1619), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93198,25 +92183,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79022] = 3, + [77672] = 4, + ACTIONS(1666), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, - anon_sym_as, + ACTIONS(1669), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(1664), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93239,17 +92224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79066] = 3, + sym_type_conversion, + [77718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93280,17 +92266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79110] = 3, + [77762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93321,17 +92307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79154] = 3, + [77806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93362,17 +92348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79198] = 3, + [77850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2488), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2486), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93384,10 +92370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93403,66 +92389,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79242] = 3, + [77894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_as, + ACTIONS(2482), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(2480), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [79286] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2533), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2531), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93485,25 +92429,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79330] = 3, + sym_type_conversion, + [77938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, - anon_sym_as, + ACTIONS(2466), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(2464), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93526,73 +92470,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79374] = 3, + sym_type_conversion, + [77982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, - anon_sym_as, + ACTIONS(2453), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2451), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [79418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1647), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1645), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93608,17 +92511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79462] = 3, + sym_type_conversion, + [78026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2496), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2494), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93649,117 +92553,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79506] = 4, + [78070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(2500), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(2498), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [79552] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1667), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1662), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [79596] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1570), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93775,17 +92593,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79644] = 3, + sym_type_conversion, + [78114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2442), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2440), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93816,17 +92635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79688] = 3, + [78158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2528), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93857,31 +92676,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79732] = 3, + [78202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2462), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2460), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93897,18 +92717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79776] = 3, + [78246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2502), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93939,17 +92758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79820] = 3, + [78290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93980,17 +92799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79864] = 3, + [78334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2516), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94021,17 +92840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79908] = 3, + [78378] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(2468), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94062,17 +92881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79952] = 3, + [78422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2474), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(2472), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94103,31 +92922,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79996] = 3, + [78466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94143,18 +92963,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80040] = 3, + [78510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2492), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2490), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94185,17 +93004,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80084] = 3, + [78554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2520), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2518), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94226,31 +93045,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80128] = 3, + [78598] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94266,27 +93087,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80172] = 3, + [78644] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94308,20 +93129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80216] = 3, + [78690] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2446), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(2444), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -94331,6 +93151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94349,17 +93170,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80260] = 3, + [78734] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1622), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1625), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1617), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [78782] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2436), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(2434), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94367,13 +93232,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94389,32 +93254,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80304] = 3, + [78826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2488), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, + ACTIONS(2486), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94430,32 +93295,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80348] = 3, + [78870] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1556), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94471,32 +93337,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80392] = 3, + [78916] = 8, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2351), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(2349), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [78970] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(667), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [79018] = 8, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, anon_sym_STAR_STAR, + ACTIONS(2380), 1, anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2355), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2353), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94512,25 +93472,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80436] = 3, + [79072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(1632), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(1627), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94553,25 +93513,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80480] = 3, + [79116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1669), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(1664), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94594,32 +93554,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80524] = 3, + [79160] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(669), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 30, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(667), 16, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [79208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2508), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2506), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94635,25 +93638,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80568] = 3, + [79252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2508), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(2506), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94676,25 +93679,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80612] = 3, + [79296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 30, + ACTIONS(2522), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94717,32 +93720,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80656] = 3, + [79340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2436), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(2434), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94758,18 +93761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80700] = 3, + [79384] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2482), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2480), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94800,24 +93802,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80744] = 3, + [79428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(2462), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 30, + ACTIONS(2460), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94840,25 +93843,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80788] = 3, + [79472] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2470), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 30, + ACTIONS(2468), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94881,18 +93884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80832] = 3, + [79516] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(2474), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(2472), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94923,32 +93925,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80876] = 3, + [79560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_as, + ACTIONS(1658), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(1656), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94964,29 +93965,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80920] = 3, + sym_type_conversion, + [79604] = 8, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, - anon_sym_as, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 24, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95005,39 +94012,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80964] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [79658] = 11, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2372), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2384), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2382), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 19, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95047,29 +94061,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81010] = 3, + [79718] = 15, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_LBRACK, + ACTIONS(2386), 1, + anon_sym_PIPE, + ACTIONS(2388), 1, + anon_sym_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + ACTIONS(2372), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2374), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2384), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2363), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(2382), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [79786] = 8, + ACTIONS(2368), 1, anon_sym_DOT, + ACTIONS(2370), 1, anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2357), 24, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95088,39 +94160,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81054] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [79840] = 10, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2372), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2382), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 21, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95130,100 +94208,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81100] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [79898] = 14, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_LBRACK, + ACTIONS(2388), 1, + anon_sym_AMP, + ACTIONS(2390), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2372), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2374), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2384), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2382), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [79964] = 13, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, anon_sym_STAR_STAR, + ACTIONS(2380), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2390), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2372), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2374), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2384), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2382), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81146] = 3, + [80028] = 12, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2370), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_STAR_STAR, + ACTIONS(2380), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2372), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2374), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2384), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1429), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2382), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 17, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81190] = 3, + [80090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1658), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1656), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95254,35 +94402,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81234] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2076), 1, - sym_type_parameter, + [80134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2446), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2444), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95298,17 +94443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81284] = 3, + [80178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(1654), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 30, + ACTIONS(1652), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95339,31 +94484,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81328] = 3, + [80222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(2466), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 30, + ACTIONS(2464), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95379,18 +94525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81372] = 3, + [80266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(1662), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(1660), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95421,17 +94566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81416] = 3, + [80310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(1611), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 30, + ACTIONS(1609), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95462,17 +94607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81460] = 3, + [80354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1611), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(1609), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95503,17 +94648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81504] = 3, + [80398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1615), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(1613), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95544,32 +94689,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81548] = 3, + [80442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(1615), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(1613), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95585,31 +94729,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81592] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2469), 1, - anon_sym_LBRACK, - STATE(2090), 1, - sym_type_parameter, + sym_type_conversion, + [80486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2453), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2451), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -95629,29 +94771,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81642] = 3, + [80530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(2496), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(2494), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95670,18 +94812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81686] = 5, + [80574] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, + ACTIONS(674), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -95696,13 +94838,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, + ACTIONS(667), 16, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80622] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(674), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(688), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(667), 16, + anon_sym_COMMA, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -95712,18 +94898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81734] = 3, + [80670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(1680), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 30, + ACTIONS(1675), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95754,17 +94939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81778] = 3, + [80714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2500), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2498), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95795,33 +94980,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81822] = 8, - ACTIONS(2438), 1, + [80758] = 5, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1553), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1556), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1551), 27, anon_sym_DOT, - ACTIONS(2440), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2450), 1, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 4, + ACTIONS(2442), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2440), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -95841,27 +95064,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81876] = 8, - ACTIONS(2438), 1, + [80850] = 8, + ACTIONS(2396), 1, anon_sym_DOT, - ACTIONS(2440), 1, + ACTIONS(2398), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, + ACTIONS(2406), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, + ACTIONS(2408), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, + STATE(1441), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2423), 4, + ACTIONS(2351), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 25, + ACTIONS(2349), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -95887,26 +95110,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81930] = 3, + [80904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2429), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, + ACTIONS(2427), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95928,31 +95151,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81974] = 3, + [80948] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80996] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(284), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(279), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(277), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [81044] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2526), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95968,32 +95278,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82018] = 3, + [81088] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 30, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96009,28 +95320,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82062] = 8, - ACTIONS(2438), 1, + [81134] = 8, + ACTIONS(2396), 1, anon_sym_DOT, - ACTIONS(2440), 1, + ACTIONS(2398), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, + ACTIONS(2406), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, + ACTIONS(2408), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, + STATE(1441), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2415), 4, + ACTIONS(2355), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2413), 25, + ACTIONS(2353), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -96056,136 +95366,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82116] = 11, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81188] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(279), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 20, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82176] = 15, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2436), 2, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2434), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82244] = 8, - ACTIONS(2438), 1, + ACTIONS(277), 28, anon_sym_DOT, - ACTIONS(2440), 1, anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2415), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2413), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96204,45 +95408,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82298] = 10, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, + [81234] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(1556), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1551), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96252,428 +95450,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82356] = 14, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2458), 1, - anon_sym_AMP, - ACTIONS(2460), 1, - anon_sym_CARET, + [81280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, + ACTIONS(2482), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82422] = 13, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(2460), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2415), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 17, + ACTIONS(2480), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82486] = 12, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LPAREN, - ACTIONS(2448), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2415), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2442), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2454), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1440), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2452), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2413), 18, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82548] = 5, + [81324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2504), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2502), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 16, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82596] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82644] = 5, + [81368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2466), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2464), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 16, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82692] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82740] = 5, + [81412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2453), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(2451), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82788] = 5, + [81456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2496), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(2494), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82836] = 3, + [81500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2500), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 30, + ACTIONS(2498), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96685,10 +95677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96704,17 +95696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82880] = 3, + [81544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2512), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 30, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96745,17 +95737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82924] = 3, + [81588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96786,17 +95778,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82968] = 3, + [81632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2442), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2440), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96808,10 +95800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96827,17 +95819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83012] = 3, + [81676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2528), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2526), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96849,10 +95841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96868,17 +95860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83056] = 3, + [81720] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(1654), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(1652), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96909,20 +95901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83100] = 3, + [81764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(2502), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96935,6 +95926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96950,26 +95942,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83144] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [81808] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1570), 5, + ACTIONS(2492), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2490), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -96978,6 +95967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96993,34 +95983,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83192] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [81852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1632), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1627), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97036,34 +96023,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83240] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1669), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1664), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97079,24 +96064,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83288] = 3, + sym_type_conversion, + [81940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 5, + ACTIONS(2512), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(2510), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -97105,6 +96090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97120,26 +96106,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83332] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [81984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, + ACTIONS(2516), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2514), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -97148,6 +96131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97163,20 +96147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83380] = 3, + [82028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 30, + ACTIONS(1551), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -97186,6 +96169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97204,30 +96188,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83424] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82072] = 8, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2408), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97246,39 +96234,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83470] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82126] = 11, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2408), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2412), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97288,71 +96283,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83516] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [82186] = 15, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2408), 1, + anon_sym_LBRACK, + ACTIONS(2414), 1, + anon_sym_PIPE, + ACTIONS(2416), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2363), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2402), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2412), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83562] = 3, + [82254] = 8, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2408), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2359), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2357), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97371,17 +96382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83606] = 3, + [82308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1662), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(1660), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97412,140 +96423,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83650] = 3, + [82352] = 14, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2408), 1, + anon_sym_LBRACK, + ACTIONS(2416), 1, + anon_sym_AMP, + ACTIONS(2418), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2402), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2412), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 16, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83694] = 3, + [82418] = 13, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2408), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2402), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2412), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 17, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83738] = 3, + [82482] = 12, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LPAREN, + ACTIONS(2406), 1, + anon_sym_STAR_STAR, + ACTIONS(2408), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2400), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2402), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2412), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1441), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2357), 18, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83782] = 3, + [82544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1611), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 30, + ACTIONS(1609), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97576,27 +96617,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83826] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [82588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, + ACTIONS(1611), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(1609), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97619,17 +96658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83874] = 3, + [82632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2478), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 30, + ACTIONS(2476), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97641,10 +96680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97660,29 +96699,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83918] = 3, + [82676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_as, + ACTIONS(2436), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 30, + ACTIONS(2434), 29, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97701,114 +96739,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83962] = 3, + [82719] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_as, + ACTIONS(669), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 30, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(667), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84006] = 3, + [82766] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, - anon_sym_as, + ACTIONS(669), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 30, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(667), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84050] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1579), 1, - anon_sym_LBRACK, - STATE(2062), 1, - sym_type_parameter, + [82813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2466), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 26, + ACTIONS(2464), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97827,32 +96863,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84100] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1579), 1, - anon_sym_LBRACK, - STATE(2077), 1, - sym_type_parameter, + [82856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2492), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 26, + ACTIONS(2490), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97871,29 +96903,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84150] = 3, + [82899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, - anon_sym_as, + ACTIONS(1615), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 30, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97912,26 +96943,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84194] = 3, + [82942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, - anon_sym_as, + ACTIONS(1615), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 30, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97953,58 +96983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84238] = 3, + [82985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1688), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [84282] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2474), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2472), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98034,22 +97023,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84325] = 4, + [83028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1682), 5, + ACTIONS(2520), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 27, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -98075,113 +97063,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84370] = 5, + [83071] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(277), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84417] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(279), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_RPAREN, + ACTIONS(320), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84464] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [83116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1658), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1656), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98200,107 +97144,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84509] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [83159] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(277), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84554] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(279), 13, anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84599] = 3, + ACTIONS(320), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [83204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2508), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98322,25 +97225,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84642] = 3, + [83247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1615), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98362,17 +97265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84685] = 3, + [83290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1680), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1675), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98402,17 +97305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84728] = 3, + [83333] = 5, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(2455), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1556), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1551), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98420,7 +97326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98442,17 +97347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84771] = 3, + [83380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(1556), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98482,28 +97387,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84814] = 3, + [83423] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(279), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98522,28 +97428,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84857] = 3, + [83468] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(279), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98562,28 +97469,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84900] = 3, + [83513] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(1556), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1551), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98602,20 +97510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84943] = 3, + [83558] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(2429), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(2427), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -98624,6 +97531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98642,25 +97550,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84986] = 3, + [83601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2524), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98682,25 +97590,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85029] = 3, + [83644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2478), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2476), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98722,25 +97630,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85072] = 3, + [83687] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1629), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1632), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1627), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83732] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1622), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1625), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1617), 15, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83779] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98762,20 +97753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85115] = 3, + [83822] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2436), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2434), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -98784,6 +97774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98802,67 +97793,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85158] = 5, + [83865] = 7, + ACTIONS(1650), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1622), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, + ACTIONS(1625), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1648), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1617), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1619), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, + [83916] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1615), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85205] = 3, + [83959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2453), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2451), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98884,67 +97917,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85248] = 5, + [84002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2496), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2494), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84045] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1658), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1656), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85295] = 3, + [84088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, + ACTIONS(2446), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2444), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98966,22 +98037,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85338] = 4, + [84131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, + ACTIONS(1632), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1627), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1635), 5, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84174] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1669), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 27, + ACTIONS(1664), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -99007,17 +98117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85383] = 3, + [84217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2462), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2460), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99047,17 +98157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85426] = 3, + [84260] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2470), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2468), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99087,25 +98197,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85469] = 3, + [84303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2474), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2472), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99127,25 +98237,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85512] = 3, + [84346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(2500), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(2498), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99167,17 +98277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85555] = 3, + [84389] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(745), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(279), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99185,7 +98298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99207,25 +98319,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85598] = 3, + [84436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2524), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99247,25 +98359,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85641] = 3, + [84479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2446), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2444), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99287,25 +98399,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85684] = 3, + [84522] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(1622), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1625), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1617), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84569] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99327,25 +98481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85727] = 3, + [84612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(1611), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99367,25 +98521,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85770] = 3, + [84655] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1675), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1680), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1567), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [84700] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1680), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1675), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99407,25 +98602,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85813] = 3, + [84743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(2482), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(2480), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99447,25 +98642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85856] = 3, + [84786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2442), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2440), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99487,28 +98682,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85899] = 3, + [84829] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(1565), 1, + anon_sym_LBRACK, + STATE(2224), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(277), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99527,15 +98725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85942] = 4, + [84878] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1551), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(1556), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -99549,7 +98747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(320), 18, + ACTIONS(1567), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -99568,15 +98766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [85987] = 4, + [84923] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1627), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(1632), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -99590,7 +98788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(320), 18, + ACTIONS(1634), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -99609,17 +98807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [86032] = 3, + [84968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1611), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99649,28 +98847,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86075] = 3, + [85011] = 6, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, + ACTIONS(1565), 1, + anon_sym_LBRACK, + STATE(2114), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1556), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1551), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99689,25 +98890,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86118] = 3, + [85060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2466), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(2464), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99729,57 +98930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86161] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2529), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2527), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86204] = 3, + [85103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2453), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2451), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99809,17 +98970,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86247] = 3, + [85146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(2496), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2494), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99849,25 +99010,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86290] = 3, + [85189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, - anon_sym_as, + ACTIONS(2429), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(2427), 29, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99889,65 +99050,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86333] = 3, + [85232] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(1664), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1669), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86376] = 3, + ACTIONS(1671), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [85277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 5, + ACTIONS(2504), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99969,25 +99131,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86419] = 3, + [85320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2512), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100009,17 +99171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86462] = 3, + [85363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2500), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2498), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100049,25 +99211,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86505] = 3, + [85406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1654), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1652), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100089,25 +99251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86548] = 3, + [85449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 5, + ACTIONS(1556), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100129,17 +99291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86591] = 3, + [85492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 5, + ACTIONS(2478), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2476), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100169,25 +99331,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86634] = 3, + [85535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2442), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(2440), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100209,21 +99371,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86677] = 3, + [85578] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 5, + ACTIONS(1677), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(1675), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100249,21 +99412,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86720] = 3, + [85623] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 5, + ACTIONS(1553), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(1551), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100289,21 +99453,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86763] = 3, + [85668] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 5, + ACTIONS(1629), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1632), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(1627), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100329,27 +99494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86806] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2558), 1, - anon_sym_EQ, + [85713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 4, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100371,65 +99534,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86853] = 3, + [85756] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(669), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 29, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(667), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85803] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(688), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(667), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86896] = 3, + [85850] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(1617), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1622), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1619), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100451,17 +99659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86939] = 3, + [85895] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100469,7 +99679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100491,17 +99700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86982] = 3, + [85940] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100509,7 +99720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100531,25 +99741,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87025] = 3, + [85985] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(1654), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(1652), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100571,25 +99781,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87068] = 3, + [86028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 5, + ACTIONS(2482), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(2480), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100611,17 +99821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87111] = 3, + [86071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 4, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2471), 30, - sym_string_start, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100629,10 +99839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100651,59 +99861,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87154] = 5, + [86114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2516), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87201] = 3, + [86157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, - sym_string_start, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100711,10 +99919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100733,148 +99941,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87244] = 4, + [86200] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1667), 13, + ACTIONS(1556), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1581), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [87289] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1565), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1551), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1570), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1581), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [87334] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86245] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 3, + ACTIONS(1666), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1669), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1682), 13, - anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1686), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [87379] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100896,108 +100063,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87422] = 5, + [86333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87469] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1630), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1635), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1637), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [87514] = 3, + [86376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2462), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2460), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101019,17 +100143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87557] = 3, + [86419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101059,21 +100183,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87600] = 3, + [86462] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 5, + ACTIONS(1666), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1669), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(1664), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101099,25 +100224,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87643] = 3, + [86507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, + ACTIONS(2512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101139,25 +100264,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87686] = 3, + [86550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2488), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(2486), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101179,61 +100304,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87729] = 7, - ACTIONS(1675), 1, - anon_sym_EQ, + [86593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2516), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1660), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 5, + ACTIONS(2514), 29, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1652), 12, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1654), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [87780] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86636] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 5, + ACTIONS(2488), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2486), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101263,17 +100384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87823] = 3, + [86679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, + ACTIONS(1662), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1660), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101303,17 +100424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87866] = 3, + [86722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, + ACTIONS(2492), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(2490), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101343,25 +100464,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87909] = 3, + [86765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 5, - anon_sym_as, + ACTIONS(2520), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101383,25 +100504,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87952] = 3, + [86808] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 5, + ACTIONS(2470), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(2468), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101423,25 +100544,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87995] = 3, + [86851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + ACTIONS(1611), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101463,17 +100584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88038] = 3, + [86894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1632), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1627), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101503,21 +100624,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88081] = 3, + [86937] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1677), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1675), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101543,25 +100665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88124] = 3, + [86982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(1669), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(1664), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101583,20 +100705,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88167] = 4, + [87025] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_RPAREN, + ACTIONS(1553), 2, anon_sym_COMMA, - ACTIONS(1667), 5, + anon_sym_RBRACK, + ACTIONS(1556), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 27, + ACTIONS(1551), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -101624,25 +100746,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88212] = 3, + [87070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2508), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101664,26 +100786,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88255] = 4, + [87113] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(745), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101705,25 +100828,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88300] = 3, + [87160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2528), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101745,17 +100868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88343] = 3, + [87203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 5, + ACTIONS(1556), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101763,10 +100885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101785,29 +100907,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88386] = 4, + [87245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1682), 5, - anon_sym_as, + ACTIONS(1611), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 27, + ACTIONS(1609), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101826,25 +100946,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88431] = 3, + [87287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1654), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1652), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101866,7 +100985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88474] = 5, + [87329] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -101877,27 +100996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(667), 15, + ACTIONS(667), 14, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_not, anon_sym_and, @@ -101908,18 +101011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88521] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -101934,12 +101026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, + [87375] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(674), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(667), 14, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_not, anon_sym_and, @@ -101950,58 +101052,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88568] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1652), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1657), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 27, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [88613] = 3, + [87421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1615), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102009,10 +101084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102031,67 +101106,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88656] = 5, + [87463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1615), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 14, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88703] = 3, + [87505] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(669), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(688), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102113,26 +101185,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88746] = 4, + [87549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1635), 5, - anon_sym_as, + ACTIONS(2482), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 27, + ACTIONS(2480), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102154,25 +101224,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88791] = 3, + [87591] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1622), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1619), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102194,25 +101264,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88834] = 3, + [87635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2466), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2464), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102234,25 +101303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88877] = 3, + [87677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, - anon_sym_as, + ACTIONS(2453), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2451), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102274,25 +101342,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88920] = 3, + [87719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(2496), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(2494), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102314,25 +101381,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88963] = 3, + [87761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(2500), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2498), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102354,17 +101420,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89006] = 3, + [87803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 5, + ACTIONS(2528), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102372,10 +101437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102394,25 +101459,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89049] = 3, + [87845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2487), 5, + ACTIONS(1669), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2485), 29, + ACTIONS(1664), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102434,25 +101498,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89092] = 3, + [87887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 5, - anon_sym_as, + ACTIONS(2442), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(2440), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102474,25 +101537,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89135] = 3, + [87929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, - anon_sym_as, + ACTIONS(2528), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2526), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102514,31 +101576,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89178] = 3, + [87971] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, - anon_sym_as, + ACTIONS(669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(688), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102554,25 +101616,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89221] = 3, + [88015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 5, + ACTIONS(2504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(2502), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102594,26 +101655,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89264] = 4, + [88057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1667), 5, - anon_sym_as, + ACTIONS(2512), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 27, + ACTIONS(2510), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102635,25 +101694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89309] = 3, + [88099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 5, + ACTIONS(2516), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 29, + ACTIONS(2514), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102675,31 +101733,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89352] = 3, + [88141] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(669), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(688), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -102715,69 +101773,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89395] = 7, - ACTIONS(1675), 1, - anon_sym_EQ, + [88185] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1622), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(1619), 28, anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1652), 12, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1654), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [89446] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(2492), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2490), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102799,25 +101852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89489] = 3, + [88271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(2520), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2518), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102839,28 +101891,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89532] = 3, + [88313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2442), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2440), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102879,66 +101930,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89575] = 4, + [88355] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(1622), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1625), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1619), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1617), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89620] = 3, + [88401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(1556), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(1551), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102960,30 +102010,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89663] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [88443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2520), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2518), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103002,30 +102049,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89710] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(767), 1, - anon_sym_EQ, + [88485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1680), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1675), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103044,25 +102088,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89757] = 3, + [88527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 5, - anon_sym_as, + ACTIONS(1615), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(1613), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103084,16 +102127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89800] = 3, + [88569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 4, + ACTIONS(1658), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(1656), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103123,105 +102166,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89842] = 3, + [88611] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 4, + ACTIONS(1622), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1625), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1617), 14, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89884] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1647), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1645), 29, + ACTIONS(1619), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89926] = 3, + [88657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1680), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1675), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103240,7 +102246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89968] = 3, + [88699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -103279,23 +102285,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90010] = 6, + [88741] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1622), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1625), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1673), 5, + ACTIONS(1648), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(1652), 12, + ACTIONS(1617), 12, anon_sym_as, anon_sym_if, anon_sym_in, @@ -103308,7 +102314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1654), 12, + ACTIONS(1619), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -103321,16 +102327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [90058] = 3, + [88789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 4, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103360,68 +102366,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90100] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1652), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90146] = 3, + [88831] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 4, + ACTIONS(669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1677), 29, + ACTIONS(688), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103440,23 +102406,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90188] = 3, + [88875] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 4, + ACTIONS(669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1630), 29, + ACTIONS(688), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103479,50 +102446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90230] = 7, - ACTIONS(1675), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1673), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1652), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1654), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [90280] = 4, + [88919] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, @@ -103533,10 +102457,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(688), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -103544,6 +102467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103562,23 +102486,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90324] = 3, + [88963] = 4, + ACTIONS(1558), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(1622), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1619), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103601,106 +102526,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90366] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89007] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(669), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90410] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2487), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2485), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(667), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90452] = 3, + [89053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2517), 4, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2515), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103719,16 +102606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90494] = 3, + [89095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(2500), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2498), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103758,27 +102645,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90536] = 3, + [89137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(1615), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1613), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103797,27 +102684,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90578] = 3, + [89179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(2508), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2506), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103836,16 +102723,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90620] = 3, + [89221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, + ACTIONS(2488), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2486), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103875,147 +102762,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90662] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(669), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(710), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90706] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89263] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(669), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(688), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90750] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1657), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1654), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(667), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90794] = 3, + [89309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 4, + ACTIONS(2488), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1662), 29, + ACTIONS(2486), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104034,18 +102842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90836] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [89351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(1611), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(1609), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104074,16 +102881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90880] = 3, + [89393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 4, + ACTIONS(1654), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(1652), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104113,16 +102920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90922] = 3, + [89435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2505), 4, + ACTIONS(2492), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2503), 29, + ACTIONS(2490), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104152,24 +102959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90964] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(2504), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -104192,16 +102998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91008] = 3, + [89519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2513), 4, + ACTIONS(2512), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2511), 29, + ACTIONS(2510), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104231,16 +103037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91050] = 3, + [89561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2521), 4, + ACTIONS(2516), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2519), 29, + ACTIONS(2514), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104270,27 +103076,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91092] = 3, + [89603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2525), 4, + ACTIONS(2524), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2523), 29, + ACTIONS(2522), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104309,27 +103115,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91134] = 3, + [89645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2529), 4, + ACTIONS(1662), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2527), 29, + ACTIONS(1660), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104348,16 +103154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91176] = 3, + [89687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 4, + ACTIONS(2508), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2560), 29, + ACTIONS(2506), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104387,20 +103193,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91218] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [89729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 4, + ACTIONS(2478), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 28, + ACTIONS(2476), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -104408,7 +103214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104427,27 +103232,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91262] = 3, + [89771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 4, + ACTIONS(1611), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1609), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104466,24 +103271,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91304] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [89813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(1632), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(1627), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -104506,16 +103310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91348] = 3, + [89855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(1669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2507), 29, + ACTIONS(1664), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104545,16 +103349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91390] = 3, + [89897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2566), 4, + ACTIONS(2524), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2564), 29, + ACTIONS(2522), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104584,16 +103388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91432] = 3, + [89939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 4, + ACTIONS(2478), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2476), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104623,16 +103427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91474] = 3, + [89981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2533), 4, + ACTIONS(2462), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2531), 29, + ACTIONS(2460), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104662,16 +103466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91516] = 3, + [90023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2537), 4, + ACTIONS(2470), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2535), 29, + ACTIONS(2468), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104701,98 +103505,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91558] = 5, + [90065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(2474), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(2472), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91604] = 5, + [90107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(669), 2, + ACTIONS(1658), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(710), 14, + ACTIONS(1656), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91650] = 3, + [90149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 4, + ACTIONS(2446), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1692), 29, + ACTIONS(2444), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104822,27 +103622,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91692] = 3, + [90191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 4, + ACTIONS(2462), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1688), 29, + ACTIONS(2460), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104861,27 +103661,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91734] = 3, + [90233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 4, + ACTIONS(2470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 29, + ACTIONS(2468), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104900,27 +103700,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91776] = 3, + [90275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 4, + ACTIONS(2474), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 29, + ACTIONS(2472), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104939,257 +103739,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91818] = 4, + [90317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(710), 3, + ACTIONS(2446), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2444), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(669), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91861] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1690), 13, + ACTIONS(1662), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1688), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91902] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 13, + ACTIONS(1611), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1669), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91943] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1694), 13, + ACTIONS(1632), 5, anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1627), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1692), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91984] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1630), 3, + ACTIONS(2482), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2480), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1635), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1637), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [92027] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1654), 3, + ACTIONS(2466), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2464), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1657), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1652), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [92070] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(2453), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(2451), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -105208,22 +104012,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92111] = 3, + [90611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(2496), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(2494), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -105246,18 +104051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92152] = 3, + [90653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1654), 28, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -105268,7 +104075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -105284,15 +104090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92193] = 4, + [90695] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 3, + ACTIONS(1551), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1682), 13, + ACTIONS(1556), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105306,7 +104112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1686), 16, + ACTIONS(1567), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105323,11 +104129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92236] = 3, + [90738] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 13, + ACTIONS(277), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(279), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105341,13 +104151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1645), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(320), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105361,11 +104168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92277] = 3, + [90781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 13, + ACTIONS(1662), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105379,7 +104186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1641), 19, + ACTIONS(1660), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105399,11 +104206,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92318] = 3, + [90822] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 13, + ACTIONS(1627), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1632), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1634), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [90865] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(688), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(669), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(667), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [90908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105417,7 +104302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1641), 19, + ACTIONS(1609), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105437,15 +104322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92359] = 4, + [90949] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(688), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(669), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105459,10 +104344,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(320), 16, + ACTIONS(667), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [90992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1609), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105476,15 +104399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92402] = 4, + [91033] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 3, + ACTIONS(1619), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1667), 13, + ACTIONS(1622), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105498,7 +104421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1581), 16, + ACTIONS(1617), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105515,15 +104438,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92445] = 4, + [91076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1622), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(279), 13, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91117] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1664), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1669), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105537,7 +104498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(320), 16, + ACTIONS(1671), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105554,15 +104515,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92488] = 4, + [91160] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1622), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91201] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1622), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91242] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 3, + ACTIONS(1675), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1570), 13, + ACTIONS(1680), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105576,7 +104613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1581), 16, + ACTIONS(1567), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105593,11 +104630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92531] = 3, + [91285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 13, + ACTIONS(1615), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105611,7 +104648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1645), 19, + ACTIONS(1613), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105631,15 +104668,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92572] = 4, + [91326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(710), 3, + ACTIONS(1658), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1656), 19, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(669), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [91367] = 7, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1622), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1625), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1648), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1617), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1619), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [91416] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1615), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105653,7 +104766,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(667), 16, + ACTIONS(1613), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [91457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1654), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1652), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [91498] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(277), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(279), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(320), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105670,51 +104863,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92615] = 20, + [91541] = 21, ACTIONS(328), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2530), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2580), 1, + ACTIONS(2536), 1, anon_sym_if, - ACTIONS(2582), 1, + ACTIONS(2538), 1, anon_sym_COLON, - ACTIONS(2584), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2161), 1, + STATE(2097), 1, + sym_keyword_pattern, + STATE(2166), 1, sym_case_pattern, - STATE(2625), 1, + STATE(2172), 1, + sym__as_pattern, + STATE(2765), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2546), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(1973), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105724,51 +104918,52 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92689] = 20, + [91617] = 21, ACTIONS(328), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2530), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2580), 1, + ACTIONS(2536), 1, anon_sym_if, - ACTIONS(2584), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2598), 1, + ACTIONS(2554), 1, anon_sym_COLON, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2161), 1, + STATE(2097), 1, + sym_keyword_pattern, + STATE(2166), 1, sym_case_pattern, - STATE(2662), 1, + STATE(2172), 1, + sym__as_pattern, + STATE(2779), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2546), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(1973), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105778,47 +104973,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92763] = 18, - ACTIONS(801), 1, + [91693] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(2560), 1, anon_sym_RPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2241), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105828,47 +105024,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92831] = 18, - ACTIONS(801), 1, + [91763] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2622), 1, + ACTIONS(2578), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105878,47 +105075,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92899] = 18, + [91833] = 19, ACTIONS(801), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2590), 1, + anon_sym_RBRACK, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2624), 1, - anon_sym_RPAREN, - STATE(1858), 1, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2218), 1, sym_case_pattern, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105928,47 +105126,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92967] = 18, - ACTIONS(801), 1, + [91903] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2626), 1, + ACTIONS(2602), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2228), 1, sym_case_pattern, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105978,47 +105177,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93035] = 18, - ACTIONS(801), 1, + [91973] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2628), 1, + ACTIONS(2604), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2202), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106028,47 +105228,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93103] = 18, - ACTIONS(755), 1, + [92043] = 19, + ACTIONS(801), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2640), 1, - anon_sym_RBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - STATE(1877), 1, + ACTIONS(2606), 1, + anon_sym_RBRACK, + STATE(1862), 1, sym_string, - STATE(2085), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2203), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106078,47 +105279,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93171] = 18, + [92113] = 19, ACTIONS(801), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2652), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2608), 1, + anon_sym_RBRACK, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2204), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106128,47 +105330,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93239] = 18, - ACTIONS(801), 1, + [92183] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2654), 1, + ACTIONS(2610), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106178,47 +105381,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93307] = 18, - ACTIONS(755), 1, + [92253] = 19, + ACTIONS(801), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2656), 1, + ACTIONS(2612), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1862), 1, sym_string, - STATE(2085), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106228,47 +105432,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93375] = 18, - ACTIONS(801), 1, + [92323] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2658), 1, + ACTIONS(2614), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2205), 1, sym_case_pattern, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106278,47 +105483,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93443] = 18, - ACTIONS(755), 1, + [92393] = 19, + ACTIONS(801), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2660), 1, + ACTIONS(2616), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1862), 1, sym_string, - STATE(2085), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2208), 1, sym_case_pattern, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106328,47 +105534,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93511] = 18, - ACTIONS(801), 1, + [92463] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2662), 1, + ACTIONS(2618), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106378,47 +105585,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93579] = 18, + [92533] = 19, ACTIONS(801), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2664), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2620), 1, + anon_sym_RBRACK, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106428,47 +105636,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93647] = 18, - ACTIONS(755), 1, + [92603] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2666), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2622), 1, + anon_sym_RPAREN, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2244), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106478,47 +105687,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93715] = 18, - ACTIONS(801), 1, + [92673] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2668), 1, + ACTIONS(2624), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2153), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106528,47 +105738,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93783] = 18, - ACTIONS(755), 1, + [92743] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2670), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2626), 1, + anon_sym_RPAREN, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2154), 1, + STATE(2189), 1, sym_case_pattern, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106578,47 +105789,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93851] = 18, - ACTIONS(801), 1, + [92813] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2672), 1, + ACTIONS(2628), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106628,47 +105840,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93919] = 18, - ACTIONS(755), 1, + [92883] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2674), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2630), 1, + anon_sym_RPAREN, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106678,47 +105891,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93987] = 18, + [92953] = 19, ACTIONS(801), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2676), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2632), 1, + anon_sym_RBRACK, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2163), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106728,47 +105942,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94055] = 18, + [93023] = 19, ACTIONS(801), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2678), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2634), 1, + anon_sym_RBRACK, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2158), 1, sym_case_pattern, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106778,47 +105993,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94123] = 18, - ACTIONS(755), 1, + [93093] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2680), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2636), 1, + anon_sym_RPAREN, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106828,47 +106044,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94191] = 18, - ACTIONS(801), 1, + [93163] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2682), 1, + ACTIONS(2638), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2160), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106878,47 +106095,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94259] = 18, - ACTIONS(801), 1, + [93233] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2684), 1, + ACTIONS(2640), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106928,47 +106146,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94327] = 18, - ACTIONS(755), 1, + [93303] = 19, + ACTIONS(801), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2686), 1, + ACTIONS(2642), 1, anon_sym_RBRACK, - STATE(1877), 1, + STATE(1862), 1, sym_string, - STATE(2085), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106978,47 +106197,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94395] = 18, - ACTIONS(801), 1, + [93373] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2688), 1, + ACTIONS(2644), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2119), 1, sym_case_pattern, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107028,47 +106248,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94463] = 18, + [93443] = 19, ACTIONS(801), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2690), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2646), 1, + anon_sym_RBRACK, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2136), 1, sym_case_pattern, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107078,47 +106299,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94531] = 18, - ACTIONS(801), 1, + [93513] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2692), 1, + ACTIONS(2648), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107128,47 +106350,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94599] = 18, - ACTIONS(755), 1, + [93583] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2694), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2650), 1, + anon_sym_RPAREN, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2157), 1, sym_case_pattern, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107178,47 +106401,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94667] = 18, + [93653] = 19, ACTIONS(801), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2696), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2652), 1, + anon_sym_RBRACK, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107228,47 +106452,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94735] = 18, + [93723] = 19, ACTIONS(801), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2698), 1, - anon_sym_RPAREN, - STATE(1858), 1, + ACTIONS(2654), 1, + anon_sym_RBRACK, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, - STATE(2190), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107278,47 +106503,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94803] = 18, - ACTIONS(755), 1, + [93793] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2700), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2656), 1, + anon_sym_RPAREN, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2191), 1, + STATE(2164), 1, sym_case_pattern, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107328,47 +106554,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94871] = 18, - ACTIONS(801), 1, + [93863] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2702), 1, + ACTIONS(2658), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2165), 1, sym_case_pattern, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107378,47 +106605,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94939] = 18, - ACTIONS(801), 1, + [93933] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2704), 1, + ACTIONS(2660), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2194), 1, + STATE(2217), 1, sym_case_pattern, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107428,47 +106656,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95007] = 18, - ACTIONS(801), 1, + [94003] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2706), 1, + ACTIONS(2662), 1, anon_sym_RPAREN, - STATE(1858), 1, + STATE(1837), 1, sym_string, - STATE(2069), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107478,47 +106707,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95075] = 18, - ACTIONS(755), 1, + [94073] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2708), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2664), 1, + anon_sym_RPAREN, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107528,47 +106758,48 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95143] = 18, - ACTIONS(755), 1, + [94143] = 19, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2710), 1, - anon_sym_RBRACK, - STATE(1877), 1, + ACTIONS(2666), 1, + anon_sym_RPAREN, + STATE(1837), 1, sym_string, - STATE(2085), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107578,45 +106809,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95211] = 17, - ACTIONS(328), 1, + [94213] = 18, + ACTIONS(801), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2580), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, - anon_sym_STAR, ACTIONS(2584), 1, - anon_sym_STAR_STAR, + anon_sym_STAR, ACTIONS(2586), 1, - anon_sym_LBRACK, + anon_sym_STAR_STAR, ACTIONS(2588), 1, - anon_sym_DASH, + anon_sym_LBRACK, ACTIONS(2592), 1, + anon_sym_DASH, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2600), 1, sym_float, - STATE(1820), 1, + STATE(1862), 1, sym_string, - STATE(1912), 1, + STATE(2029), 1, sym_dotted_name, - STATE(1913), 1, + STATE(2307), 1, + sym__as_pattern, + STATE(2308), 1, + sym_keyword_pattern, + STATE(2355), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2594), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(2030), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107626,45 +106858,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95276] = 17, - ACTIONS(801), 1, + [94280] = 18, + ACTIONS(711), 1, sym_string_start, - ACTIONS(2600), 1, + ACTIONS(2668), 1, sym_identifier, - ACTIONS(2602), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2676), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2678), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2682), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2684), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2686), 1, sym_float, - STATE(1858), 1, + STATE(1836), 1, sym_string, - STATE(2069), 1, + STATE(2027), 1, sym_dotted_name, - STATE(2370), 1, + STATE(2271), 1, + sym__as_pattern, + STATE(2276), 1, + sym_keyword_pattern, + STATE(2472), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2426), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2614), 4, + ACTIONS(2680), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2009), 9, + STATE(2071), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107674,45 +106907,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95341] = 17, - ACTIONS(755), 1, + [94347] = 18, + ACTIONS(328), 1, sym_string_start, - ACTIONS(2630), 1, + ACTIONS(2530), 1, sym_identifier, - ACTIONS(2632), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2552), 1, sym_float, - STATE(1877), 1, + STATE(1783), 1, sym_string, - STATE(2085), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2455), 1, + STATE(1972), 1, sym_case_pattern, + STATE(2097), 1, + sym_keyword_pattern, + STATE(2172), 1, + sym__as_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2496), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2644), 4, + ACTIONS(2546), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2087), 9, + STATE(1973), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107722,45 +106956,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95406] = 17, - ACTIONS(328), 1, + [94414] = 18, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2574), 1, + ACTIONS(2556), 1, sym_identifier, - ACTIONS(2576), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - STATE(1820), 1, + STATE(1837), 1, sym_string, - STATE(1912), 1, + STATE(2006), 1, sym_dotted_name, - STATE(2161), 1, + STATE(2400), 1, + sym__as_pattern, + STATE(2402), 1, + sym_keyword_pattern, + STATE(2415), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2590), 4, + ACTIONS(2570), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1914), 9, + STATE(2008), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107770,45 +107005,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95471] = 17, - ACTIONS(708), 1, + [94481] = 18, + ACTIONS(328), 1, sym_string_start, - ACTIONS(2712), 1, + ACTIONS(2530), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2720), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2722), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2726), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2728), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2730), 1, + ACTIONS(2552), 1, sym_float, - STATE(1894), 1, + STATE(1783), 1, sym_string, - STATE(2008), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2272), 1, + STATE(2097), 1, + sym_keyword_pattern, + STATE(2166), 1, sym_case_pattern, + STATE(2172), 1, + sym__as_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2493), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2724), 4, + ACTIONS(2546), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2093), 9, + STATE(1973), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107818,46 +107054,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95536] = 18, + [94548] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2736), 1, + ACTIONS(2692), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107866,46 +107102,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95602] = 18, + [94614] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2738), 1, + ACTIONS(2694), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107914,46 +107150,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95668] = 18, + [94680] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2740), 1, + ACTIONS(2696), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2001), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2464), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107962,46 +107198,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95734] = 18, + [94746] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2742), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(1992), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2423), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108010,46 +107246,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95800] = 18, + [94812] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2744), 1, + ACTIONS(2700), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108058,46 +107294,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95866] = 18, + [94878] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2746), 1, + ACTIONS(2702), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108106,46 +107342,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95932] = 18, + [94944] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2704), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108154,46 +107390,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95998] = 18, + [95010] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2750), 1, + ACTIONS(2706), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108202,46 +107438,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96064] = 18, + [95076] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2752), 1, + ACTIONS(2708), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2016), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2260), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108250,46 +107486,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96130] = 18, + [95142] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2754), 1, + ACTIONS(2710), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108298,46 +107534,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96196] = 18, + [95208] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2756), 1, + ACTIONS(2712), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108346,46 +107582,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96262] = 18, + [95274] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2758), 1, + ACTIONS(2714), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2082), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2328), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108394,46 +107630,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96328] = 18, + [95340] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2021), 1, + STATE(2032), 1, sym_splat_pattern, - STATE(2478), 1, + STATE(2310), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108442,46 +107678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96394] = 18, + [95406] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2762), 1, + ACTIONS(2718), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108490,46 +107726,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96460] = 18, + [95472] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2764), 1, + ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2108), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2287), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108538,46 +107774,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96526] = 18, + [95538] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2766), 1, + ACTIONS(2722), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2044), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2286), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108586,46 +107822,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96592] = 18, + [95604] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2768), 1, + ACTIONS(2724), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108634,46 +107870,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96658] = 18, + [95670] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2770), 1, + ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108682,46 +107918,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96724] = 18, + [95736] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2772), 1, + ACTIONS(2728), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108730,46 +107966,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96790] = 18, + [95802] = 18, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - ACTIONS(2774), 1, + ACTIONS(2730), 1, anon_sym_RBRACE, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108778,44 +108014,44 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96856] = 17, + [95868] = 17, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2716), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, - STATE(2184), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2569), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2734), 4, + ACTIONS(2690), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2473), 8, + STATE(2462), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108824,40 +108060,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96919] = 15, - ACTIONS(755), 1, + [95931] = 15, + ACTIONS(711), 1, sym_string_start, - ACTIONS(2632), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2676), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2678), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2682), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2684), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2686), 1, sym_float, - ACTIONS(2776), 1, + ACTIONS(2732), 1, sym_identifier, - STATE(1877), 1, + STATE(1836), 1, sym_string, - STATE(2085), 1, + STATE(2027), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2778), 4, + ACTIONS(2734), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2059), 9, + STATE(2094), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108867,40 +108103,77 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96977] = 15, - ACTIONS(755), 1, + [95989] = 9, + ACTIONS(2741), 1, + anon_sym_EQ, + ACTIONS(2743), 1, + anon_sym_not, + ACTIONS(2746), 1, + anon_sym_is, + STATE(1550), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2749), 2, + anon_sym_LT, + anon_sym_GT, + STATE(922), 2, + sym__not_in, + sym__is_not, + ACTIONS(2738), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2736), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [96035] = 15, + ACTIONS(711), 1, sym_string_start, - ACTIONS(2632), 1, + ACTIONS(2670), 1, anon_sym_LPAREN, - ACTIONS(2634), 1, + ACTIONS(2672), 1, anon_sym_STAR, - ACTIONS(2636), 1, + ACTIONS(2674), 1, anon_sym_STAR_STAR, - ACTIONS(2638), 1, + ACTIONS(2676), 1, anon_sym_LBRACK, - ACTIONS(2642), 1, + ACTIONS(2678), 1, anon_sym_DASH, - ACTIONS(2646), 1, + ACTIONS(2682), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, + ACTIONS(2684), 1, sym_integer, - ACTIONS(2650), 1, + ACTIONS(2686), 1, sym_float, - ACTIONS(2776), 1, + ACTIONS(2732), 1, sym_identifier, - STATE(1877), 1, + STATE(1836), 1, sym_string, - STATE(2085), 1, + STATE(2027), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 4, + ACTIONS(2752), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2058), 9, + STATE(1986), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108910,40 +108183,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97035] = 15, - ACTIONS(708), 1, + [96093] = 15, + ACTIONS(328), 1, sym_string_start, - ACTIONS(2714), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2720), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2722), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2726), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2728), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2730), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2782), 1, + ACTIONS(2688), 1, sym_identifier, - STATE(1894), 1, + STATE(1783), 1, sym_string, - STATE(2008), 1, + STATE(1970), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2784), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2066), 9, + STATE(1953), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108953,40 +108226,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97093] = 15, + [96151] = 15, ACTIONS(801), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2786), 1, + ACTIONS(2756), 1, sym_identifier, - STATE(1858), 1, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2788), 4, + ACTIONS(2758), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2106), 9, + STATE(2046), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108996,40 +108269,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97151] = 15, + [96209] = 15, ACTIONS(801), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, + ACTIONS(2584), 1, anon_sym_STAR, - ACTIONS(2608), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2610), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2612), 1, + ACTIONS(2592), 1, anon_sym_DASH, - ACTIONS(2616), 1, + ACTIONS(2596), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, + ACTIONS(2598), 1, sym_integer, - ACTIONS(2620), 1, + ACTIONS(2600), 1, sym_float, - ACTIONS(2786), 1, + ACTIONS(2756), 1, sym_identifier, - STATE(1858), 1, + STATE(1862), 1, sym_string, - STATE(2069), 1, + STATE(2029), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2790), 4, + ACTIONS(2760), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2105), 9, + STATE(2045), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109039,40 +108312,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97209] = 15, + [96267] = 15, ACTIONS(328), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2532), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2540), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2544), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2548), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2550), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2552), 1, sym_float, - ACTIONS(2732), 1, + ACTIONS(2688), 1, sym_identifier, - STATE(1820), 1, + STATE(1783), 1, sym_string, - STATE(1912), 1, + STATE(1970), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2792), 4, + ACTIONS(2762), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1972), 9, + STATE(1959), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109082,32 +108355,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97267] = 9, - ACTIONS(2120), 1, + [96325] = 9, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2126), 1, + ACTIONS(2102), 1, anon_sym_is, - ACTIONS(2796), 1, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(1567), 1, + STATE(1550), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2128), 2, + ACTIONS(2104), 2, anon_sym_LT, anon_sym_GT, - STATE(965), 2, + STATE(922), 2, sym__not_in, sym__is_not, - ACTIONS(2106), 6, + ACTIONS(2082), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 11, + ACTIONS(2764), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -109119,40 +108392,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97313] = 15, - ACTIONS(708), 1, + [96371] = 15, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2714), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2716), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2720), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2722), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2726), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2728), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2730), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2782), 1, + ACTIONS(2768), 1, sym_identifier, - STATE(1894), 1, + STATE(1837), 1, sym_string, - STATE(2008), 1, + STATE(2006), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2798), 4, + ACTIONS(2770), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109162,40 +108435,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97371] = 15, - ACTIONS(328), 1, + [96429] = 15, + ACTIONS(823), 1, sym_string_start, - ACTIONS(2576), 1, + ACTIONS(2558), 1, anon_sym_LPAREN, - ACTIONS(2578), 1, + ACTIONS(2562), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2564), 1, anon_sym_STAR_STAR, - ACTIONS(2586), 1, + ACTIONS(2566), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2568), 1, anon_sym_DASH, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2574), 1, sym_integer, - ACTIONS(2596), 1, + ACTIONS(2576), 1, sym_float, - ACTIONS(2732), 1, + ACTIONS(2768), 1, sym_identifier, - STATE(1820), 1, + STATE(1837), 1, sym_string, - STATE(1912), 1, + STATE(2006), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2800), 4, + ACTIONS(2772), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1895), 9, + STATE(2023), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109205,69 +108478,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97429] = 9, - ACTIONS(2807), 1, - anon_sym_EQ, - ACTIONS(2809), 1, - anon_sym_not, - ACTIONS(2812), 1, - anon_sym_is, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2815), 2, - anon_sym_LT, - anon_sym_GT, - STATE(965), 2, - sym__not_in, - sym__is_not, - ACTIONS(2804), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2802), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, + [96487] = 9, + ACTIONS(2741), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [97475] = 9, - ACTIONS(2807), 1, - anon_sym_as, - ACTIONS(2809), 1, + ACTIONS(2743), 1, anon_sym_not, - ACTIONS(2821), 1, + ACTIONS(2777), 1, anon_sym_is, - STATE(1568), 1, + STATE(1559), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2824), 2, + ACTIONS(2780), 2, anon_sym_LT, anon_sym_GT, - STATE(897), 2, + STATE(900), 2, sym__not_in, sym__is_not, - ACTIONS(2818), 6, + ACTIONS(2774), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 10, + ACTIONS(2736), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -109278,14 +108514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97520] = 9, - ACTIONS(2120), 1, + [96532] = 9, + ACTIONS(2096), 1, anon_sym_not, ACTIONS(2262), 1, anon_sym_is, - ACTIONS(2796), 1, + ACTIONS(2766), 1, anon_sym_as, - STATE(1568), 1, + STATE(1559), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, @@ -109293,7 +108529,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2264), 2, anon_sym_LT, anon_sym_GT, - STATE(897), 2, + STATE(900), 2, sym__not_in, sym__is_not, ACTIONS(2246), 6, @@ -109303,7 +108539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 10, + ACTIONS(2764), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -109314,67 +108550,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97565] = 9, - ACTIONS(2807), 1, - anon_sym_EQ, - ACTIONS(2809), 1, + [96577] = 9, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2830), 1, + ACTIONS(2311), 1, anon_sym_is, - STATE(1570), 1, + ACTIONS(2766), 1, + anon_sym_EQ, + STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2833), 2, + ACTIONS(2313), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(878), 2, sym__not_in, sym__is_not, - ACTIONS(2827), 6, + ACTIONS(2295), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 9, + ACTIONS(2764), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97609] = 9, - ACTIONS(2807), 1, + [96621] = 9, + ACTIONS(2741), 1, anon_sym_EQ, - ACTIONS(2809), 1, + ACTIONS(2743), 1, anon_sym_not, - ACTIONS(2839), 1, + ACTIONS(2786), 1, anon_sym_is, - STATE(1571), 1, + STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, + ACTIONS(2789), 2, anon_sym_LT, anon_sym_GT, - STATE(904), 2, + STATE(878), 2, sym__not_in, sym__is_not, - ACTIONS(2836), 6, + ACTIONS(2783), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 9, + ACTIONS(2736), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109384,136 +108620,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97653] = 9, - ACTIONS(2120), 1, + [96665] = 9, + ACTIONS(2741), 1, + anon_sym_as, + ACTIONS(2743), 1, anon_sym_not, - ACTIONS(2381), 1, + ACTIONS(2795), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_EQ, - STATE(1571), 1, + STATE(1563), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2383), 2, + ACTIONS(2798), 2, anon_sym_LT, anon_sym_GT, - STATE(904), 2, + STATE(929), 2, sym__not_in, sym__is_not, - ACTIONS(2365), 6, + ACTIONS(2792), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 9, - anon_sym_DOT, + ACTIONS(2736), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97697] = 9, - ACTIONS(2120), 1, + [96708] = 9, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2345), 1, + ACTIONS(2154), 1, anon_sym_is, - ACTIONS(2796), 1, + ACTIONS(2766), 1, anon_sym_EQ, - STATE(1570), 1, + STATE(1565), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2347), 2, + ACTIONS(2156), 2, anon_sym_LT, anon_sym_GT, - STATE(957), 2, + STATE(908), 2, sym__not_in, sym__is_not, - ACTIONS(2329), 6, + ACTIONS(2138), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 9, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(2764), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [97741] = 9, - ACTIONS(2120), 1, - anon_sym_not, - ACTIONS(2310), 1, - anon_sym_is, - ACTIONS(2796), 1, - anon_sym_as, - STATE(1577), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2312), 2, - anon_sym_LT, - anon_sym_GT, - STATE(932), 2, - sym__not_in, - sym__is_not, - ACTIONS(2294), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2794), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97784] = 9, - ACTIONS(2807), 1, + sym_type_conversion, + [96751] = 9, + ACTIONS(2741), 1, anon_sym_EQ, - ACTIONS(2809), 1, + ACTIONS(2743), 1, anon_sym_not, - ACTIONS(2848), 1, + ACTIONS(2804), 1, anon_sym_is, - STATE(1575), 1, + STATE(1565), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2851), 2, + ACTIONS(2807), 2, anon_sym_LT, anon_sym_GT, - STATE(954), 2, + STATE(908), 2, sym__not_in, sym__is_not, - ACTIONS(2845), 6, + ACTIONS(2801), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 8, + ACTIONS(2736), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -109522,66 +108722,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [97827] = 9, - ACTIONS(2120), 1, + [96794] = 8, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2234), 1, + ACTIONS(2420), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_EQ, - STATE(1575), 1, + STATE(1568), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2236), 2, + ACTIONS(2422), 2, anon_sym_LT, anon_sym_GT, - STATE(954), 2, + STATE(871), 2, sym__not_in, sym__is_not, - ACTIONS(2218), 6, + ACTIONS(2404), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 8, + ACTIONS(2764), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [97870] = 9, - ACTIONS(2807), 1, - anon_sym_as, - ACTIONS(2809), 1, + [96835] = 9, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2857), 1, + ACTIONS(2234), 1, anon_sym_is, - STATE(1577), 1, + ACTIONS(2766), 1, + anon_sym_as, + STATE(1563), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2860), 2, + ACTIONS(2236), 2, anon_sym_LT, anon_sym_GT, - STATE(932), 2, + STATE(929), 2, sym__not_in, sym__is_not, - ACTIONS(2854), 6, + ACTIONS(2218), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 8, + ACTIONS(2764), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -109590,30 +108789,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97913] = 8, - ACTIONS(2120), 1, + [96878] = 8, + ACTIONS(2743), 1, anon_sym_not, - ACTIONS(2462), 1, + ACTIONS(2813), 1, anon_sym_is, - STATE(1579), 1, + STATE(1568), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2464), 2, + ACTIONS(2816), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, + STATE(871), 2, sym__not_in, sym__is_not, - ACTIONS(2446), 6, + ACTIONS(2810), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 9, + ACTIONS(2736), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109623,65 +108822,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97954] = 8, - ACTIONS(2809), 1, + [96919] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(320), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(277), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [96951] = 9, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2866), 1, + ACTIONS(2339), 1, anon_sym_is, - STATE(1579), 1, + ACTIONS(2766), 1, + anon_sym_as, + STATE(1572), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2869), 2, + ACTIONS(2341), 2, anon_sym_LT, anon_sym_GT, - STATE(945), 2, + STATE(943), 2, sym__not_in, sym__is_not, - ACTIONS(2863), 6, + ACTIONS(2323), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 9, - anon_sym_DOT, + ACTIONS(2764), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_and, anon_sym_or, - [97995] = 9, - ACTIONS(2807), 1, + [96993] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1556), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1567), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1551), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [97025] = 9, + ACTIONS(2741), 1, anon_sym_as, - ACTIONS(2809), 1, + ACTIONS(2743), 1, anon_sym_not, - ACTIONS(2875), 1, + ACTIONS(2822), 1, anon_sym_is, - STATE(1580), 1, + STATE(1572), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2878), 2, + ACTIONS(2825), 2, anon_sym_LT, anon_sym_GT, - STATE(876), 2, + STATE(943), 2, sym__not_in, sym__is_not, - ACTIONS(2872), 6, + ACTIONS(2819), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2802), 7, + ACTIONS(2736), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109689,11 +108944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [98037] = 3, + [97067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2883), 10, + ACTIONS(2830), 10, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -109704,7 +108959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2881), 11, + ACTIONS(2828), 11, anon_sym_print, anon_sym_match, anon_sym_async, @@ -109716,20 +108971,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [98067] = 4, + [97097] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 5, + ACTIONS(1634), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(277), 14, + ACTIONS(1627), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109744,76 +108999,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98099] = 4, + [97129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(320), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(277), 14, - anon_sym_DOT, + ACTIONS(2834), 10, + sym_string_start, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98131] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1667), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1581), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1662), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98163] = 4, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2832), 11, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [97159] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 5, + ACTIONS(320), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1565), 14, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109828,20 +109054,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98195] = 4, + [97191] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 5, + ACTIONS(1567), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1677), 14, + ACTIONS(1675), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109856,20 +109082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98227] = 4, + [97223] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 5, + ACTIONS(1671), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1630), 14, + ACTIONS(1664), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109884,75 +109110,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98259] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2887), 10, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2885), 11, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [98289] = 9, - ACTIONS(2120), 1, + [97255] = 9, + ACTIONS(2096), 1, anon_sym_not, - ACTIONS(2409), 1, + ACTIONS(2392), 1, anon_sym_is, - ACTIONS(2796), 1, - anon_sym_as, + ACTIONS(2766), 1, + anon_sym_EQ, STATE(1580), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 2, + ACTIONS(2394), 2, anon_sym_LT, anon_sym_GT, - STATE(876), 2, + STATE(894), 2, sym__not_in, sym__is_not, - ACTIONS(2393), 6, + ACTIONS(2376), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2794), 7, + ACTIONS(2764), 6, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_and, anon_sym_or, - [98331] = 4, - ACTIONS(2891), 1, + [97296] = 9, + ACTIONS(2741), 1, + anon_sym_EQ, + ACTIONS(2743), 1, + anon_sym_not, + ACTIONS(2839), 1, + anon_sym_is, + STATE(1580), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2842), 2, + anon_sym_LT, + anon_sym_GT, + STATE(894), 2, + sym__not_in, + sym__is_not, + ACTIONS(2736), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2836), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [97337] = 4, + ACTIONS(2847), 1, anon_sym_COMMA, - STATE(1590), 1, + STATE(1581), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 17, + ACTIONS(2845), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109970,114 +109200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98361] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(667), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98391] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1652), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1565), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98421] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(667), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98451] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2894), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1565), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98481] = 4, - ACTIONS(2896), 1, + [97367] = 4, + ACTIONS(2850), 1, anon_sym_COMMA, - STATE(1590), 1, + STATE(1581), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, @@ -110100,69 +109226,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98511] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1435), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + [97397] = 13, + ACTIONS(2074), 1, anon_sym_DOT, + ACTIONS(2088), 1, + anon_sym_LBRACK, + ACTIONS(2289), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2305), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2307), 1, anon_sym_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - anon_sym_LT_LT, - [98541] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2293), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2303), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1292), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98571] = 4, + [97444] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1667), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, + ACTIONS(1671), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1664), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110177,17 +109285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98600] = 4, + [97473] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1667), 2, + ACTIONS(1556), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, + ACTIONS(1567), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1551), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110202,17 +109310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98629] = 4, + [97502] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, + ACTIONS(1634), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1565), 14, + ACTIONS(1627), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110227,17 +109335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98658] = 4, + [97531] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, + ACTIONS(1671), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, + anon_sym_RBRACK, + ACTIONS(1664), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110252,17 +109360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98687] = 4, + [97560] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1567), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, + ACTIONS(1675), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110277,17 +109385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98716] = 4, + [97589] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1556), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, + ACTIONS(1567), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1551), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110302,17 +109410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98745] = 4, + [97618] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1435), 2, + ACTIONS(1634), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1627), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110327,42 +109435,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98774] = 4, + [97647] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2894), 2, + ACTIONS(2845), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1565), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98803] = 4, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [97672] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_RPAREN, + ACTIONS(2852), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [97697] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1567), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1667), 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [97722] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1662), 14, + ACTIONS(320), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110377,17 +109529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98832] = 4, + [97751] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(1669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, + ACTIONS(1671), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1565), 14, + ACTIONS(1664), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110402,17 +109554,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98861] = 4, + [97780] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2854), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [97805] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, - anon_sym_RPAREN, + ACTIONS(320), 2, anon_sym_COMMA, - ACTIONS(1677), 14, + anon_sym_in, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110427,17 +109602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98890] = 4, + [97834] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 2, + ACTIONS(1567), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1630), 14, + ACTIONS(1675), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110452,67 +109627,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98919] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1565), 14, + [97863] = 13, + ACTIONS(2276), 1, anon_sym_DOT, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2289), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2305), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2307), 1, anon_sym_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - anon_sym_LT_LT, - [98948] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2293), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2303), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1292), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98977] = 4, + [97910] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1567), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(667), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1675), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110527,17 +109686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99006] = 4, + [97939] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(279), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, + ACTIONS(320), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1677), 14, + anon_sym_RBRACK, + ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110552,30 +109711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99035] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2889), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99060] = 4, + [97968] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -110600,74 +109736,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99089] = 13, - ACTIONS(2349), 1, + [97997] = 13, + ACTIONS(2287), 1, anon_sym_DOT, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2299), 1, + anon_sym_LBRACK, + ACTIONS(2305), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2307), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2309), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2301), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99136] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2898), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99161] = 4, + [98044] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, + ACTIONS(1556), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(320), 2, - anon_sym_RPAREN, + ACTIONS(1567), 2, anon_sym_COMMA, - ACTIONS(277), 14, + anon_sym_in, + ACTIONS(1551), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110682,7 +109795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99190] = 4, + [98073] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -110707,459 +109820,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99219] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1635), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1630), 14, - anon_sym_DOT, + [98102] = 13, + ACTIONS(2289), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2305), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2307), 1, anon_sym_AMP, + ACTIONS(2309), 1, anon_sym_CARET, - anon_sym_LT_LT, - [99248] = 4, + ACTIONS(2856), 1, + anon_sym_DOT, + ACTIONS(2858), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1686), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1677), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2293), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2303), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1292), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99277] = 13, - ACTIONS(2357), 1, + [98149] = 13, + ACTIONS(2130), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2142), 1, + anon_sym_LBRACK, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2375), 1, + ACTIONS(2305), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2307), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2309), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2301), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99324] = 13, - ACTIONS(2098), 1, - anon_sym_DOT, - ACTIONS(2112), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, + [98196] = 13, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2305), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2307), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2309), 1, anon_sym_CARET, + ACTIONS(2368), 1, + anon_sym_DOT, + ACTIONS(2380), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2301), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [98243] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1632), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1634), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1627), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99371] = 13, - ACTIONS(2359), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98272] = 13, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2305), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2307), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2385), 1, + ACTIONS(2315), 1, anon_sym_DOT, - ACTIONS(2397), 1, + ACTIONS(2327), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2301), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99418] = 13, - ACTIONS(2359), 1, + [98319] = 13, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2305), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2307), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2309), 1, anon_sym_CARET, - ACTIONS(2900), 1, + ACTIONS(2396), 1, anon_sym_DOT, - ACTIONS(2902), 1, + ACTIONS(2408), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2301), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99465] = 13, - ACTIONS(2210), 1, + [98366] = 13, + ACTIONS(2238), 1, anon_sym_DOT, - ACTIONS(2222), 1, + ACTIONS(2250), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2305), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2307), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2309), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2301), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99512] = 13, - ACTIONS(2321), 1, + [98413] = 13, + ACTIONS(2210), 1, anon_sym_DOT, - ACTIONS(2333), 1, + ACTIONS(2222), 1, anon_sym_LBRACK, - ACTIONS(2359), 1, + ACTIONS(2289), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2297), 1, anon_sym_STAR_STAR, - ACTIONS(2375), 1, + ACTIONS(2305), 1, anon_sym_PIPE, - ACTIONS(2377), 1, + ACTIONS(2307), 1, anon_sym_AMP, - ACTIONS(2379), 1, + ACTIONS(2309), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2291), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2293), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2373), 2, + ACTIONS(2303), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1397), 2, + STATE(1292), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2301), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99559] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1581), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99584] = 13, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2375), 1, - anon_sym_PIPE, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(2438), 1, - anon_sym_DOT, - ACTIONS(2450), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99631] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1652), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1565), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99660] = 13, - ACTIONS(2238), 1, - anon_sym_DOT, - ACTIONS(2250), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2375), 1, - anon_sym_PIPE, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99707] = 13, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2375), 1, - anon_sym_PIPE, - ACTIONS(2377), 1, - anon_sym_AMP, - ACTIONS(2379), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2373), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1397), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99754] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1635), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1637), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1630), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99783] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2904), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99808] = 4, + [98460] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -111167,8 +110091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, ACTIONS(320), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(277), 14, anon_sym_DOT, anon_sym_LPAREN, @@ -111184,80 +110108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99837] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2912), 1, - anon_sym_COLON, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2737), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99883] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2918), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2675), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99929] = 2, + [98489] = 4, + ACTIONS(2860), 1, + anon_sym_COMMA, + STATE(1615), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 17, - anon_sym_COMMA, + ACTIONS(2845), 15, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111272,48 +110132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99953] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2920), 1, + [98517] = 6, + ACTIONS(2863), 1, + anon_sym_COMMA, + ACTIONS(2865), 1, anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2712), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99999] = 2, + ACTIONS(2867), 1, + anon_sym_EQ, + STATE(1623), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, + ACTIONS(2869), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111327,18 +110158,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100023] = 5, - ACTIONS(2924), 1, + [98549] = 5, + ACTIONS(2865), 1, anon_sym_COLON, - ACTIONS(2926), 1, + ACTIONS(2867), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 2, + ACTIONS(2871), 2, sym__newline, anon_sym_SEMI, - ACTIONS(2928), 13, + ACTIONS(2869), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111352,49 +110183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100053] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2930), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2747), 1, - sym__parameters, - STATE(2755), 1, - sym_lambda_parameters, + [98579] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100099] = 4, - ACTIONS(2932), 1, + ACTIONS(2845), 17, anon_sym_COMMA, - STATE(1643), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2889), 15, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111409,77 +110205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100127] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2935), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2655), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100173] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2937), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2623), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100219] = 2, + [98603] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 17, + ACTIONS(1567), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111497,114 +110227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100243] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2939), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2637), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100289] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2941), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2721), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100335] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2943), 1, + [98627] = 6, + ACTIONS(2865), 1, anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2738), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100381] = 2, + ACTIONS(2867), 1, + anon_sym_EQ, + ACTIONS(2873), 1, + anon_sym_COMMA, + STATE(1582), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, + ACTIONS(2869), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111618,19 +110253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100405] = 6, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(2926), 1, - anon_sym_EQ, - ACTIONS(2945), 1, - anon_sym_COMMA, - STATE(1595), 1, - aux_sym__patterns_repeat1, + [98659] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 13, + ACTIONS(2852), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111644,19 +110275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100437] = 6, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(2926), 1, - anon_sym_EQ, - ACTIONS(2947), 1, - anon_sym_COMMA, - STATE(1653), 1, - aux_sym__patterns_repeat1, + [98683] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 13, + ACTIONS(2854), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111670,10 +110297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100469] = 4, - ACTIONS(2949), 1, + [98707] = 4, + ACTIONS(2875), 1, anon_sym_COMMA, - STATE(1643), 1, + STATE(1615), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, @@ -111694,199 +110321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100497] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2951), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2743), 1, - sym_lambda_parameters, - STATE(2747), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100543] = 13, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2953), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2747), 1, - sym__parameters, - STATE(2787), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100589] = 12, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2957), 1, - anon_sym_LPAREN, - ACTIONS(2959), 1, - anon_sym_RPAREN, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(2963), 1, - anon_sym_STAR_STAR, - ACTIONS(2965), 1, - anon_sym_SLASH, - STATE(2417), 1, - sym_parameter, - STATE(2419), 1, - sym_tuple_pattern, - STATE(2621), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2422), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2547), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100632] = 11, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2967), 1, - anon_sym_COLON, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2541), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100672] = 11, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2957), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(2963), 1, - anon_sym_STAR_STAR, - ACTIONS(2965), 1, - anon_sym_SLASH, - ACTIONS(2967), 1, - anon_sym_RPAREN, - STATE(2419), 1, - sym_tuple_pattern, - STATE(2516), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2422), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2547), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100712] = 11, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - ACTIONS(2969), 1, - anon_sym_COLON, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2541), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100752] = 4, - ACTIONS(2924), 1, + [98735] = 4, + ACTIONS(2865), 1, anon_sym_COLON, - ACTIONS(2926), 1, + ACTIONS(2867), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2928), 13, + ACTIONS(2869), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111900,220 +110343,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100778] = 11, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2957), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(2963), 1, - anon_sym_STAR_STAR, - ACTIONS(2965), 1, - anon_sym_SLASH, - ACTIONS(2969), 1, - anon_sym_RPAREN, - STATE(2419), 1, - sym_tuple_pattern, - STATE(2516), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2422), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2547), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100818] = 10, - ACTIONS(2906), 1, - sym_identifier, - ACTIONS(2908), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_SLASH, - STATE(2343), 1, - sym_tuple_pattern, - STATE(2541), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2514), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2560), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100855] = 11, - ACTIONS(2973), 1, + [98761] = 11, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2881), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2883), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2885), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2889), 1, anon_sym_or, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2278), 1, aux_sym__collection_elements_repeat1, - STATE(2762), 1, + STATE(2711), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(2877), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [100894] = 10, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2957), 1, - anon_sym_LPAREN, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(2963), 1, - anon_sym_STAR_STAR, - ACTIONS(2965), 1, - anon_sym_SLASH, - STATE(2419), 1, - sym_tuple_pattern, - STATE(2516), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2422), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2547), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100931] = 13, - ACTIONS(2985), 1, - anon_sym_COMMA, - ACTIONS(2987), 1, + [98800] = 6, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2899), 1, anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - STATE(2739), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100972] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2891), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [98827] = 5, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2899), 1, anon_sym_or, + ACTIONS(2903), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 8, + ACTIONS(2901), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100999] = 13, - ACTIONS(2985), 1, - anon_sym_COMMA, - ACTIONS(2987), 1, + [98852] = 6, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2899), 1, anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - STATE(2699), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101040] = 2, + ACTIONS(2906), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [98879] = 6, + ACTIONS(2893), 1, + anon_sym_as, + ACTIONS(2895), 1, + anon_sym_if, + ACTIONS(2897), 1, + anon_sym_and, + ACTIONS(2899), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 12, + ACTIONS(2908), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [98906] = 4, + ACTIONS(2897), 1, anon_sym_and, - anon_sym_or, - [101059] = 4, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2899), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 10, + ACTIONS(2910), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112124,11 +110473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [101082] = 2, + [98929] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 12, + ACTIONS(2912), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112141,41 +110490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [101101] = 13, - ACTIONS(2985), 1, - anon_sym_COMMA, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2989), 1, - anon_sym_if, - ACTIONS(2991), 1, - anon_sym_COLON, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(2997), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3001), 1, - anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, - STATE(2676), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101142] = 3, - ACTIONS(3009), 1, - anon_sym_and, + [98948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 11, + ACTIONS(2914), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112186,165 +110505,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + anon_sym_and, anon_sym_or, - [101163] = 13, - ACTIONS(2985), 1, + [98967] = 13, + ACTIONS(2916), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2922), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2926), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2932), 1, anon_sym_or, - STATE(1860), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2463), 1, aux_sym__collection_elements_repeat1, - STATE(2641), 1, + STATE(2740), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101204] = 13, - ACTIONS(2985), 1, + [99008] = 13, + ACTIONS(2916), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2922), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2926), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2932), 1, anon_sym_or, - STATE(1860), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2463), 1, aux_sym__collection_elements_repeat1, - STATE(2632), 1, + STATE(2619), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101245] = 13, - ACTIONS(2985), 1, + [99049] = 13, + ACTIONS(2916), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2922), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2926), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2932), 1, anon_sym_or, - STATE(1860), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2463), 1, aux_sym__collection_elements_repeat1, - STATE(2763), 1, + STATE(2789), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101286] = 5, - ACTIONS(3009), 1, + [99090] = 3, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3021), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 9, + ACTIONS(2912), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [101311] = 6, - ACTIONS(3005), 1, + anon_sym_or, + [99111] = 13, + ACTIONS(2916), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2922), 1, + anon_sym_COLON, + ACTIONS(2924), 1, + anon_sym_async, + ACTIONS(2926), 1, + anon_sym_for, + ACTIONS(2928), 1, + anon_sym_RBRACE, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2932), 1, anon_sym_or, + STATE(1851), 1, + sym_for_in_clause, + STATE(2463), 1, + aux_sym__collection_elements_repeat1, + STATE(2759), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [99152] = 13, + ACTIONS(2916), 1, anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_as, + ACTIONS(2920), 1, + anon_sym_if, + ACTIONS(2922), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101338] = 13, - ACTIONS(2985), 1, + ACTIONS(2924), 1, + anon_sym_async, + ACTIONS(2926), 1, + anon_sym_for, + ACTIONS(2928), 1, + anon_sym_RBRACE, + ACTIONS(2930), 1, + anon_sym_and, + ACTIONS(2932), 1, + anon_sym_or, + STATE(1851), 1, + sym_for_in_clause, + STATE(2463), 1, + aux_sym__collection_elements_repeat1, + STATE(2670), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [99193] = 13, + ACTIONS(2916), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2922), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2926), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2932), 1, anon_sym_or, - STATE(1860), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2463), 1, aux_sym__collection_elements_repeat1, - STATE(2788), 1, + STATE(2724), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101379] = 2, + [99234] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 12, + ACTIONS(2072), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112357,373 +110710,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [101398] = 6, - ACTIONS(3005), 1, + [99253] = 13, + ACTIONS(2916), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2922), 1, + anon_sym_COLON, + ACTIONS(2924), 1, + anon_sym_async, + ACTIONS(2926), 1, + anon_sym_for, + ACTIONS(2928), 1, + anon_sym_RBRACE, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2932), 1, anon_sym_or, + STATE(1851), 1, + sym_for_in_clause, + STATE(2463), 1, + aux_sym__collection_elements_repeat1, + STATE(2697), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101425] = 13, - ACTIONS(2985), 1, + [99294] = 13, + ACTIONS(2916), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(2991), 1, + ACTIONS(2922), 1, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2926), 1, anon_sym_for, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACE, - ACTIONS(2999), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2932), 1, anon_sym_or, - STATE(1860), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2338), 1, + STATE(2463), 1, aux_sym__collection_elements_repeat1, - STATE(2789), 1, + STATE(2614), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101466] = 12, - ACTIONS(3028), 1, + [99335] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2934), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_BSLASH, + ACTIONS(2940), 1, + sym_string_end, + STATE(1767), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2936), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1661), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [99365] = 6, + ACTIONS(2879), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_if, + ACTIONS(2887), 1, + anon_sym_and, + ACTIONS(2889), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2908), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + [99391] = 12, + ACTIONS(2942), 1, anon_sym_RPAREN, - ACTIONS(3030), 1, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(3032), 1, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2318), 1, + STATE(2246), 1, aux_sym_argument_list_repeat1, - STATE(2766), 1, + STATE(2778), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101504] = 8, + [99429] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3050), 1, + ACTIONS(2958), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1684), 3, + STATE(1647), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101534] = 8, + [99459] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3052), 1, + ACTIONS(2960), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101564] = 12, - ACTIONS(3032), 1, + [99489] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3054), 1, + ACTIONS(2962), 1, anon_sym_RPAREN, - ACTIONS(3056), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2452), 1, aux_sym__collection_elements_repeat1, - STATE(2749), 1, + STATE(2736), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101602] = 12, - ACTIONS(3032), 1, + [99527] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3058), 1, + ACTIONS(2966), 1, anon_sym_RPAREN, - ACTIONS(3060), 1, + ACTIONS(2968), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2288), 1, + STATE(2300), 1, aux_sym_argument_list_repeat1, - STATE(2749), 1, + STATE(2736), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101640] = 8, + [99565] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3062), 1, + ACTIONS(2970), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101670] = 8, + [99595] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3064), 1, + ACTIONS(2972), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1687), 3, + STATE(1652), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [99625] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2934), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_BSLASH, + ACTIONS(2974), 1, + sym_string_end, + STATE(1767), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2936), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101700] = 9, - ACTIONS(3005), 1, + [99655] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_for, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3068), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2200), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(2976), 1, + anon_sym_RPAREN, + STATE(1824), 1, + sym_for_in_clause, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, + STATE(2658), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2971), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [101732] = 8, + [99693] = 12, + ACTIONS(2946), 1, + anon_sym_as, + ACTIONS(2948), 1, + anon_sym_if, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_for, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(2956), 1, + anon_sym_or, + ACTIONS(2978), 1, + anon_sym_RPAREN, + ACTIONS(2980), 1, + anon_sym_COMMA, + STATE(1824), 1, + sym_for_in_clause, + STATE(2344), 1, + aux_sym_argument_list_repeat1, + STATE(2658), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [99731] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3070), 1, + ACTIONS(2982), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1691), 3, + STATE(1656), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101762] = 8, + [99761] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3072), 1, + ACTIONS(2984), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101792] = 12, - ACTIONS(3032), 1, + [99791] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - ACTIONS(3074), 1, + ACTIONS(2986), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2452), 1, aux_sym__collection_elements_repeat1, - STATE(2635), 1, + STATE(2624), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101830] = 12, - ACTIONS(3032), 1, + [99829] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3074), 1, + ACTIONS(2988), 1, anon_sym_RPAREN, - ACTIONS(3076), 1, + ACTIONS(2990), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2635), 1, + STATE(2378), 1, + aux_sym_argument_list_repeat1, + STATE(2624), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101868] = 12, - ACTIONS(3032), 1, + [99867] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3079), 1, - anon_sym_RPAREN, - ACTIONS(3081), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(1893), 1, + ACTIONS(2992), 1, + anon_sym_RPAREN, + STATE(1824), 1, sym_for_in_clause, - STATE(2273), 1, - aux_sym_argument_list_repeat1, - STATE(2635), 1, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, + STATE(2778), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101906] = 3, - ACTIONS(2110), 1, + [99905] = 3, + ACTIONS(2086), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(2072), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112734,248 +111187,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [101926] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3083), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1697), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101956] = 8, + [99925] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3085), 1, + ACTIONS(2994), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101986] = 12, - ACTIONS(3032), 1, + [99955] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - ACTIONS(3087), 1, + ACTIONS(2996), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2452), 1, aux_sym__collection_elements_repeat1, - STATE(2766), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102024] = 12, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3089), 1, - anon_sym_RPAREN, - ACTIONS(3091), 1, - anon_sym_COMMA, - STATE(1893), 1, - sym_for_in_clause, - STATE(2396), 1, - aux_sym_argument_list_repeat1, - STATE(2644), 1, + STATE(2667), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102062] = 12, - ACTIONS(3032), 1, + [99993] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - ACTIONS(3093), 1, + ACTIONS(2998), 1, anon_sym_RPAREN, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2452), 1, aux_sym__collection_elements_repeat1, - STATE(2644), 1, + STATE(2713), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102100] = 8, + [100031] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3095), 1, + ACTIONS(3000), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1702), 3, + STATE(1692), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102130] = 8, + [100061] = 12, + ACTIONS(2946), 1, + anon_sym_as, + ACTIONS(2948), 1, + anon_sym_if, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_for, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(2956), 1, + anon_sym_or, + ACTIONS(3002), 1, + anon_sym_RPAREN, + ACTIONS(3004), 1, + anon_sym_COMMA, + STATE(1824), 1, + sym_for_in_clause, + STATE(2405), 1, + aux_sym_argument_list_repeat1, + STATE(2667), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [100099] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3097), 1, + ACTIONS(3006), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1696), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102160] = 12, - ACTIONS(3032), 1, + [100129] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3099), 1, + ACTIONS(3008), 1, anon_sym_RPAREN, - STATE(1893), 1, + ACTIONS(3010), 1, + anon_sym_COMMA, + STATE(1824), 1, sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2687), 1, + STATE(2249), 1, + aux_sym_argument_list_repeat1, + STATE(2702), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102198] = 12, - ACTIONS(3032), 1, + [100167] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3101), 1, - anon_sym_RPAREN, - ACTIONS(3103), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(1893), 1, + ACTIONS(3012), 1, + anon_sym_RPAREN, + STATE(1824), 1, sym_for_in_clause, - STATE(2362), 1, - aux_sym_argument_list_repeat1, - STATE(2687), 1, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, + STATE(2610), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102236] = 3, - ACTIONS(3105), 1, + [100205] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3013), 10, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2948), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(2950), 1, anon_sym_async, + ACTIONS(2952), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(2954), 1, anon_sym_and, + ACTIONS(2956), 1, anon_sym_or, - [102256] = 3, - ACTIONS(3107), 1, + ACTIONS(3014), 1, + anon_sym_RPAREN, + ACTIONS(3016), 1, + anon_sym_COMMA, + STATE(1824), 1, + sym_for_in_clause, + STATE(2431), 1, + aux_sym_argument_list_repeat1, + STATE(2610), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [100243] = 3, + ACTIONS(3018), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(2914), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112986,536 +111426,498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102276] = 8, + [100263] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3109), 1, + ACTIONS(3020), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1672), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102306] = 12, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3042), 1, - anon_sym_or, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(1893), 1, - sym_for_in_clause, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, - STATE(2668), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102344] = 8, + [100293] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3113), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3119), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3122), 1, + ACTIONS(3022), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3116), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102374] = 12, - ACTIONS(3032), 1, + [100323] = 9, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2897), 1, + anon_sym_and, + ACTIONS(2899), 1, + anon_sym_or, + ACTIONS(3026), 1, + anon_sym_COMMA, + STATE(2159), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3024), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2877), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [100355] = 12, + ACTIONS(2879), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_if, + ACTIONS(2883), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2885), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(3124), 1, - anon_sym_RPAREN, - ACTIONS(3126), 1, + ACTIONS(2928), 1, + anon_sym_RBRACK, + ACTIONS(3028), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2391), 1, - aux_sym_argument_list_repeat1, - STATE(2668), 1, + STATE(2278), 1, + aux_sym__collection_elements_repeat1, + STATE(2714), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102412] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3128), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1712), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102442] = 8, + [100393] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3036), 1, anon_sym_BSLASH, - ACTIONS(3130), 1, + ACTIONS(3039), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(3033), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102472] = 12, - ACTIONS(3032), 1, + [100423] = 12, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2881), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2883), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2885), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(2928), 1, + anon_sym_RBRACK, + ACTIONS(3028), 1, anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RPAREN, - STATE(1893), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2278), 1, aux_sym__collection_elements_repeat1, - STATE(2664), 1, + STATE(2711), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102510] = 12, - ACTIONS(3032), 1, + [100461] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3134), 1, + ACTIONS(3041), 1, anon_sym_RPAREN, - ACTIONS(3136), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2416), 1, - aux_sym_argument_list_repeat1, - STATE(2664), 1, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, + STATE(2702), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102548] = 8, - ACTIONS(3), 1, + [100499] = 6, + ACTIONS(2879), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_if, + ACTIONS(2887), 1, + anon_sym_and, + ACTIONS(2889), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3138), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1716), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102578] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3140), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1709), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102608] = 12, - ACTIONS(3032), 1, + ACTIONS(2906), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + [100525] = 12, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2881), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2883), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2885), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(3056), 1, + ACTIONS(2928), 1, + anon_sym_RBRACK, + ACTIONS(3028), 1, anon_sym_COMMA, - ACTIONS(3142), 1, - anon_sym_RPAREN, - STATE(1893), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2382), 1, + STATE(2278), 1, aux_sym__collection_elements_repeat1, - STATE(2628), 1, + STATE(2743), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102646] = 12, - ACTIONS(3032), 1, + [100563] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3036), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(3040), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3144), 1, + ACTIONS(3046), 1, anon_sym_RPAREN, - ACTIONS(3146), 1, + ACTIONS(3048), 1, anon_sym_COMMA, - STATE(1893), 1, + STATE(1824), 1, sym_for_in_clause, - STATE(2443), 1, + STATE(2345), 1, aux_sym_argument_list_repeat1, - STATE(2628), 1, + STATE(2713), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102684] = 8, - ACTIONS(3), 1, + [100601] = 12, + ACTIONS(2879), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_if, + ACTIONS(2883), 1, + anon_sym_async, + ACTIONS(2885), 1, + anon_sym_for, + ACTIONS(2887), 1, + anon_sym_and, + ACTIONS(2889), 1, + anon_sym_or, + ACTIONS(2928), 1, + anon_sym_RBRACK, + ACTIONS(3028), 1, + anon_sym_COMMA, + STATE(1858), 1, + sym_for_in_clause, + STATE(2278), 1, + aux_sym__collection_elements_repeat1, + STATE(2659), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, - anon_sym_LBRACE, - ACTIONS(3048), 1, - anon_sym_BSLASH, - ACTIONS(3148), 1, - sym_string_end, - STATE(1797), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3046), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1720), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102714] = 8, + [100639] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3150), 1, + ACTIONS(3050), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1709), 3, + STATE(1650), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102744] = 12, - ACTIONS(2973), 1, + [100669] = 12, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2881), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2883), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2885), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3028), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2278), 1, aux_sym__collection_elements_repeat1, - STATE(2759), 1, + STATE(2626), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102782] = 6, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3024), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102808] = 12, - ACTIONS(2973), 1, + [100707] = 12, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2881), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2883), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2885), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3028), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2278), 1, aux_sym__collection_elements_repeat1, - STATE(2762), 1, + STATE(2720), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102846] = 6, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, - ACTIONS(3), 2, + [100745] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3026), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102872] = 12, - ACTIONS(2973), 1, + ACTIONS(2934), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_BSLASH, + ACTIONS(3052), 1, + sym_string_end, + STATE(1767), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2936), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1687), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [100775] = 12, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2881), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2883), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2885), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3028), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2278), 1, aux_sym__collection_elements_repeat1, - STATE(2776), 1, + STATE(2672), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102910] = 5, - ACTIONS(2981), 1, + [100813] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2934), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_BSLASH, + ACTIONS(3054), 1, + sym_string_end, + STATE(1767), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2936), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1675), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [100843] = 6, + ACTIONS(2879), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_if, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(3154), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 8, + ACTIONS(2891), 7, anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102934] = 12, - ACTIONS(2973), 1, + [100869] = 12, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2881), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2883), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2885), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(2997), 1, + ACTIONS(2928), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(3028), 1, anon_sym_COMMA, - STATE(1846), 1, + STATE(1858), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2278), 1, aux_sym__collection_elements_repeat1, - STATE(2689), 1, + STATE(2611), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102972] = 12, - ACTIONS(2973), 1, + [100907] = 12, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(2977), 1, + ACTIONS(2950), 1, anon_sym_async, - ACTIONS(2979), 1, + ACTIONS(2952), 1, anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(1846), 1, + ACTIONS(3041), 1, + anon_sym_RPAREN, + STATE(1824), 1, sym_for_in_clause, - STATE(2460), 1, + STATE(2452), 1, aux_sym__collection_elements_repeat1, - STATE(2695), 1, + STATE(2702), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103010] = 4, - ACTIONS(2981), 1, + [100945] = 5, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(3107), 1, + ACTIONS(2889), 1, + anon_sym_or, + ACTIONS(3056), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2901), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113524,116 +111926,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_or, - [103032] = 12, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2977), 1, - anon_sym_async, - ACTIONS(2979), 1, - anon_sym_for, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, - anon_sym_COMMA, - STATE(1846), 1, - sym_for_in_clause, - STATE(2460), 1, - aux_sym__collection_elements_repeat1, - STATE(2666), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + [100969] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [103070] = 12, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2977), 1, - anon_sym_async, - ACTIONS(2979), 1, - anon_sym_for, - ACTIONS(2981), 1, + ACTIONS(2934), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_BSLASH, + ACTIONS(3059), 1, + sym_string_end, + STATE(1767), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2936), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1675), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [100999] = 5, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, - anon_sym_COMMA, - STATE(1846), 1, - sym_for_in_clause, - STATE(2460), 1, - aux_sym__collection_elements_repeat1, - STATE(2629), 1, - sym__comprehension_clauses, + ACTIONS(3061), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103108] = 12, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2975), 1, + ACTIONS(2910), 8, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2977), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(2979), 1, anon_sym_for, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, - ACTIONS(2997), 1, anon_sym_RBRACK, - ACTIONS(3152), 1, - anon_sym_COMMA, - STATE(1846), 1, - sym_for_in_clause, - STATE(2460), 1, - aux_sym__collection_elements_repeat1, - STATE(2722), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [103146] = 6, - ACTIONS(2973), 1, + anon_sym_PIPE, + [101023] = 3, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(2975), 1, - anon_sym_if, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 7, + ACTIONS(2912), 10, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [103172] = 5, - ACTIONS(2981), 1, anon_sym_and, - ACTIONS(2983), 1, anon_sym_or, - ACTIONS(3157), 1, + [101043] = 4, + ACTIONS(2887), 1, + anon_sym_and, + ACTIONS(3063), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 8, + ACTIONS(2912), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113642,144 +112001,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [103196] = 8, + anon_sym_or, + [101065] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3044), 1, + ACTIONS(2934), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(2938), 1, anon_sym_BSLASH, - ACTIONS(3159), 1, + ACTIONS(3065), 1, sym_string_end, - STATE(1797), 2, + STATE(1767), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3046), 3, + ACTIONS(2936), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1707), 3, + STATE(1675), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [103226] = 2, + [101095] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3071), 1, + anon_sym_COLON, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2723), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 10, - anon_sym_DOT, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101126] = 9, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3079), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103243] = 8, - ACTIONS(3161), 1, - anon_sym_COMMA, - ACTIONS(3163), 1, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, + STATE(2385), 1, + sym__lambda_parameter, + STATE(2717), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2379), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101157] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3093), 1, anon_sym_or, - STATE(1979), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3167), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103272] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(2891), 6, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103289] = 5, - ACTIONS(3173), 1, - anon_sym_as, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, + [101182] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3095), 1, + anon_sym_COLON, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2607), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 7, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101213] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3097), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103312] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2773), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103337] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101244] = 5, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, + ACTIONS(3099), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 6, + ACTIONS(2901), 7, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103362] = 4, - ACTIONS(3184), 1, + [101267] = 4, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 8, + ACTIONS(2910), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113788,11 +112166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103383] = 2, + [101288] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(2912), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113803,13 +112181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103400] = 3, - ACTIONS(3184), 1, + [101305] = 3, + ACTIONS(3091), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2912), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113819,260 +112197,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [103419] = 4, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3015), 8, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + [101324] = 6, + ACTIONS(3087), 1, anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103440] = 6, - ACTIONS(3176), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, + ACTIONS(2906), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103465] = 2, + [101349] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3102), 1, + anon_sym_COLON, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2718), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 10, - anon_sym_DOT, - anon_sym_COMMA, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101380] = 6, + ACTIONS(3087), 1, anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3091), 1, anon_sym_and, + ACTIONS(3093), 1, anon_sym_or, - [103482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 10, + ACTIONS(2908), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, + [101405] = 6, + ACTIONS(2893), 1, + anon_sym_as, + ACTIONS(2895), 1, + anon_sym_if, + ACTIONS(2897), 1, anon_sym_and, + ACTIONS(2899), 1, anon_sym_or, - [103499] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(2877), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103516] = 3, - ACTIONS(3176), 1, - anon_sym_and, + [101430] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3104), 1, + anon_sym_COLON, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2646), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101461] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3106), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - [103535] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2638), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, - anon_sym_DOT, - anon_sym_COMMA, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101492] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3108), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [103560] = 5, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3192), 1, - anon_sym_as, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2742), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101523] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3110), 1, + anon_sym_COLON, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2650), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101554] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 7, + ACTIONS(2072), 10, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103583] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, anon_sym_and, - ACTIONS(3186), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3024), 6, - anon_sym_DOT, - anon_sym_COMMA, + [101571] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3112), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [103608] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2605), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 6, - anon_sym_DOT, - anon_sym_RPAREN, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101602] = 8, + ACTIONS(3114), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103633] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3118), 1, anon_sym_if, + ACTIONS(3122), 1, + anon_sym_and, + ACTIONS(3124), 1, + anon_sym_or, + STATE(1932), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3120), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [103658] = 8, - ACTIONS(3161), 1, + anon_sym_RBRACE, + sym_type_conversion, + [101631] = 8, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3163), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3122), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3124), 1, anon_sym_or, - STATE(1979), 1, + STATE(1932), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 4, + ACTIONS(3126), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103687] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + [101660] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3128), 1, + anon_sym_COLON, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2704), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 6, - anon_sym_DOT, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101691] = 9, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, + ACTIONS(3130), 1, anon_sym_RPAREN, - anon_sym_COMMA, + STATE(2385), 1, + sym__lambda_parameter, + STATE(2752), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2379), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101722] = 9, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3132), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103712] = 4, - ACTIONS(3199), 1, - anon_sym_DOT, - STATE(1758), 1, - aux_sym_dotted_name_repeat1, + STATE(2277), 1, + sym__lambda_parameter, + STATE(2648), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 7, - anon_sym_import, - anon_sym_LPAREN, + STATE(2270), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101753] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 10, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, anon_sym_PIPE, - [103732] = 3, - ACTIONS(3202), 1, anon_sym_and, + anon_sym_or, + [101770] = 9, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, + ACTIONS(3134), 1, + anon_sym_RPAREN, + STATE(2385), 1, + sym__lambda_parameter, + STATE(2766), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2379), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101801] = 9, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, + ACTIONS(3136), 1, + anon_sym_RPAREN, + STATE(2385), 1, + sym__lambda_parameter, + STATE(2770), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2379), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [101832] = 4, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(2910), 7, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114080,147 +112584,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_or, - [103750] = 2, + [101852] = 4, + ACTIONS(2930), 1, + anon_sym_and, + ACTIONS(3063), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 9, + ACTIONS(2912), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - anon_sym_and, anon_sym_or, - sym_type_conversion, - [103766] = 3, - ACTIONS(3105), 1, - anon_sym_as, + [101872] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 8, + ACTIONS(2912), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [103784] = 4, - ACTIONS(3206), 1, - anon_sym_DOT, - STATE(1758), 1, - aux_sym_dotted_name_repeat1, + sym_type_conversion, + [101888] = 3, + ACTIONS(3122), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(2912), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [103804] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_or, + sym_type_conversion, + [101906] = 6, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3122), 1, + anon_sym_and, + ACTIONS(3124), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, - anon_sym_DOT, + ACTIONS(3142), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103828] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [101930] = 5, + ACTIONS(3144), 1, + anon_sym_DOT, + ACTIONS(3148), 1, + anon_sym_EQ, + STATE(1760), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, - anon_sym_DOT, + ACTIONS(3146), 6, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [103852] = 6, - ACTIONS(3163), 1, + [101952] = 6, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3122), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3124), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, + ACTIONS(2906), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103876] = 6, - ACTIONS(3202), 1, + [101976] = 6, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 5, + ACTIONS(2908), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103900] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + [102000] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(2072), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103924] = 2, + anon_sym_and, + anon_sym_or, + [102016] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 9, + ACTIONS(2914), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114230,347 +112728,474 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103940] = 6, - ACTIONS(3163), 1, + [102032] = 6, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3122), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3124), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 5, + ACTIONS(2908), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103964] = 9, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3218), 1, - anon_sym_from, - ACTIONS(3220), 1, - anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, + [102056] = 8, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, + ACTIONS(3154), 1, + anon_sym_RPAREN, + STATE(2534), 1, + sym__lambda_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3216), 2, - sym__newline, - anon_sym_SEMI, - [103994] = 2, + STATE(2501), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [102084] = 8, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, + ACTIONS(3156), 1, + anon_sym_RPAREN, + STATE(2534), 1, + sym__lambda_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [104010] = 6, - ACTIONS(3163), 1, + STATE(2501), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [102112] = 6, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3122), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3124), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 5, + ACTIONS(2891), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [104034] = 2, + [102136] = 8, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3154), 1, + anon_sym_COLON, + STATE(2567), 1, + sym__lambda_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + STATE(2565), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [102164] = 8, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3156), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [104050] = 5, - ACTIONS(3206), 1, + STATE(2567), 1, + sym__lambda_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2565), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [102192] = 4, + ACTIONS(3160), 1, anon_sym_DOT, - ACTIONS(3224), 1, - anon_sym_EQ, - STATE(1762), 1, + STATE(1740), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 6, + ACTIONS(3158), 7, + anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104072] = 6, - ACTIONS(2987), 1, + [102212] = 3, + ACTIONS(3018), 1, anon_sym_as, - ACTIONS(2989), 1, - anon_sym_if, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3001), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3026), 5, + ACTIONS(2914), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104096] = 6, - ACTIONS(2987), 1, + anon_sym_and, + anon_sym_or, + [102230] = 6, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(2999), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2932), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3024), 5, + ACTIONS(2906), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104120] = 5, - ACTIONS(3202), 1, + [102254] = 6, + ACTIONS(2918), 1, + anon_sym_as, + ACTIONS(2920), 1, + anon_sym_if, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(2932), 1, anon_sym_or, - ACTIONS(3226), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, - anon_sym_DOT, + ACTIONS(2908), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [104142] = 5, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3001), 1, - anon_sym_or, - ACTIONS(3229), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [102278] = 3, + ACTIONS(3063), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, + ACTIONS(2912), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104164] = 4, - ACTIONS(3169), 1, anon_sym_and, - ACTIONS(3171), 1, anon_sym_or, + [102296] = 6, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 7, + ACTIONS(2877), 5, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [102320] = 3, + ACTIONS(2086), 1, anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2072), 8, + anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [104184] = 4, - ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3212), 1, anon_sym_or, + [102338] = 6, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 7, + ACTIONS(2906), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [104204] = 6, - ACTIONS(3180), 1, + [102362] = 6, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(2920), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2932), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_DOT, + ACTIONS(2891), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [104228] = 5, - ACTIONS(2999), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [102386] = 8, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3163), 1, + anon_sym_COLON, + STATE(2567), 1, + sym__lambda_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2565), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [102414] = 6, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3140), 1, anon_sym_or, - ACTIONS(3157), 1, + ACTIONS(3150), 1, anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 6, + ACTIONS(2891), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104250] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [102438] = 8, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + ACTIONS(3165), 1, + anon_sym_COLON, + STATE(2567), 1, + sym__lambda_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2565), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [102466] = 4, + ACTIONS(3144), 1, + anon_sym_DOT, + STATE(1760), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(3146), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_PIPE, + [102486] = 5, + ACTIONS(3138), 1, anon_sym_and, + ACTIONS(3140), 1, anon_sym_or, - sym_type_conversion, - [104266] = 3, - ACTIONS(3107), 1, + ACTIONS(3167), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(2901), 6, + anon_sym_DOT, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [104284] = 4, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3107), 1, - anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [102508] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 7, + ACTIONS(2912), 9, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_or, - [104304] = 3, - ACTIONS(3169), 1, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, + anon_sym_or, + [102524] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, + ACTIONS(2072), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_and, anon_sym_or, sym_type_conversion, - [104322] = 3, - ACTIONS(2110), 1, + [102540] = 6, + ACTIONS(3116), 1, anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, + ACTIONS(3122), 1, + anon_sym_and, + ACTIONS(3124), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 8, + ACTIONS(3170), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [104340] = 6, + sym_type_conversion, + [102564] = 8, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, ACTIONS(3163), 1, - anon_sym_as, - ACTIONS(3165), 1, - anon_sym_if, - ACTIONS(3169), 1, + anon_sym_RPAREN, + STATE(2534), 1, + sym__lambda_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2501), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [102592] = 3, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3171), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, + ACTIONS(2912), 8, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104364] = 4, - ACTIONS(3206), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_or, + [102610] = 8, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, + ACTIONS(3165), 1, + anon_sym_RPAREN, + STATE(2534), 1, + sym__lambda_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2501), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [102638] = 4, + ACTIONS(3144), 1, anon_sym_DOT, - STATE(1762), 1, + STATE(1740), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 7, + ACTIONS(3172), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -114578,29 +113203,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104384] = 6, - ACTIONS(3163), 1, + [102658] = 9, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(2899), 1, anon_sym_or, + ACTIONS(3176), 1, + anon_sym_from, + ACTIONS(3178), 1, + anon_sym_COMMA, + STATE(2035), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104408] = 2, + ACTIONS(3174), 2, + sym__newline, + anon_sym_SEMI, + [102688] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 9, + ACTIONS(2914), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -114610,189 +113238,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [104424] = 6, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2989), 1, - anon_sym_if, - ACTIONS(2999), 1, + [102704] = 5, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2932), 1, anon_sym_or, + ACTIONS(3061), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 5, + ACTIONS(2910), 6, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104448] = 5, - ACTIONS(3169), 1, + [102726] = 5, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(2932), 1, anon_sym_or, - ACTIONS(3234), 1, + ACTIONS(3180), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, + ACTIONS(2901), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [104470] = 5, - ACTIONS(3237), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - STATE(1885), 1, - aux_sym_dotted_name_repeat1, + [102748] = 4, + ACTIONS(3122), 1, + anon_sym_and, + ACTIONS(3124), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, + ACTIONS(2910), 7, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [104491] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3241), 1, - anon_sym_COMMA, - ACTIONS(3243), 1, anon_sym_COLON, - ACTIONS(3245), 1, - anon_sym_RBRACK, - STATE(2276), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104520] = 5, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3040), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102768] = 5, + ACTIONS(3122), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3124), 1, anon_sym_or, + ACTIONS(3183), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_RPAREN, + ACTIONS(2901), 6, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - [104541] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3253), 1, - anon_sym_BSLASH, - ACTIONS(3249), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1800), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3251), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104564] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3255), 1, - anon_sym_async, - ACTIONS(3257), 1, - anon_sym_def, - ACTIONS(3259), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(829), 2, - sym_function_definition, - sym_class_definition, - STATE(1934), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104589] = 8, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3263), 1, - anon_sym_COMMA, - STATE(2209), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3261), 2, - sym__newline, - anon_sym_SEMI, - [104616] = 6, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [102790] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3270), 1, + ACTIONS(3190), 1, anon_sym_BSLASH, - ACTIONS(3265), 2, + ACTIONS(3186), 2, sym_string_end, anon_sym_LBRACE, - STATE(1800), 2, + STATE(1806), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3267), 3, + ACTIONS(3188), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [104639] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3273), 1, - anon_sym_COMMA, - ACTIONS(3275), 1, - anon_sym_RBRACK, - STATE(2394), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104668] = 2, + [102813] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 8, + ACTIONS(3192), 8, anon_sym_import, anon_sym_DOT, anon_sym_LPAREN, @@ -114801,10175 +113335,10447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104683] = 6, - ACTIONS(2987), 1, + [102828] = 3, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(2989), 1, - anon_sym_if, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3001), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 4, + ACTIONS(2912), 7, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104706] = 6, - ACTIONS(3032), 1, - anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3040), 1, anon_sym_and, - ACTIONS(3042), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3026), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [104729] = 8, - ACTIONS(3005), 1, + [102845] = 8, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3281), 1, + ACTIONS(3026), 1, anon_sym_COMMA, - STATE(2157), 1, - aux_sym_print_statement_repeat1, + STATE(2159), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 2, + ACTIONS(3024), 2, sym__newline, anon_sym_SEMI, - [104756] = 5, - ACTIONS(3032), 1, + [102872] = 6, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(3040), 1, + ACTIONS(2920), 1, + anon_sym_if, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2932), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_RPAREN, + ACTIONS(3194), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [104777] = 7, - ACTIONS(1559), 1, + anon_sym_RBRACE, + [102895] = 7, + ACTIONS(1489), 1, anon_sym_except, - ACTIONS(1563), 1, + ACTIONS(1493), 1, anon_sym_except_STAR, - ACTIONS(3283), 1, + ACTIONS(3196), 1, anon_sym_finally, - STATE(814), 1, + STATE(730), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(588), 2, + STATE(535), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(589), 2, + STATE(536), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [104802] = 5, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2999), 1, + [102920] = 9, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(3140), 1, anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, + ACTIONS(3198), 1, + anon_sym_COMMA, + ACTIONS(3200), 1, + anon_sym_COLON, + ACTIONS(3202), 1, + anon_sym_RBRACK, + STATE(2434), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104823] = 5, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2981), 1, + [102949] = 5, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(2956), 1, anon_sym_or, + ACTIONS(3204), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(2901), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104844] = 3, - ACTIONS(3105), 1, + [102970] = 4, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(3063), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3013), 7, + ACTIONS(2912), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_and, anon_sym_or, - [104861] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [102989] = 6, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2948), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3285), 1, - anon_sym_COMMA, - ACTIONS(3287), 1, - anon_sym_RBRACK, - STATE(2420), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104890] = 8, - ACTIONS(3005), 1, + ACTIONS(2908), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [103012] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3263), 1, - anon_sym_COMMA, - STATE(2159), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3289), 2, - sym__newline, - anon_sym_SEMI, - [104917] = 5, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2981), 1, + ACTIONS(2877), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103035] = 9, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(3140), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [104938] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3200), 1, anon_sym_COLON, - ACTIONS(3291), 1, + ACTIONS(3207), 1, anon_sym_COMMA, - ACTIONS(3293), 1, + ACTIONS(3209), 1, anon_sym_RBRACK, - STATE(2445), 1, + STATE(2441), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104967] = 5, - ACTIONS(3295), 1, - anon_sym_DOT, - ACTIONS(3297), 1, - anon_sym_EQ, - STATE(1866), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + [103064] = 5, + ACTIONS(2946), 1, anon_sym_as, - anon_sym_PIPE, - [104988] = 9, - ACTIONS(3202), 1, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2956), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3299), 1, - anon_sym_COMMA, - ACTIONS(3301), 1, - anon_sym_RBRACK, - STATE(2451), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105017] = 9, - ACTIONS(3202), 1, + ACTIONS(3211), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [103085] = 9, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3200), 1, anon_sym_COLON, - ACTIONS(3303), 1, + ACTIONS(3213), 1, anon_sym_COMMA, - ACTIONS(3305), 1, + ACTIONS(3215), 1, anon_sym_RBRACK, - STATE(2390), 1, + STATE(2445), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105046] = 3, - ACTIONS(2110), 1, + [103114] = 5, + ACTIONS(2946), 1, anon_sym_as, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(2956), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2096), 7, + ACTIONS(3211), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + [103135] = 9, + ACTIONS(3138), 1, anon_sym_and, + ACTIONS(3140), 1, anon_sym_or, - [105063] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3200), 1, anon_sym_COLON, - ACTIONS(3307), 1, + ACTIONS(3217), 1, anon_sym_COMMA, - ACTIONS(3309), 1, + ACTIONS(3219), 1, anon_sym_RBRACK, - STATE(2321), 1, + STATE(2252), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105092] = 4, + [103164] = 4, ACTIONS(328), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(994), 2, + STATE(991), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 5, + ACTIONS(3221), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [105111] = 7, - ACTIONS(1503), 1, - anon_sym_except, - ACTIONS(1507), 1, - anon_sym_except_STAR, - ACTIONS(3313), 1, - anon_sym_finally, - STATE(755), 1, - sym_finally_clause, + [103183] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3223), 1, + anon_sym_async, + ACTIONS(3225), 1, + anon_sym_def, + ACTIONS(3227), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(495), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(503), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [105136] = 5, - ACTIONS(2987), 1, + STATE(790), 2, + sym_function_definition, + sym_class_definition, + STATE(1886), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [103208] = 5, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(2999), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(3001), 1, + ACTIONS(2889), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(3211), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [105157] = 7, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1563), 1, - anon_sym_except_STAR, - ACTIONS(3283), 1, - anon_sym_finally, - STATE(846), 1, - sym_finally_clause, + anon_sym_RBRACK, + [103229] = 5, + ACTIONS(2918), 1, + anon_sym_as, + ACTIONS(2930), 1, + anon_sym_and, + ACTIONS(2932), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(607), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(608), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [105182] = 8, - ACTIONS(3005), 1, + ACTIONS(3211), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [103250] = 8, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3068), 1, + ACTIONS(3231), 1, anon_sym_COMMA, - STATE(2200), 1, - aux_sym_assert_statement_repeat1, + STATE(2226), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3066), 2, + ACTIONS(3229), 2, sym__newline, anon_sym_SEMI, - [105209] = 6, - ACTIONS(3032), 1, + [103277] = 5, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(3034), 1, - anon_sym_if, - ACTIONS(3040), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2932), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3003), 4, - anon_sym_RPAREN, + ACTIONS(3211), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [105232] = 8, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3220), 1, - anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, + [103298] = 7, + ACTIONS(3067), 1, + sym_identifier, + ACTIONS(3069), 1, + anon_sym_STAR, + ACTIONS(3073), 1, + anon_sym_STAR_STAR, + ACTIONS(3075), 1, + anon_sym_SLASH, + STATE(2567), 1, + sym__lambda_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3315), 2, - sym__newline, - anon_sym_SEMI, - [105259] = 8, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, + STATE(2565), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [103323] = 9, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3140), 1, anon_sym_or, - ACTIONS(3220), 1, - anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2922), 2, - sym__newline, - anon_sym_SEMI, - [105286] = 8, - ACTIONS(3005), 1, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3200), 1, + anon_sym_COLON, + ACTIONS(3233), 1, anon_sym_COMMA, - STATE(2017), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3235), 1, + anon_sym_RBRACK, + STATE(2295), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 2, - sym__newline, - anon_sym_SEMI, - [105313] = 7, - ACTIONS(1503), 1, + [103352] = 7, + ACTIONS(1509), 1, anon_sym_except, - ACTIONS(1507), 1, + ACTIONS(1513), 1, anon_sym_except_STAR, - ACTIONS(3313), 1, + ACTIONS(3237), 1, anon_sym_finally, - STATE(792), 1, + STATE(852), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(572), 2, + STATE(533), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(573), 2, + STATE(534), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [105338] = 9, - ACTIONS(3202), 1, + [103377] = 9, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3200), 1, anon_sym_COLON, - ACTIONS(3319), 1, + ACTIONS(3239), 1, anon_sym_COMMA, - ACTIONS(3321), 1, + ACTIONS(3241), 1, anon_sym_RBRACK, - STATE(2447), 1, + STATE(2348), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105367] = 5, - ACTIONS(2973), 1, + [103406] = 3, + ACTIONS(3018), 1, anon_sym_as, - ACTIONS(2981), 1, - anon_sym_and, - ACTIONS(2983), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(2914), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [105388] = 5, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2999), 1, anon_sym_and, - ACTIONS(3001), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3247), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105409] = 9, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [103423] = 8, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2897), 1, + anon_sym_and, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3323), 1, + ACTIONS(3245), 1, anon_sym_COMMA, - ACTIONS(3325), 1, - anon_sym_RBRACK, - STATE(2365), 1, - aux_sym_subscript_repeat1, + STATE(2183), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3243), 2, + sym__newline, + anon_sym_SEMI, + [103450] = 5, + ACTIONS(3247), 1, + anon_sym_DOT, + ACTIONS(3249), 1, + anon_sym_EQ, + STATE(1875), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105438] = 8, - ACTIONS(3005), 1, + ACTIONS(3146), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [103471] = 8, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3220), 1, + ACTIONS(3245), 1, anon_sym_COMMA, - STATE(2017), 1, + STATE(2116), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(3251), 2, sym__newline, anon_sym_SEMI, - [105465] = 6, - ACTIONS(3032), 1, + [103498] = 8, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3034), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3040), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3024), 4, - anon_sym_RPAREN, + ACTIONS(3178), 1, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [105488] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3327), 1, - anon_sym_async, - ACTIONS(3329), 1, - anon_sym_def, - ACTIONS(3331), 1, - anon_sym_class, + STATE(2035), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(801), 2, - sym_function_definition, - sym_class_definition, - STATE(1934), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [105513] = 5, - ACTIONS(3040), 1, + ACTIONS(3253), 2, + sym__newline, + anon_sym_SEMI, + [103525] = 8, + ACTIONS(2893), 1, + anon_sym_as, + ACTIONS(2895), 1, + anon_sym_if, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3333), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3019), 5, - anon_sym_RPAREN, + ACTIONS(3178), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [105534] = 5, - ACTIONS(3336), 1, - anon_sym_DOT, - ACTIONS(3338), 1, - anon_sym_EQ, - STATE(1884), 1, - aux_sym_dotted_name_repeat1, + STATE(2035), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [105555] = 5, - ACTIONS(3032), 1, + ACTIONS(2871), 2, + sym__newline, + anon_sym_SEMI, + [103552] = 6, + ACTIONS(2946), 1, anon_sym_as, - ACTIONS(3040), 1, + ACTIONS(2948), 1, + anon_sym_if, + ACTIONS(2954), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2956), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 5, + ACTIONS(2891), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [105576] = 5, - ACTIONS(3040), 1, + [103575] = 5, + ACTIONS(2918), 1, + anon_sym_as, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(2932), 1, anon_sym_or, - ACTIONS(3157), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 5, - anon_sym_RPAREN, + ACTIONS(3211), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [105597] = 3, - ACTIONS(3107), 1, - anon_sym_as, + anon_sym_RBRACE, + [103596] = 7, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_STAR, + ACTIONS(3083), 1, + anon_sym_STAR_STAR, + ACTIONS(3085), 1, + anon_sym_SLASH, + STATE(2534), 1, + sym__lambda_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [105614] = 4, - ACTIONS(3040), 1, - anon_sym_and, - ACTIONS(3107), 1, - anon_sym_as, + STATE(2501), 3, + sym_parameter, + sym_positional_separator, + sym_keyword_separator, + [103621] = 7, + ACTIONS(1509), 1, + anon_sym_except, + ACTIONS(1513), 1, + anon_sym_except_STAR, + ACTIONS(3237), 1, + anon_sym_finally, + STATE(762), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_or, - [105633] = 6, - ACTIONS(3005), 1, + STATE(554), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(557), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [103646] = 6, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2899), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 4, + ACTIONS(3142), 4, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, - [105656] = 9, - ACTIONS(3202), 1, + [103669] = 9, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3200), 1, anon_sym_COLON, - ACTIONS(3340), 1, + ACTIONS(3255), 1, anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(3257), 1, anon_sym_RBRACK, - STATE(2458), 1, + STATE(2381), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105685] = 6, - ACTIONS(3036), 1, - anon_sym_async, - ACTIONS(3038), 1, - anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RPAREN, - ACTIONS(3346), 1, + [103698] = 6, + ACTIONS(2946), 1, + anon_sym_as, + ACTIONS(2948), 1, anon_sym_if, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(2956), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1887), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105707] = 6, - ACTIONS(2977), 1, + ACTIONS(2906), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_async, - ACTIONS(2979), 1, anon_sym_for, - ACTIONS(3348), 1, - anon_sym_if, - ACTIONS(3350), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, + [103721] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(1855), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105729] = 8, - ACTIONS(3195), 1, - anon_sym_RBRACK, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3352), 1, - anon_sym_COMMA, - STATE(2375), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3264), 1, + anon_sym_BSLASH, + ACTIONS(3259), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1806), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3261), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [103744] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3267), 1, + anon_sym_async, + ACTIONS(3269), 1, + anon_sym_def, + ACTIONS(3271), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105755] = 8, - ACTIONS(3180), 1, + STATE(743), 2, + sym_function_definition, + sym_class_definition, + STATE(1886), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [103769] = 5, + ACTIONS(2879), 1, anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3356), 1, - anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105781] = 8, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3211), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3184), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [103790] = 5, + ACTIONS(2879), 1, + anon_sym_as, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(3358), 1, - anon_sym_COMMA, - ACTIONS(3360), 1, - anon_sym_COLON, - STATE(2268), 1, - aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105807] = 8, - ACTIONS(3180), 1, + ACTIONS(3211), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [103811] = 8, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3354), 1, + ACTIONS(3178), 1, anon_sym_COMMA, - ACTIONS(3362), 1, - anon_sym_COLON, - STATE(2298), 1, + STATE(2035), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105833] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3364), 1, - anon_sym_COMMA, - ACTIONS(3366), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2384), 1, - aux_sym_dictionary_repeat1, - STATE(2753), 1, - sym__comprehension_clauses, + ACTIONS(3126), 2, + sym__newline, + anon_sym_SEMI, + [103838] = 5, + ACTIONS(2946), 1, + anon_sym_as, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(2956), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105859] = 8, - ACTIONS(2993), 1, + ACTIONS(3211), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - ACTIONS(2995), 1, anon_sym_for, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2263), 1, - aux_sym_dictionary_repeat1, - STATE(2748), 1, - sym__comprehension_clauses, + [103859] = 7, + ACTIONS(1489), 1, + anon_sym_except, + ACTIONS(1493), 1, + anon_sym_except_STAR, + ACTIONS(3196), 1, + anon_sym_finally, + STATE(800), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105885] = 4, - ACTIONS(3372), 1, + STATE(482), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(498), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [103884] = 5, + ACTIONS(3273), 1, anon_sym_DOT, - STATE(1853), 1, + ACTIONS(3275), 1, + anon_sym_EQ, + STATE(1849), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, + ACTIONS(3146), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105903] = 6, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RBRACE, - ACTIONS(3375), 1, + [103905] = 9, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, anon_sym_if, + ACTIONS(3200), 1, + anon_sym_COLON, + ACTIONS(3277), 1, + anon_sym_COMMA, + ACTIONS(3279), 1, + anon_sym_RBRACK, + STATE(2352), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1890), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105925] = 6, - ACTIONS(2977), 1, - anon_sym_async, - ACTIONS(2979), 1, - anon_sym_for, - ACTIONS(3344), 1, - anon_sym_RBRACK, - ACTIONS(3348), 1, + [103934] = 8, + ACTIONS(2893), 1, + anon_sym_as, + ACTIONS(2895), 1, anon_sym_if, + ACTIONS(2897), 1, + anon_sym_and, + ACTIONS(2899), 1, + anon_sym_or, + ACTIONS(3178), 1, + anon_sym_COMMA, + STATE(2035), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1880), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105947] = 7, - ACTIONS(2732), 1, - sym_identifier, - ACTIONS(3377), 1, + ACTIONS(3281), 2, + sym__newline, + anon_sym_SEMI, + [103961] = 5, + ACTIONS(3283), 1, anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym___future__, - STATE(2252), 1, - aux_sym_import_prefix_repeat1, - STATE(2441), 1, - sym_import_prefix, + ACTIONS(3285), 1, + anon_sym_EQ, + STATE(1840), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2733), 2, - sym_relative_import, - sym_dotted_name, - [105971] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3381), 1, + ACTIONS(3146), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(3383), 1, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2492), 1, - aux_sym_dictionary_repeat1, - STATE(2764), 1, - sym__comprehension_clauses, + [103982] = 9, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_COLON, + ACTIONS(3287), 1, + anon_sym_COMMA, + ACTIONS(3289), 1, + anon_sym_RBRACK, + STATE(2408), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105997] = 4, - ACTIONS(801), 1, - sym_string_start, + [104011] = 9, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, + ACTIONS(3200), 1, + anon_sym_COLON, + ACTIONS(3291), 1, + anon_sym_COMMA, + ACTIONS(3293), 1, + anon_sym_RBRACK, + STATE(2303), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [104040] = 5, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(2956), 1, + anon_sym_or, + ACTIONS(3061), 1, anon_sym_as, - anon_sym_PIPE, - [106015] = 4, - ACTIONS(3237), 1, - anon_sym_DOT, - STATE(1885), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, + ACTIONS(2910), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [106033] = 6, - ACTIONS(2993), 1, + anon_sym_if, anon_sym_async, - ACTIONS(2995), 1, anon_sym_for, - ACTIONS(3350), 1, - anon_sym_RBRACE, - ACTIONS(3375), 1, - anon_sym_if, + [104061] = 3, + ACTIONS(2086), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1854), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106055] = 7, - ACTIONS(3202), 1, + ACTIONS(2072), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_and, - ACTIONS(3208), 1, + anon_sym_or, + [104078] = 6, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(2897), 1, + anon_sym_and, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3385), 2, + ACTIONS(3295), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - [106079] = 6, - ACTIONS(3005), 1, + [104100] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [104114] = 6, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(2899), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 3, + ACTIONS(3297), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [106101] = 8, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - ACTIONS(3195), 1, + [104136] = 6, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_for, + ACTIONS(3299), 1, anon_sym_RPAREN, - ACTIONS(3389), 1, - anon_sym_COMMA, - STATE(2355), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3301), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106127] = 8, - ACTIONS(3391), 1, - sym_identifier, - ACTIONS(3393), 1, - anon_sym_LPAREN, - ACTIONS(3395), 1, - anon_sym_STAR, - STATE(2114), 1, - sym_dotted_name, - STATE(2218), 1, - sym_aliased_import, - STATE(2566), 1, - sym__import_list, - STATE(2570), 1, - sym_wildcard_import, + STATE(1881), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104158] = 6, + ACTIONS(3303), 1, + anon_sym_as, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106153] = 8, - ACTIONS(3079), 1, + ACTIONS(2891), 3, anon_sym_RPAREN, - ACTIONS(3081), 1, anon_sym_COMMA, - ACTIONS(3176), 1, + anon_sym_EQ, + [104180] = 5, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3309), 1, anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3311), 1, anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, - STATE(2273), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106179] = 4, - ACTIONS(3295), 1, - anon_sym_DOT, - STATE(1853), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2901), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + [104200] = 4, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, - anon_sym_LPAREN, + ACTIONS(2910), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [106197] = 7, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3397), 1, - anon_sym_COLON, + anon_sym_EQ, + [104218] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1449), 2, + ACTIONS(2912), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [106221] = 4, - ACTIONS(3295), 1, - anon_sym_DOT, - STATE(1866), 1, - aux_sym_dotted_name_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [104232] = 3, + ACTIONS(3307), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, - anon_sym_LPAREN, + ACTIONS(2912), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [106239] = 8, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, + anon_sym_EQ, + anon_sym_or, + [104248] = 5, + ACTIONS(2879), 1, + anon_sym_as, + ACTIONS(2887), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2889), 1, anon_sym_or, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3399), 1, - anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106265] = 8, - ACTIONS(2993), 1, + ACTIONS(3314), 4, + anon_sym_if, anon_sym_async, - ACTIONS(2995), 1, anon_sym_for, - ACTIONS(3401), 1, - anon_sym_COMMA, - ACTIONS(3403), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2354), 1, - aux_sym_dictionary_repeat1, - STATE(2703), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106291] = 8, - ACTIONS(2993), 1, + anon_sym_RBRACK, + [104268] = 6, + ACTIONS(3316), 1, + anon_sym_if, + ACTIONS(3319), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(3322), 1, anon_sym_for, - ACTIONS(3405), 1, - anon_sym_COMMA, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2435), 1, - aux_sym_dictionary_repeat1, - STATE(2633), 1, - sym__comprehension_clauses, + ACTIONS(3325), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106317] = 8, - ACTIONS(3180), 1, + STATE(1831), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104290] = 6, + ACTIONS(3303), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3305), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3309), 1, anon_sym_or, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3409), 1, - anon_sym_COLON, - STATE(2298), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106343] = 5, - ACTIONS(2973), 1, + ACTIONS(2906), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [104312] = 6, + ACTIONS(3303), 1, anon_sym_as, - ACTIONS(2981), 1, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(2983), 1, + ACTIONS(3309), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, + ACTIONS(2908), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [104334] = 7, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106363] = 3, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3329), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3413), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 5, + ACTIONS(3327), 2, anon_sym_COMMA, + anon_sym_COLON, + [104358] = 7, + ACTIONS(3303), 1, anon_sym_as, + ACTIONS(3305), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106379] = 4, - ACTIONS(3415), 1, - anon_sym_DOT, - STATE(1875), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, + ACTIONS(3331), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, - anon_sym_LPAREN, + ACTIONS(3327), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [106397] = 5, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2999), 1, - anon_sym_and, - ACTIONS(3001), 1, - anon_sym_or, + [104382] = 4, + ACTIONS(711), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(973), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3221), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [106417] = 4, - ACTIONS(755), 1, + [104400] = 4, + ACTIONS(823), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1116), 2, + STATE(1056), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, + ACTIONS(3221), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [106435] = 7, - ACTIONS(1419), 1, - anon_sym_COLON, - ACTIONS(3202), 1, + [104418] = 7, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + ACTIONS(3200), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1417), 2, + ACTIONS(3333), 2, anon_sym_COMMA, anon_sym_RBRACK, - [106459] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3418), 1, - anon_sym_COMMA, - ACTIONS(3420), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2310), 1, - aux_sym_dictionary_repeat1, - STATE(2791), 1, - sym__comprehension_clauses, + [104442] = 7, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, + ACTIONS(3335), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106485] = 6, - ACTIONS(3422), 1, - anon_sym_if, - ACTIONS(3425), 1, - anon_sym_async, - ACTIONS(3428), 1, - anon_sym_for, - ACTIONS(3431), 1, + ACTIONS(1449), 2, + anon_sym_COMMA, anon_sym_RBRACK, + [104466] = 4, + ACTIONS(3283), 1, + anon_sym_DOT, + STATE(1845), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1880), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106507] = 5, - ACTIONS(3032), 1, + ACTIONS(3172), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [104484] = 8, + ACTIONS(3008), 1, + anon_sym_RPAREN, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3303), 1, anon_sym_as, - ACTIONS(3040), 1, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3042), 1, + ACTIONS(3309), 1, anon_sym_or, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 4, - anon_sym_RPAREN, + [104510] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3221), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [104526] = 8, + ACTIONS(2924), 1, anon_sym_async, + ACTIONS(2926), 1, anon_sym_for, - [106527] = 8, - ACTIONS(2993), 1, - anon_sym_async, - ACTIONS(2995), 1, - anon_sym_for, - ACTIONS(3433), 1, + ACTIONS(3339), 1, anon_sym_COMMA, - ACTIONS(3435), 1, + ACTIONS(3341), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2261), 1, + STATE(2305), 1, aux_sym_dictionary_repeat1, - STATE(2616), 1, + STATE(2628), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106553] = 4, - ACTIONS(3437), 1, + [104552] = 4, + ACTIONS(3273), 1, anon_sym_DOT, - STATE(1883), 1, + STATE(1849), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, + ACTIONS(3146), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [106571] = 4, - ACTIONS(3336), 1, + [104570] = 4, + ACTIONS(3343), 1, anon_sym_DOT, - STATE(1883), 1, + STATE(1845), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, + ACTIONS(3158), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [106589] = 4, - ACTIONS(3237), 1, - anon_sym_DOT, - STATE(1875), 1, - aux_sym_dotted_name_repeat1, + [104588] = 8, + ACTIONS(3126), 1, + anon_sym_RBRACK, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, + ACTIONS(3346), 1, + anon_sym_COMMA, + STATE(2477), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [104614] = 8, + ACTIONS(3126), 1, + anon_sym_RPAREN, + ACTIONS(3303), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [106607] = 6, - ACTIONS(3005), 1, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, + ACTIONS(3348), 1, + anon_sym_COMMA, + STATE(2480), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104640] = 7, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3093), 1, anon_sym_or, + ACTIONS(3352), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3440), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3350), 2, anon_sym_COMMA, - [106629] = 6, - ACTIONS(3431), 1, + anon_sym_COLON, + [104664] = 4, + ACTIONS(3273), 1, + anon_sym_DOT, + STATE(1854), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3172), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3442), 1, - anon_sym_if, - ACTIONS(3445), 1, - anon_sym_async, - ACTIONS(3448), 1, - anon_sym_for, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [104682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1887), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106651] = 8, - ACTIONS(3180), 1, + ACTIONS(3356), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3354), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3451), 1, - anon_sym_COMMA, - ACTIONS(3453), 1, anon_sym_COLON, - STATE(2491), 1, - aux_sym_match_statement_repeat1, + anon_sym_PIPE, + [104698] = 6, + ACTIONS(2924), 1, + anon_sym_async, + ACTIONS(2926), 1, + anon_sym_for, + ACTIONS(3299), 1, + anon_sym_RBRACE, + ACTIONS(3358), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106677] = 8, - ACTIONS(2993), 1, + STATE(1855), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104720] = 8, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(2995), 1, + ACTIONS(2926), 1, anon_sym_for, - ACTIONS(3455), 1, + ACTIONS(3360), 1, anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3362), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1851), 1, sym_for_in_clause, - STATE(2409), 1, + STATE(2309), 1, aux_sym_dictionary_repeat1, - STATE(2677), 1, + STATE(2629), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106703] = 6, - ACTIONS(3431), 1, - anon_sym_RBRACE, - ACTIONS(3459), 1, - anon_sym_if, - ACTIONS(3462), 1, + [104746] = 8, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(3465), 1, + ACTIONS(2926), 1, anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1890), 3, + ACTIONS(3364), 1, + anon_sym_COMMA, + ACTIONS(3366), 1, + anon_sym_RBRACE, + STATE(1851), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106725] = 3, + STATE(2242), 1, + aux_sym_dictionary_repeat1, + STATE(2730), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3468), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106741] = 4, - ACTIONS(3336), 1, + [104772] = 4, + ACTIONS(3368), 1, anon_sym_DOT, - STATE(1884), 1, + STATE(1854), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 5, + ACTIONS(3158), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [106759] = 6, - ACTIONS(3036), 1, + [104790] = 6, + ACTIONS(2924), 1, anon_sym_async, - ACTIONS(3038), 1, + ACTIONS(2926), 1, anon_sym_for, - ACTIONS(3346), 1, + ACTIONS(3358), 1, anon_sym_if, - ACTIONS(3350), 1, - anon_sym_RPAREN, + ACTIONS(3371), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1845), 3, + STATE(1860), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106781] = 4, - ACTIONS(708), 1, - sym_string_start, + [104812] = 8, + ACTIONS(3373), 1, + sym_identifier, + ACTIONS(3375), 1, + anon_sym_LPAREN, + ACTIONS(3377), 1, + anon_sym_STAR, + STATE(2073), 1, + sym_dotted_name, + STATE(2155), 1, + sym_aliased_import, + STATE(2549), 1, + sym__import_list, + STATE(2550), 1, + sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3311), 4, - anon_sym_COMMA, + [104838] = 7, + ACTIONS(1369), 1, + anon_sym_COLON, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106799] = 3, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3152), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 5, + ACTIONS(1367), 2, anon_sym_COMMA, - anon_sym_as, + anon_sym_RBRACK, + [104862] = 6, + ACTIONS(2883), 1, + anon_sym_async, + ACTIONS(2885), 1, + anon_sym_for, + ACTIONS(3299), 1, + anon_sym_RBRACK, + ACTIONS(3379), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106814] = 6, - ACTIONS(3180), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1880), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104884] = 5, + ACTIONS(2918), 1, anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(2930), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2932), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3474), 2, + ACTIONS(3314), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104904] = 6, + ACTIONS(3325), 1, + anon_sym_RBRACE, + ACTIONS(3381), 1, + anon_sym_if, + ACTIONS(3384), 1, + anon_sym_async, + ACTIONS(3387), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1860), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [104926] = 8, + ACTIONS(2924), 1, + anon_sym_async, + ACTIONS(2926), 1, + anon_sym_for, + ACTIONS(3390), 1, anon_sym_COMMA, - anon_sym_COLON, - [106835] = 4, - ACTIONS(3), 1, + ACTIONS(3392), 1, + anon_sym_RBRACE, + STATE(1851), 1, + sym_for_in_clause, + STATE(2292), 1, + aux_sym_dictionary_repeat1, + STATE(2760), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3478), 1, - anon_sym_BSLASH, - ACTIONS(3476), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [106852] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + [104952] = 4, + ACTIONS(801), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 2, + STATE(1095), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3221), 4, anon_sym_COMMA, - anon_sym_COLON, - [106873] = 6, - ACTIONS(3180), 1, anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, + anon_sym_RBRACK, + anon_sym_PIPE, + [104970] = 8, + ACTIONS(2924), 1, + anon_sym_async, + ACTIONS(2926), 1, + anon_sym_for, + ACTIONS(3394), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_RBRACE, + STATE(1851), 1, + sym_for_in_clause, + STATE(2335), 1, + aux_sym_dictionary_repeat1, + STATE(2673), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 2, + [104996] = 8, + ACTIONS(2924), 1, + anon_sym_async, + ACTIONS(2926), 1, + anon_sym_for, + ACTIONS(3398), 1, anon_sym_COMMA, - anon_sym_COLON, - [106894] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + ACTIONS(3400), 1, + anon_sym_RBRACE, + STATE(1851), 1, + sym_for_in_clause, + STATE(2370), 1, + aux_sym_dictionary_repeat1, + STATE(2746), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3482), 2, - anon_sym_RPAREN, + [105022] = 8, + ACTIONS(2924), 1, + anon_sym_async, + ACTIONS(2926), 1, + anon_sym_for, + ACTIONS(3402), 1, anon_sym_COMMA, - [106915] = 4, - ACTIONS(3484), 1, + ACTIONS(3404), 1, + anon_sym_RBRACE, + STATE(1851), 1, + sym_for_in_clause, + STATE(2397), 1, + aux_sym_dictionary_repeat1, + STATE(2698), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105048] = 4, + ACTIONS(3247), 1, anon_sym_DOT, - STATE(1940), 1, + STATE(1875), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3222), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3146), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - [106932] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [105066] = 7, + ACTIONS(2688), 1, + sym_identifier, + ACTIONS(3406), 1, + anon_sym_DOT, + ACTIONS(3408), 1, + anon_sym___future__, + STATE(2231), 1, + aux_sym_import_prefix_repeat1, + STATE(2311), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 6, - sym__newline, - anon_sym_SEMI, + STATE(2639), 2, + sym_relative_import, + sym_dotted_name, + [105090] = 4, + ACTIONS(3283), 1, anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106945] = 3, + STATE(1840), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3488), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, + ACTIONS(3146), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [106960] = 4, - ACTIONS(3490), 1, - anon_sym_COMMA, - STATE(1929), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3492), 4, - anon_sym_if, + [105108] = 8, + ACTIONS(2924), 1, anon_sym_async, + ACTIONS(2926), 1, anon_sym_for, + ACTIONS(3410), 1, + anon_sym_COMMA, + ACTIONS(3412), 1, anon_sym_RBRACE, - [106977] = 3, + STATE(1851), 1, + sym_for_in_clause, + STATE(2424), 1, + aux_sym_dictionary_repeat1, + STATE(2615), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [106992] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + [105134] = 8, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3212), 1, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, anon_sym_or, + ACTIONS(3414), 1, + anon_sym_COMMA, + ACTIONS(3416), 1, + anon_sym_COLON, + STATE(2436), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1457), 2, + [105160] = 8, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3418), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [107013] = 3, + ACTIONS(3420), 1, + anon_sym_COLON, + STATE(2351), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3496), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3468), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [105186] = 5, + ACTIONS(2946), 1, anon_sym_as, - anon_sym_PIPE, - [107028] = 4, - ACTIONS(3500), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(2954), 1, + anon_sym_and, + ACTIONS(2956), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 4, + ACTIONS(3314), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [107045] = 2, + [105206] = 6, + ACTIONS(3325), 1, + anon_sym_RPAREN, + ACTIONS(3422), 1, + anon_sym_if, + ACTIONS(3425), 1, + anon_sym_async, + ACTIONS(3428), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 6, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(1873), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105228] = 8, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3431), 1, anon_sym_COMMA, + ACTIONS(3433), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107058] = 2, + STATE(2291), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 6, + [105254] = 4, + ACTIONS(3247), 1, anon_sym_DOT, + STATE(1882), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3172), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [107071] = 7, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3506), 1, + [105272] = 8, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3418), 1, anon_sym_COMMA, - ACTIONS(3508), 1, + ACTIONS(3435), 1, anon_sym_COLON, - ACTIONS(3510), 1, - anon_sym_RBRACK, - ACTIONS(3512), 1, - anon_sym_PIPE, - STATE(2324), 1, - aux_sym_type_parameter_repeat1, + STATE(2351), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107094] = 3, - ACTIONS(3514), 1, - anon_sym_LPAREN, + [105298] = 8, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3418), 1, + anon_sym_COMMA, + ACTIONS(3437), 1, + anon_sym_COLON, + STATE(2351), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 5, - anon_sym_COMMA, + [105324] = 8, + ACTIONS(3087), 1, anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3418), 1, + anon_sym_COMMA, + ACTIONS(3439), 1, anon_sym_COLON, - anon_sym_PIPE, - [107109] = 7, - ACTIONS(3516), 1, + STATE(2351), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105350] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2072), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3518), 1, anon_sym_as, - ACTIONS(3520), 1, anon_sym_if, - ACTIONS(3522), 1, - anon_sym_COLON, - STATE(2046), 1, - aux_sym_case_clause_repeat1, - STATE(2756), 1, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [105364] = 6, + ACTIONS(2883), 1, + anon_sym_async, + ACTIONS(2885), 1, + anon_sym_for, + ACTIONS(3371), 1, + anon_sym_RBRACK, + ACTIONS(3379), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1831), 3, + sym_for_in_clause, sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105386] = 6, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_for, + ACTIONS(3301), 1, + anon_sym_if, + ACTIONS(3371), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107132] = 4, - ACTIONS(3526), 1, - anon_sym_PIPE, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, + STATE(1873), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105408] = 4, + ACTIONS(3441), 1, + anon_sym_DOT, + STATE(1882), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, + ACTIONS(3158), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [105426] = 7, + ACTIONS(3303), 1, + anon_sym_as, + ACTIONS(3305), 1, anon_sym_if, - anon_sym_COLON, - [107149] = 6, - ACTIONS(3176), 1, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3309), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + ACTIONS(3444), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3528), 2, + ACTIONS(3350), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107170] = 4, - ACTIONS(3530), 1, + [105450] = 4, + ACTIONS(3448), 1, anon_sym_COMMA, - STATE(1966), 1, + STATE(1884), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 4, + ACTIONS(3446), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [107187] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3534), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107200] = 2, + [105467] = 6, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, + ACTIONS(3122), 1, + anon_sym_and, + ACTIONS(3124), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3451), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [107213] = 2, + anon_sym_RBRACE, + [105488] = 4, + ACTIONS(3455), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, + STATE(1886), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3453), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [105505] = 7, + ACTIONS(3458), 1, anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3460), 1, anon_sym_COMMA, + ACTIONS(3462), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107226] = 5, - ACTIONS(3538), 1, - anon_sym_DOT, - ACTIONS(3540), 1, - anon_sym_COLON, - ACTIONS(3542), 1, + ACTIONS(3464), 1, + anon_sym_RBRACK, + ACTIONS(3466), 1, anon_sym_PIPE, + STATE(2371), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [107245] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3546), 1, - anon_sym_BSLASH, - ACTIONS(3544), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107262] = 2, + [105528] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 6, + ACTIONS(3468), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107275] = 2, + [105541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 6, + ACTIONS(3192), 6, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [107288] = 6, - ACTIONS(3005), 1, + anon_sym_RBRACE, + [105554] = 6, + ACTIONS(3303), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3305), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3309), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3550), 2, - sym__newline, - anon_sym_SEMI, - [107309] = 4, - ACTIONS(3552), 1, + ACTIONS(3470), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1978), 1, - aux_sym_for_in_clause_repeat1, + [105575] = 6, + ACTIONS(2893), 1, + anon_sym_as, + ACTIONS(2895), 1, + anon_sym_if, + ACTIONS(2897), 1, + anon_sym_and, + ACTIONS(2899), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 4, + ACTIONS(3170), 2, + sym__newline, + anon_sym_SEMI, + [105596] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107326] = 6, - ACTIONS(3163), 1, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3472), 2, + anon_sym_COMMA, + anon_sym_COLON, + [105617] = 6, + ACTIONS(3303), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3305), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3309), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, + ACTIONS(3474), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [107347] = 6, - ACTIONS(3202), 1, + [105638] = 6, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 2, + ACTIONS(1431), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107368] = 6, - ACTIONS(3005), 1, + [105659] = 6, + ACTIONS(3478), 1, + anon_sym_DOT, + ACTIONS(3480), 1, + anon_sym_COLON, + ACTIONS(3482), 1, + anon_sym_EQ, + ACTIONS(3484), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3476), 2, + sym__newline, + anon_sym_SEMI, + [105680] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3009), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3093), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3556), 2, - sym__newline, - anon_sym_SEMI, - [107389] = 4, - ACTIONS(3558), 1, + ACTIONS(3470), 2, anon_sym_COMMA, - STATE(1969), 1, + anon_sym_COLON, + [105701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3488), 1, + anon_sym_BSLASH, + ACTIONS(3486), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [105718] = 4, + ACTIONS(3492), 1, + anon_sym_COMMA, + STATE(1928), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 4, + ACTIONS(3490), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [107406] = 2, + [105735] = 4, + ACTIONS(3496), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3494), 4, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [107419] = 6, - ACTIONS(3163), 1, - anon_sym_as, - ACTIONS(3165), 1, anon_sym_if, - ACTIONS(3169), 1, - anon_sym_and, - ACTIONS(3171), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107440] = 4, - ACTIONS(3562), 1, + anon_sym_async, + anon_sym_for, + [105752] = 4, + ACTIONS(3498), 1, anon_sym_COMMA, - STATE(1908), 1, + STATE(1947), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3492), 4, - anon_sym_RPAREN, + ACTIONS(3500), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [107457] = 4, - ACTIONS(3526), 1, - anon_sym_PIPE, - STATE(1980), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACK, + [105769] = 4, + ACTIONS(3502), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 4, - anon_sym_COMMA, + ACTIONS(995), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [105786] = 6, + ACTIONS(3087), 1, anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3474), 2, + anon_sym_COMMA, anon_sym_COLON, - [107474] = 4, - ACTIONS(3568), 1, - anon_sym_AT, + [105807] = 6, + ACTIONS(3303), 1, + anon_sym_as, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1934), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3566), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [107491] = 2, + ACTIONS(3504), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [105828] = 6, + ACTIONS(3303), 1, + anon_sym_as, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3506), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107504] = 6, - ACTIONS(3180), 1, + [105849] = 6, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3122), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3124), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3482), 2, + ACTIONS(3508), 2, anon_sym_COMMA, - anon_sym_COLON, - [107525] = 3, + anon_sym_RBRACE, + [105870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3571), 2, + ACTIONS(3510), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3468), 4, + ACTIONS(3221), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [107540] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3502), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + [105885] = 4, + ACTIONS(3514), 1, anon_sym_PIPE, - [107553] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, - anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + STATE(1960), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1449), 2, + ACTIONS(3512), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [107574] = 4, - ACTIONS(3484), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [105902] = 4, + ACTIONS(3516), 1, anon_sym_DOT, - STATE(1965), 1, + STATE(1957), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 4, + ACTIONS(3172), 4, sym__newline, anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - [107591] = 6, - ACTIONS(3202), 1, + [105919] = 6, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(3170), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107612] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3575), 1, - anon_sym_BSLASH, - ACTIONS(3573), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107629] = 7, - ACTIONS(3504), 1, + [105940] = 5, + ACTIONS(3478), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3480), 1, anon_sym_COLON, - ACTIONS(3512), 1, + ACTIONS(3484), 1, anon_sym_PIPE, - ACTIONS(3577), 1, - anon_sym_COMMA, - ACTIONS(3579), 1, - anon_sym_RBRACK, - STATE(2284), 1, - aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107652] = 6, - ACTIONS(3163), 1, + ACTIONS(3518), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [105959] = 6, + ACTIONS(3303), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3305), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3309), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 2, + ACTIONS(3142), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [107673] = 4, - ACTIONS(3184), 1, + [105980] = 6, + ACTIONS(3303), 1, + anon_sym_as, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3309), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3015), 4, + ACTIONS(3520), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [106001] = 7, + ACTIONS(3458), 1, + anon_sym_DOT, + ACTIONS(3462), 1, anon_sym_COLON, - [107690] = 3, + ACTIONS(3466), 1, + anon_sym_PIPE, + ACTIONS(3522), 1, + anon_sym_COMMA, + ACTIONS(3524), 1, + anon_sym_RBRACK, + STATE(2256), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3468), 4, + [106024] = 4, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2910), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [107705] = 2, + anon_sym_if, + anon_sym_COLON, + [106041] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, + ACTIONS(3192), 6, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [107718] = 6, - ACTIONS(3176), 1, + [106054] = 6, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3140), 1, anon_sym_or, - ACTIONS(3188), 1, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3152), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 2, - anon_sym_RPAREN, + ACTIONS(1449), 2, anon_sym_COMMA, - [107739] = 6, - ACTIONS(3163), 1, + anon_sym_RBRACK, + [106075] = 6, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3165), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3169), 1, + ACTIONS(3122), 1, anon_sym_and, - ACTIONS(3171), 1, + ACTIONS(3124), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 2, + ACTIONS(3526), 2, anon_sym_COMMA, anon_sym_RBRACE, - [107760] = 7, - ACTIONS(3504), 1, + [106096] = 4, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_PIPE, - ACTIONS(3589), 1, - anon_sym_COMMA, - ACTIONS(3591), 1, - anon_sym_RBRACK, - STATE(2350), 1, - aux_sym_type_parameter_repeat1, + STATE(1908), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107783] = 4, - ACTIONS(3593), 1, + ACTIONS(3146), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1993), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3498), 4, + anon_sym_as, + [106113] = 6, + ACTIONS(2893), 1, + anon_sym_as, + ACTIONS(2895), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107800] = 2, + ACTIONS(2897), 1, + anon_sym_and, + ACTIONS(2899), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 6, + ACTIONS(3528), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107813] = 6, - ACTIONS(3202), 1, + [106134] = 6, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3595), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107834] = 4, - ACTIONS(3599), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107851] = 4, - ACTIONS(3601), 1, + ACTIONS(3508), 2, anon_sym_COMMA, - STATE(1951), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3492), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, - [107868] = 2, + [106155] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, + ACTIONS(3530), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107881] = 4, - ACTIONS(3605), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3603), 4, - anon_sym_RPAREN, + [106168] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [107898] = 2, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3532), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107911] = 5, - ACTIONS(3608), 1, - anon_sym_DOT, - ACTIONS(3610), 1, - anon_sym_COLON, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3536), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [107930] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3616), 1, - anon_sym_BSLASH, - ACTIONS(3614), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3620), 1, - anon_sym_BSLASH, - ACTIONS(3618), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107964] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3622), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3311), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [106189] = 6, + ACTIONS(3303), 1, anon_sym_as, - anon_sym_PIPE, - [107979] = 4, - ACTIONS(3624), 1, - anon_sym_COMMA, - STATE(1994), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(995), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107996] = 6, - ACTIONS(3176), 1, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3178), 1, + ACTIONS(3309), 1, anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, + ACTIONS(3472), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108017] = 4, - ACTIONS(3626), 1, + [106210] = 7, + ACTIONS(3458), 1, anon_sym_DOT, - STATE(1965), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3197), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [108034] = 4, - ACTIONS(3629), 1, + ACTIONS(3462), 1, + anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_PIPE, + ACTIONS(3534), 1, anon_sym_COMMA, - STATE(1969), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3536), 1, + anon_sym_RBRACK, + STATE(2443), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, + [106233] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [108051] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1673), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108064] = 2, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3538), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108077] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - STATE(1969), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3603), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [108094] = 2, + [106254] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 6, + ACTIONS(3540), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108107] = 6, - ACTIONS(3202), 1, + [106267] = 6, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, - ACTIONS(3210), 1, + ACTIONS(3152), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3554), 2, + ACTIONS(3542), 2, anon_sym_COMMA, anon_sym_RBRACK, - [108128] = 4, - ACTIONS(3526), 1, - anon_sym_PIPE, - STATE(1933), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3638), 4, + [106288] = 4, + ACTIONS(3546), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [108145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3642), 1, - anon_sym_BSLASH, - ACTIONS(3640), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108162] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + STATE(1884), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(3544), 4, anon_sym_RPAREN, - anon_sym_COMMA, - [108183] = 7, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3644), 1, - anon_sym_COMMA, - ACTIONS(3646), 1, - anon_sym_as, - ACTIONS(3648), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108206] = 4, - ACTIONS(3650), 1, + anon_sym_async, + anon_sym_for, + [106305] = 4, + ACTIONS(3548), 1, anon_sym_COMMA, - STATE(1954), 1, + STATE(1940), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3532), 4, - anon_sym_RPAREN, + ACTIONS(3500), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [108223] = 7, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3646), 1, - anon_sym_as, - ACTIONS(3652), 1, - anon_sym_COMMA, - ACTIONS(3654), 1, - anon_sym_COLON, + anon_sym_RBRACE, + [106322] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108246] = 4, - ACTIONS(3656), 1, + ACTIONS(3550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3221), 4, anon_sym_COMMA, - STATE(1993), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [106337] = 4, + ACTIONS(3552), 1, + anon_sym_COMMA, + STATE(1963), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3597), 4, + ACTIONS(3490), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [108263] = 4, - ACTIONS(3658), 1, + [106354] = 4, + ACTIONS(3554), 1, anon_sym_COMMA, - STATE(2002), 1, + STATE(1956), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1299), 4, + ACTIONS(1297), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108280] = 4, - ACTIONS(3660), 1, - anon_sym_PIPE, - STATE(1980), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, + [106371] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3472), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [108297] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, - anon_sym_if, - ACTIONS(3009), 1, - anon_sym_and, - ACTIONS(3011), 1, - anon_sym_or, + ACTIONS(3558), 1, + anon_sym_BSLASH, + ACTIONS(3556), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106388] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3214), 2, + ACTIONS(1648), 6, sym__newline, anon_sym_SEMI, - [108318] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106401] = 6, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3118), 1, anon_sym_if, + ACTIONS(3122), 1, + anon_sym_and, + ACTIONS(3124), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 2, - anon_sym_RPAREN, + ACTIONS(3194), 2, anon_sym_COMMA, - [108339] = 2, + anon_sym_RBRACE, + [106422] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 6, + ACTIONS(2877), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108352] = 2, + [106435] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 6, + ACTIONS(3560), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108365] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + [106448] = 4, + ACTIONS(3562), 1, + anon_sym_COMMA, + STATE(1944), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 2, - anon_sym_RPAREN, + ACTIONS(3490), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106465] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3566), 1, + anon_sym_BSLASH, + ACTIONS(3564), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106482] = 4, + ACTIONS(3568), 1, anon_sym_COMMA, - [108386] = 6, - ACTIONS(3538), 1, - anon_sym_DOT, - ACTIONS(3540), 1, - anon_sym_COLON, - ACTIONS(3542), 1, - anon_sym_PIPE, - ACTIONS(3667), 1, - anon_sym_EQ, + STATE(1946), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 2, - sym__newline, - anon_sym_SEMI, - [108407] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(3494), 4, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3480), 2, - anon_sym_RPAREN, + ACTIONS(3570), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3354), 4, anon_sym_COMMA, - [108428] = 2, - ACTIONS(3), 2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [106514] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3636), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108441] = 2, - ACTIONS(3), 2, + ACTIONS(3574), 1, + anon_sym_BSLASH, + ACTIONS(3572), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106531] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3548), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3578), 1, + anon_sym_BSLASH, + ACTIONS(3576), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106548] = 4, + ACTIONS(3580), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108454] = 2, + STATE(1946), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108467] = 6, - ACTIONS(3180), 1, + ACTIONS(3544), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106565] = 6, + ACTIONS(3303), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3305), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3309), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 2, + ACTIONS(3451), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [108488] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, - anon_sym_as, - ACTIONS(3190), 1, - anon_sym_if, + [106586] = 4, + ACTIONS(3582), 1, + anon_sym_COMMA, + STATE(1946), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108509] = 4, - ACTIONS(3671), 1, + ACTIONS(3446), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106603] = 4, + ACTIONS(3585), 1, anon_sym_COMMA, - STATE(1993), 1, + STATE(1967), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 4, + ACTIONS(3494), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [108526] = 4, - ACTIONS(3674), 1, - anon_sym_COMMA, - STATE(1994), 1, - aux_sym__patterns_repeat1, + [106620] = 6, + ACTIONS(3303), 1, + anon_sym_as, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108543] = 4, + ACTIONS(3170), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [106641] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3679), 1, + ACTIONS(3589), 1, anon_sym_BSLASH, - ACTIONS(3677), 5, + ACTIONS(3587), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [108560] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, + [106658] = 6, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3190), 1, + ACTIONS(2895), 1, anon_sym_if, + ACTIONS(2897), 1, + anon_sym_and, + ACTIONS(2899), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108581] = 6, - ACTIONS(3608), 1, - anon_sym_DOT, - ACTIONS(3610), 1, - anon_sym_COLON, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(3683), 1, - anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(3591), 2, + sym__newline, + anon_sym_SEMI, + [106679] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3681), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108602] = 7, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_PIPE, - ACTIONS(3685), 1, - anon_sym_COMMA, - ACTIONS(3687), 1, - anon_sym_RBRACK, - STATE(2280), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(3595), 1, + anon_sym_BSLASH, + ACTIONS(3593), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [106696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108625] = 6, - ACTIONS(3202), 1, - anon_sym_and, - ACTIONS(3208), 1, + ACTIONS(3597), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3354), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3210), 1, - anon_sym_if, - ACTIONS(3212), 1, - anon_sym_or, + anon_sym_PIPE, + [106711] = 4, + ACTIONS(3514), 1, + anon_sym_PIPE, + STATE(1907), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 2, + ACTIONS(3599), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [108646] = 6, - ACTIONS(3176), 1, - anon_sym_and, - ACTIONS(3178), 1, - anon_sym_or, - ACTIONS(3188), 1, anon_sym_as, - ACTIONS(3190), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108667] = 4, + anon_sym_COLON, + [106728] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3691), 1, + ACTIONS(3603), 1, anon_sym_BSLASH, - ACTIONS(3689), 5, + ACTIONS(3601), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [108684] = 4, - ACTIONS(3693), 1, + [106745] = 4, + ACTIONS(3605), 1, + anon_sym_COMMA, + STATE(1899), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3500), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106762] = 4, + ACTIONS(3607), 1, anon_sym_COMMA, - STATE(2002), 1, + STATE(1956), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 4, + ACTIONS(3142), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108701] = 2, + [106779] = 4, + ACTIONS(3610), 1, + anon_sym_DOT, + STATE(1957), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3158), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [106796] = 7, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3613), 1, anon_sym_COMMA, + ACTIONS(3615), 1, + anon_sym_as, + ACTIONS(3617), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108714] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 5, + [106819] = 3, + STATE(1907), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3619), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108726] = 6, - ACTIONS(3180), 1, + [106834] = 4, + ACTIONS(3621), 1, + anon_sym_PIPE, + STATE(1960), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3619), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3698), 1, - anon_sym_else, + anon_sym_COLON, + [106851] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108746] = 6, - ACTIONS(3180), 1, + ACTIONS(3624), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106864] = 6, + ACTIONS(3303), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3305), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3307), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3309), 1, anon_sym_or, - ACTIONS(3700), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108766] = 2, + ACTIONS(3538), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [106885] = 4, + ACTIONS(3626), 1, + anon_sym_COMMA, + STATE(1967), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108778] = 3, - ACTIONS(3702), 1, - anon_sym_LPAREN, + ACTIONS(3544), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 4, + ACTIONS(3628), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3354), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [108792] = 4, - ACTIONS(3704), 1, - anon_sym_PIPE, - STATE(2111), 1, - aux_sym_union_pattern_repeat1, + [106917] = 6, + ACTIONS(3303), 1, + anon_sym_as, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + ACTIONS(3508), 2, anon_sym_RPAREN, anon_sym_COMMA, + [106938] = 6, + ACTIONS(3303), 1, anon_sym_as, - [108808] = 2, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, + ACTIONS(3526), 2, anon_sym_RPAREN, anon_sym_COMMA, + [106959] = 4, + ACTIONS(3630), 1, + anon_sym_COMMA, + STATE(1967), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3446), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [108820] = 2, + anon_sym_RBRACK, + [106976] = 6, + ACTIONS(3303), 1, + anon_sym_as, + ACTIONS(3305), 1, + anon_sym_if, + ACTIONS(3307), 1, + anon_sym_and, + ACTIONS(3309), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, - anon_sym_DOT, + ACTIONS(3532), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [106997] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3633), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [108832] = 2, + [107010] = 3, + ACTIONS(3635), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 5, + ACTIONS(3221), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108844] = 6, - ACTIONS(3710), 1, - anon_sym_LBRACE, - ACTIONS(3712), 1, - anon_sym_RBRACE, - ACTIONS(3714), 1, - aux_sym_format_specifier_token1, - STATE(2117), 1, - aux_sym_format_specifier_repeat1, - STATE(2465), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [108864] = 2, + [107025] = 7, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3615), 1, + anon_sym_as, + ACTIONS(3637), 1, + anon_sym_COMMA, + ACTIONS(3639), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 5, + [107048] = 7, + ACTIONS(3641), 1, anon_sym_COMMA, + ACTIONS(3643), 1, anon_sym_as, + ACTIONS(3645), 1, anon_sym_if, + ACTIONS(3647), 1, anon_sym_COLON, - anon_sym_PIPE, - [108876] = 2, + STATE(2005), 1, + aux_sym_case_clause_repeat1, + STATE(2749), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [108888] = 4, - ACTIONS(3718), 1, + [107071] = 4, + ACTIONS(3514), 1, anon_sym_PIPE, - STATE(2072), 1, + STATE(1907), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, + ACTIONS(3649), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [108904] = 4, - ACTIONS(3720), 1, - anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1299), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [108920] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, + anon_sym_COLON, + [107088] = 6, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3140), 1, anon_sym_or, - ACTIONS(3722), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108940] = 2, + ACTIONS(3150), 1, + anon_sym_as, + ACTIONS(3152), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 5, + ACTIONS(3526), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [107109] = 6, + ACTIONS(3087), 1, anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108952] = 2, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 5, + ACTIONS(3651), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [108964] = 5, - ACTIONS(3728), 1, + [107130] = 4, + ACTIONS(3653), 1, anon_sym_COMMA, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(2282), 1, - aux_sym_dict_pattern_repeat1, + STATE(1976), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, + ACTIONS(2845), 4, anon_sym_COLON, - anon_sym_PIPE, - [108982] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3732), 5, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107147] = 6, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3150), 1, anon_sym_as, + ACTIONS(3152), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108994] = 4, - ACTIONS(3734), 1, - anon_sym_PIPE, - STATE(2060), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, + ACTIONS(3142), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - [109010] = 6, - ACTIONS(3681), 1, - anon_sym_COMMA, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, + [107168] = 7, + ACTIONS(1565), 1, + anon_sym_LBRACK, + ACTIONS(3656), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, anon_sym_COLON, - ACTIONS(3740), 1, - anon_sym_EQ, - ACTIONS(3742), 1, - anon_sym_PIPE, + STATE(823), 1, + sym_class_definition_scope, + STATE(2236), 1, + sym_type_parameter, + STATE(2731), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109030] = 2, + [107191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3197), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3660), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3221), 4, anon_sym_COMMA, anon_sym_as, - [109042] = 6, - ACTIONS(3180), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [107206] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3744), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109062] = 2, + ACTIONS(3142), 2, + anon_sym_COMMA, + anon_sym_COLON, + [107227] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 5, + ACTIONS(3192), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109074] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3748), 1, + [107240] = 7, + ACTIONS(1565), 1, + anon_sym_LBRACK, + ACTIONS(3656), 1, + anon_sym_LPAREN, + ACTIONS(3662), 1, anon_sym_COLON, + STATE(732), 1, + sym_class_definition_scope, + STATE(2457), 1, + sym_type_parameter, + STATE(2682), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107263] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109094] = 2, + ACTIONS(3664), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107276] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 5, + ACTIONS(3666), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109106] = 2, + [107288] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 5, + ACTIONS(2877), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109118] = 2, + [107300] = 3, + STATE(2049), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 5, - anon_sym_DOT, + ACTIONS(3619), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [109130] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + anon_sym_RBRACE, + [107314] = 4, + ACTIONS(3668), 1, + anon_sym_PIPE, + STATE(1987), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 2, - sym__newline, - anon_sym_SEMI, - [109148] = 6, - ACTIONS(3180), 1, + ACTIONS(3619), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3754), 1, - anon_sym_else, + anon_sym_RBRACE, + [107330] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3671), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACE, + [107342] = 4, + ACTIONS(3673), 1, + anon_sym_PIPE, + STATE(2025), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109168] = 6, - ACTIONS(3756), 1, + ACTIONS(3512), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [107358] = 6, + ACTIONS(3675), 1, anon_sym_COLON, - ACTIONS(3758), 1, + ACTIONS(3677), 1, anon_sym_EQ, - ACTIONS(3760), 1, + ACTIONS(3679), 1, anon_sym_RBRACE, - ACTIONS(3762), 1, + ACTIONS(3681), 1, sym_type_conversion, - STATE(2792), 1, + STATE(2780), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109188] = 2, + [107378] = 6, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3683), 1, + anon_sym_as, + ACTIONS(3685), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 5, + [107398] = 5, + ACTIONS(3687), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3689), 1, + anon_sym_RBRACE, + STATE(2456), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3221), 2, anon_sym_COLON, anon_sym_PIPE, - [109200] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + [107416] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3691), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3752), 2, - sym__newline, - anon_sym_SEMI, - [109218] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + [107436] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3693), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [107448] = 5, + ACTIONS(3478), 1, + anon_sym_DOT, + ACTIONS(3480), 1, + anon_sym_COLON, + ACTIONS(3484), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 2, + ACTIONS(3695), 2, sym__newline, anon_sym_SEMI, - [109236] = 2, + [107466] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, + ACTIONS(3671), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109248] = 6, - ACTIONS(3768), 1, - anon_sym_LBRACE, - ACTIONS(3771), 1, - anon_sym_RBRACE, - ACTIONS(3773), 1, - aux_sym_format_specifier_token1, - STATE(2039), 1, - aux_sym_format_specifier_repeat1, - STATE(2465), 1, - sym_interpolation, - ACTIONS(5), 2, + anon_sym_COLON, + anon_sym_PIPE, + [107478] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3697), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109268] = 2, + [107498] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 5, + ACTIONS(3699), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109280] = 2, + [107510] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 5, + ACTIONS(3701), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [109292] = 2, + [107522] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, + ACTIONS(3633), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107534] = 5, + ACTIONS(3703), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3705), 1, anon_sym_RBRACE, - [109304] = 2, + STATE(2404), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3221), 2, anon_sym_COLON, anon_sym_PIPE, - [109316] = 5, - ACTIONS(3782), 1, - anon_sym_COMMA, - ACTIONS(3784), 1, - anon_sym_RBRACE, - STATE(2361), 1, - aux_sym_dict_pattern_repeat1, + [107552] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, + ACTIONS(1648), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109334] = 2, + [107564] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 5, + ACTIONS(3664), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [107576] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3560), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109346] = 6, - ACTIONS(2598), 1, + [107588] = 6, + ACTIONS(2538), 1, anon_sym_COLON, - ACTIONS(3520), 1, + ACTIONS(3645), 1, anon_sym_if, - ACTIONS(3788), 1, + ACTIONS(3707), 1, anon_sym_COMMA, - STATE(2164), 1, + STATE(2174), 1, aux_sym_case_clause_repeat1, - STATE(2662), 1, + STATE(2765), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109366] = 2, + [107608] = 3, + ACTIONS(3709), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 5, + ACTIONS(3221), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [109378] = 2, + [107622] = 4, + ACTIONS(3711), 1, + anon_sym_COMMA, + STATE(2007), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109390] = 2, + ACTIONS(3142), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [107638] = 4, + ACTIONS(3673), 1, + anon_sym_PIPE, + STATE(1989), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 5, + ACTIONS(3649), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109402] = 2, + anon_sym_as, + [107654] = 5, + ACTIONS(3373), 1, + sym_identifier, + STATE(2178), 1, + sym_dotted_name, + STATE(2425), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109414] = 6, - ACTIONS(3180), 1, + ACTIONS(3714), 2, + sym__newline, + anon_sym_SEMI, + [107672] = 6, + ACTIONS(3373), 1, + sym_identifier, + ACTIONS(3716), 1, + anon_sym_LPAREN, + STATE(2073), 1, + sym_dotted_name, + STATE(2155), 1, + sym_aliased_import, + STATE(2545), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107692] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3794), 1, - anon_sym_COLON, + ACTIONS(3718), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109434] = 4, - ACTIONS(3796), 1, - anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + [107712] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3232), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [109450] = 6, - ACTIONS(3180), 1, + ACTIONS(3720), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107724] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3799), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109470] = 6, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3801), 1, - anon_sym_LPAREN, - ACTIONS(3803), 1, + ACTIONS(3722), 1, anon_sym_COLON, - STATE(2468), 1, - sym_type_parameter, - STATE(2698), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109490] = 2, + [107744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 5, + ACTIONS(3446), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109502] = 6, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, anon_sym_if, - ACTIONS(3009), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107756] = 4, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3011), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3807), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109522] = 6, - ACTIONS(3180), 1, + ACTIONS(2910), 3, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3809), 1, anon_sym_COLON, + [107772] = 5, + ACTIONS(3724), 1, + anon_sym_COMMA, + ACTIONS(3726), 1, + anon_sym_RBRACE, + STATE(2269), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109542] = 4, - ACTIONS(3734), 1, + ACTIONS(3221), 2, + anon_sym_COLON, anon_sym_PIPE, - STATE(2023), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3638), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109558] = 3, - STATE(2023), 1, - aux_sym_union_pattern_repeat1, + [107790] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, + ACTIONS(3468), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109572] = 4, - ACTIONS(3811), 1, + [107802] = 5, + ACTIONS(3458), 1, + anon_sym_DOT, + ACTIONS(3462), 1, + anon_sym_COLON, + ACTIONS(3466), 1, anon_sym_PIPE, - STATE(2060), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, + ACTIONS(3518), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - [109588] = 2, + [107820] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 5, + ACTIONS(3540), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [109600] = 2, + [107832] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 5, + ACTIONS(3624), 5, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [109612] = 4, - ACTIONS(3718), 1, + [107844] = 4, + ACTIONS(3673), 1, anon_sym_PIPE, - STATE(2016), 1, + STATE(1989), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 3, + ACTIONS(3599), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109628] = 2, + [107860] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, + ACTIONS(3633), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109640] = 6, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3814), 1, - anon_sym_as, - ACTIONS(3816), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109660] = 3, - STATE(2016), 1, + [107872] = 3, + STATE(1989), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, + ACTIONS(3619), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [109674] = 6, - ACTIONS(3180), 1, + [107886] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3818), 1, - anon_sym_COLON, + ACTIONS(3728), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109694] = 6, - ACTIONS(3180), 1, + [107906] = 4, + ACTIONS(3730), 1, + anon_sym_PIPE, + STATE(2025), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3619), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, - anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3820), 1, - anon_sym_COLON, + [107922] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109714] = 3, - ACTIONS(3822), 1, + ACTIONS(3720), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107934] = 3, + ACTIONS(3733), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 4, - anon_sym_RPAREN, + ACTIONS(3221), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [109728] = 6, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(3824), 1, - anon_sym_EQ, - ACTIONS(3826), 1, anon_sym_RBRACE, - ACTIONS(3828), 1, - sym_type_conversion, - STATE(2769), 1, - sym_format_specifier, + [107948] = 6, + ACTIONS(3735), 1, + anon_sym_LBRACE, + ACTIONS(3737), 1, + anon_sym_RBRACE, + ACTIONS(3739), 1, + aux_sym_format_specifier_token1, + STATE(2054), 1, + aux_sym_format_specifier_repeat1, + STATE(2301), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [107968] = 3, + ACTIONS(3741), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109748] = 6, - ACTIONS(3180), 1, + ACTIONS(3221), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3182), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [107982] = 4, + ACTIONS(3743), 1, + anon_sym_PIPE, + STATE(2037), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3649), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [107998] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3830), 1, + ACTIONS(3314), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109768] = 4, - ACTIONS(3832), 1, - anon_sym_PIPE, - STATE(2072), 1, - aux_sym_union_pattern_repeat1, + [108018] = 5, + ACTIONS(3745), 1, + anon_sym_COMMA, + ACTIONS(3747), 1, + anon_sym_RBRACE, + STATE(2317), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [109784] = 2, + ACTIONS(3221), 2, + anon_sym_COLON, + anon_sym_PIPE, + [108036] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, + ACTIONS(3530), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109796] = 2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [108048] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3706), 5, + ACTIONS(3446), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [109808] = 6, - ACTIONS(3391), 1, - sym_identifier, - ACTIONS(3837), 1, - anon_sym_LPAREN, - STATE(2114), 1, - sym_dotted_name, - STATE(2218), 1, - sym_aliased_import, - STATE(2562), 1, - sym__import_list, + [108060] = 4, + ACTIONS(3749), 1, + anon_sym_COMMA, + STATE(2007), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109828] = 2, + ACTIONS(1297), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [108076] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3631), 5, - anon_sym_DOT, + ACTIONS(3751), 5, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, + [108088] = 4, + ACTIONS(3743), 1, anon_sym_PIPE, - [109840] = 2, + STATE(2047), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 5, - anon_sym_DOT, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109852] = 2, + anon_sym_as, + anon_sym_RBRACK, + [108104] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 5, + ACTIONS(3624), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [109864] = 5, - ACTIONS(3504), 1, + [108116] = 6, + ACTIONS(3735), 1, + anon_sym_LBRACE, + ACTIONS(3753), 1, + anon_sym_RBRACE, + ACTIONS(3755), 1, + aux_sym_format_specifier_token1, + STATE(2028), 1, + aux_sym_format_specifier_repeat1, + STATE(2301), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [108136] = 5, + ACTIONS(3458), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(3462), 1, anon_sym_COLON, - ACTIONS(3512), 1, + ACTIONS(3466), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3839), 2, + ACTIONS(3757), 2, anon_sym_COMMA, anon_sym_RBRACK, - [109882] = 6, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3801), 1, - anon_sym_LPAREN, - ACTIONS(3841), 1, - anon_sym_COLON, - STATE(2507), 1, - sym_type_parameter, - STATE(2794), 1, - sym_argument_list, + [108154] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3759), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109902] = 2, + [108174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 5, + ACTIONS(3446), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [109914] = 5, - ACTIONS(3843), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, anon_sym_RBRACE, - STATE(2335), 1, - aux_sym_dict_pattern_repeat1, + [108186] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, + ACTIONS(3761), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109932] = 2, + [108198] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, + ACTIONS(3530), 5, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [109944] = 2, + [108210] = 4, + ACTIONS(3743), 1, + anon_sym_PIPE, + STATE(2037), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3486), 5, - anon_sym_DOT, + ACTIONS(3599), 3, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [109956] = 3, - ACTIONS(3847), 1, - anon_sym_LPAREN, + [108226] = 3, + STATE(2037), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 4, + ACTIONS(3619), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [109970] = 2, + [108240] = 4, + ACTIONS(3763), 1, + anon_sym_PIPE, + STATE(2047), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3619), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [108256] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, + ACTIONS(3751), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [109982] = 4, - ACTIONS(3734), 1, + anon_sym_RBRACE, + [108268] = 4, + ACTIONS(3766), 1, anon_sym_PIPE, - STATE(2023), 1, + STATE(1987), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + ACTIONS(3512), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109998] = 2, + anon_sym_RBRACE, + [108284] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3768), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108304] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 5, + ACTIONS(3770), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [110010] = 6, - ACTIONS(3180), 1, anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3411), 1, anon_sym_COLON, + anon_sym_PIPE, + [108316] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110030] = 2, + ACTIONS(1567), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108328] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3636), 5, - anon_sym_DOT, + ACTIONS(3772), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [110042] = 6, - ACTIONS(3180), 1, + [108340] = 6, + ACTIONS(3774), 1, + anon_sym_LBRACE, + ACTIONS(3777), 1, + anon_sym_RBRACE, + ACTIONS(3779), 1, + aux_sym_format_specifier_token1, + STATE(2054), 1, + aux_sym_format_specifier_repeat1, + STATE(2301), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [108360] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3849), 1, + ACTIONS(3782), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110062] = 2, + [108380] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3784), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108400] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3534), 5, - anon_sym_DOT, + ACTIONS(3786), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [110074] = 4, - ACTIONS(3718), 1, - anon_sym_PIPE, - STATE(2016), 1, - aux_sym_union_pattern_repeat1, + [108412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + ACTIONS(3788), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [110090] = 6, - ACTIONS(3180), 1, - anon_sym_as, - ACTIONS(3182), 1, anon_sym_if, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3851), 1, anon_sym_COLON, + anon_sym_PIPE, + [108424] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110110] = 2, + ACTIONS(3790), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108436] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, - anon_sym_RPAREN, + ACTIONS(3192), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [110122] = 6, - ACTIONS(3180), 1, anon_sym_as, - ACTIONS(3182), 1, + [108448] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3853), 1, + ACTIONS(3792), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110142] = 2, + [108468] = 5, + ACTIONS(3373), 1, + sym_identifier, + STATE(2178), 1, + sym_dotted_name, + STATE(2425), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3502), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [110154] = 2, + ACTIONS(3794), 2, + sym__newline, + anon_sym_SEMI, + [108486] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2971), 5, - anon_sym_DOT, + ACTIONS(3126), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [110166] = 4, - ACTIONS(3184), 1, - anon_sym_and, - ACTIONS(3186), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3015), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110182] = 5, - ACTIONS(3538), 1, - anon_sym_DOT, - ACTIONS(3540), 1, - anon_sym_COLON, - ACTIONS(3542), 1, - anon_sym_PIPE, + anon_sym_RBRACE, + sym_type_conversion, + [108498] = 5, + ACTIONS(3373), 1, + sym_identifier, + STATE(2178), 1, + sym_dotted_name, + STATE(2425), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3855), 2, + ACTIONS(3794), 2, sym__newline, anon_sym_SEMI, - [110200] = 5, - ACTIONS(3504), 1, - anon_sym_DOT, - ACTIONS(3508), 1, + [108516] = 6, + ACTIONS(3675), 1, anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_PIPE, + ACTIONS(3796), 1, + anon_sym_EQ, + ACTIONS(3798), 1, + anon_sym_RBRACE, + ACTIONS(3800), 1, + sym_type_conversion, + STATE(2599), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [110218] = 2, + [108536] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 5, + ACTIONS(3751), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108548] = 6, + ACTIONS(3087), 1, anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3802), 1, anon_sym_COLON, - anon_sym_PIPE, - [110230] = 6, - ACTIONS(3180), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108568] = 6, + ACTIONS(2893), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(2895), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(2897), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(2899), 1, anon_sym_or, - ACTIONS(3859), 1, - anon_sym_else, + ACTIONS(3804), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110250] = 5, - ACTIONS(3608), 1, - anon_sym_DOT, - ACTIONS(3610), 1, + [108588] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3806), 1, anon_sym_COLON, - ACTIONS(3612), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3681), 2, - anon_sym_RPAREN, + [108608] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3808), 5, anon_sym_COMMA, - [110268] = 4, - ACTIONS(3704), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108620] = 4, + ACTIONS(3766), 1, anon_sym_PIPE, - STATE(2111), 1, + STATE(2049), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3638), 3, - anon_sym_RPAREN, + ACTIONS(3649), 3, anon_sym_COMMA, anon_sym_as, - [110284] = 3, - STATE(2111), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [108636] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3810), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108648] = 5, + ACTIONS(3814), 1, + anon_sym_COMMA, + ACTIONS(3816), 1, + anon_sym_as, + STATE(2118), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3812), 2, + sym__newline, + anon_sym_SEMI, + [108666] = 6, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3683), 1, + anon_sym_as, + ACTIONS(3818), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110298] = 2, + [108686] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 5, + ACTIONS(3820), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110310] = 5, - ACTIONS(3863), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RBRACE, - STATE(2292), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3311), 2, - anon_sym_COLON, - anon_sym_PIPE, - [110328] = 5, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3738), 1, + [108698] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3822), 1, anon_sym_COLON, - ACTIONS(3742), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 2, - anon_sym_COMMA, - anon_sym_EQ, - [110346] = 6, - ACTIONS(3182), 1, + [108718] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3814), 1, - anon_sym_as, - ACTIONS(3867), 1, + ACTIONS(3824), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110366] = 4, - ACTIONS(3704), 1, - anon_sym_PIPE, - STATE(2121), 1, - aux_sym_union_pattern_repeat1, + [108738] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, - anon_sym_RPAREN, + ACTIONS(2854), 5, anon_sym_COMMA, - anon_sym_as, - [110382] = 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108750] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 5, + ACTIONS(3826), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110394] = 2, + [108762] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 5, + ACTIONS(3828), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110406] = 5, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_as, - STATE(2217), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3873), 2, - sym__newline, - anon_sym_SEMI, - [110424] = 2, + [108774] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 5, + ACTIONS(3830), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110436] = 2, + [108786] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 5, + ACTIONS(3832), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110448] = 6, - ACTIONS(3710), 1, - anon_sym_LBRACE, - ACTIONS(3883), 1, - anon_sym_RBRACE, - ACTIONS(3885), 1, - aux_sym_format_specifier_token1, - STATE(2039), 1, - aux_sym_format_specifier_repeat1, - STATE(2465), 1, - sym_interpolation, - ACTIONS(5), 2, + [108798] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110468] = 2, + ACTIONS(2852), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [108810] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 5, + ACTIONS(3834), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110480] = 2, + [108822] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3836), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108842] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 5, + ACTIONS(3838), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110492] = 2, + [108854] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 5, + ACTIONS(3840), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110504] = 4, - ACTIONS(3891), 1, - anon_sym_PIPE, - STATE(2121), 1, - aux_sym_union_pattern_repeat1, + [108866] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3472), 3, - anon_sym_RPAREN, + ACTIONS(3842), 5, anon_sym_COMMA, anon_sym_as, - [110520] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108878] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 5, + ACTIONS(2845), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [110532] = 6, - ACTIONS(3180), 1, + [108890] = 6, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3182), 1, + ACTIONS(3089), 1, anon_sym_if, - ACTIONS(3184), 1, + ACTIONS(3091), 1, anon_sym_and, - ACTIONS(3186), 1, + ACTIONS(3093), 1, anon_sym_or, - ACTIONS(3894), 1, - anon_sym_else, + ACTIONS(3844), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110552] = 2, + [108910] = 6, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_if, + ACTIONS(3091), 1, + anon_sym_and, + ACTIONS(3093), 1, + anon_sym_or, + ACTIONS(3846), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110563] = 2, + [108930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3848), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [110574] = 2, + [108942] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3850), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [110585] = 2, + [108954] = 4, + ACTIONS(3766), 1, + anon_sym_PIPE, + STATE(2049), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + ACTIONS(3599), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110596] = 2, + anon_sym_RBRACE, + [108970] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3896), 4, + ACTIONS(3720), 5, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110607] = 2, + anon_sym_for, + anon_sym_RBRACE, + [108982] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3848), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110618] = 2, + [108993] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3649), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [109004] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3848), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110629] = 5, - ACTIONS(3898), 1, + [109015] = 5, + ACTIONS(3852), 1, anon_sym_case, - ACTIONS(3900), 1, + ACTIONS(3854), 1, sym__dedent, - STATE(2234), 1, + STATE(2223), 1, aux_sym__match_block_repeat1, - STATE(2567), 1, + STATE(2583), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110646] = 2, + [109032] = 4, + ACTIONS(3858), 1, + anon_sym_COMMA, + STATE(2160), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3856), 2, + sym__newline, + anon_sym_SEMI, + [109047] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, + ACTIONS(3810), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110657] = 2, + [109058] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 4, + ACTIONS(3693), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110668] = 2, + [109069] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, + ACTIONS(3671), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110679] = 2, + [109080] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 4, + ACTIONS(3699), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110690] = 2, + [109091] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3826), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110701] = 2, + [109102] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3701), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110712] = 2, + [109113] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, + ACTIONS(3828), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110723] = 2, + [109124] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3820), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110734] = 2, + [109135] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, + ACTIONS(3693), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110745] = 2, + [109146] = 4, + ACTIONS(3862), 1, + anon_sym_COMMA, + STATE(2181), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110756] = 2, + ACTIONS(3860), 2, + sym__newline, + anon_sym_SEMI, + [109161] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, + ACTIONS(3830), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110767] = 2, + [109172] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3850), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110778] = 2, + [109183] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, + ACTIONS(3834), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110789] = 2, + [109194] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3560), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [110800] = 2, + [109205] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, + ACTIONS(3840), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110811] = 2, + [109216] = 4, + ACTIONS(3245), 1, + anon_sym_COMMA, + STATE(2007), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110822] = 2, + ACTIONS(3864), 2, + sym__newline, + anon_sym_SEMI, + [109231] = 4, + ACTIONS(3868), 1, + anon_sym_COLON, + ACTIONS(3870), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3866), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110833] = 2, + [109246] = 4, + ACTIONS(3872), 1, + anon_sym_COMMA, + STATE(2181), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, + ACTIONS(3860), 2, + sym__newline, + anon_sym_SEMI, + [109261] = 5, + ACTIONS(3874), 1, + anon_sym_RPAREN, + ACTIONS(3876), 1, anon_sym_COMMA, + ACTIONS(3878), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110844] = 2, + STATE(2495), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + [109278] = 5, + ACTIONS(1565), 1, + anon_sym_LBRACK, + ACTIONS(3880), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_function_definition_scope, + STATE(2669), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109295] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3761), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110855] = 2, + [109306] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, + ACTIONS(3770), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110866] = 2, + [109317] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, + ACTIONS(3772), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110877] = 5, - ACTIONS(3902), 1, - anon_sym_RPAREN, - ACTIONS(3904), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_as, - STATE(2341), 1, - aux_sym_case_clause_repeat1, + [109328] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110894] = 5, - ACTIONS(3908), 1, + ACTIONS(3786), 4, anon_sym_COMMA, - ACTIONS(3910), 1, anon_sym_as, - ACTIONS(3912), 1, anon_sym_RBRACK, - STATE(2351), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [109339] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110911] = 4, - ACTIONS(3916), 1, + ACTIONS(3788), 4, anon_sym_COMMA, - STATE(2175), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [109350] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 2, - sym__newline, - anon_sym_SEMI, - [110926] = 4, - ACTIONS(3920), 1, + ACTIONS(3808), 4, anon_sym_COMMA, - STATE(2155), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [109361] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3918), 2, - sym__newline, - anon_sym_SEMI, - [110941] = 4, - ACTIONS(3924), 1, + ACTIONS(3790), 4, anon_sym_COMMA, - STATE(2175), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [109372] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3922), 2, - sym__newline, - anon_sym_SEMI, - [110956] = 5, - ACTIONS(3752), 1, + ACTIONS(3842), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [109383] = 5, + ACTIONS(3714), 1, anon_sym_RPAREN, - ACTIONS(3926), 1, + ACTIONS(3882), 1, sym_identifier, - STATE(2274), 1, + STATE(2479), 1, sym_dotted_name, - STATE(2606), 1, + STATE(2572), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110973] = 4, - ACTIONS(3263), 1, - anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3928), 2, - sym__newline, - anon_sym_SEMI, - [110988] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3930), 1, - anon_sym_RPAREN, - ACTIONS(3932), 1, - anon_sym_COMMA, - STATE(2285), 1, - aux_sym_case_clause_repeat1, + [109400] = 5, + ACTIONS(3852), 1, + anon_sym_case, + ACTIONS(3884), 1, + sym__dedent, + STATE(2154), 1, + aux_sym__match_block_repeat1, + STATE(2583), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111005] = 3, - ACTIONS(3518), 1, - anon_sym_as, + [109417] = 5, + ACTIONS(3675), 1, + anon_sym_COLON, + ACTIONS(3886), 1, + anon_sym_RBRACE, + ACTIONS(3888), 1, + sym_type_conversion, + STATE(2753), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 3, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [111018] = 2, + [109434] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 4, + ACTIONS(3832), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_PIPE, + anon_sym_RBRACE, + [109445] = 4, + ACTIONS(3892), 1, anon_sym_COLON, - [111029] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3938), 1, - anon_sym_RPAREN, - ACTIONS(3940), 1, - anon_sym_COMMA, - STATE(2410), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3894), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111046] = 4, - ACTIONS(3942), 1, + ACTIONS(3890), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2164), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_if, - anon_sym_COLON, - [111061] = 2, + [109460] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, - anon_sym_RPAREN, + ACTIONS(3810), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111072] = 2, + [109471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3826), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111083] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3764), 4, + [109482] = 5, + ACTIONS(3896), 1, anon_sym_COMMA, + ACTIONS(3898), 1, anon_sym_as, + ACTIONS(3900), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [111094] = 2, + STATE(2386), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111105] = 2, + [109499] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 4, + ACTIONS(3828), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111116] = 2, + [109510] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, + ACTIONS(3830), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111127] = 2, + [109521] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3778), 4, - anon_sym_RPAREN, + ACTIONS(3834), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111138] = 2, + [109532] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, + ACTIONS(3840), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111149] = 4, - ACTIONS(3947), 1, - anon_sym_DOT, - STATE(2173), 1, - aux_sym_import_prefix_repeat1, + [109543] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3945), 2, - anon_sym_import, - sym_identifier, - [111164] = 2, + ACTIONS(3540), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109554] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 4, + ACTIONS(3850), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111175] = 4, - ACTIONS(3952), 1, - anon_sym_COMMA, - STATE(2175), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3950), 2, - sym__newline, - anon_sym_SEMI, - [111190] = 2, + [109565] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3726), 4, - anon_sym_RPAREN, + ACTIONS(3848), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111201] = 2, + [109576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, + ACTIONS(3850), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111212] = 2, + [109587] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3808), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111223] = 2, + [109598] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, + ACTIONS(3666), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111234] = 2, + [109609] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, + ACTIONS(3838), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111245] = 2, + [109620] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, + ACTIONS(3820), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111256] = 2, + [109631] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3842), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111267] = 2, + [109642] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 4, + ACTIONS(3832), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111278] = 3, + [109653] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3311), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3955), 2, + ACTIONS(3761), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [111291] = 2, + [109664] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, + ACTIONS(3699), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111302] = 2, + anon_sym_RBRACE, + [109675] = 4, + ACTIONS(3904), 1, + anon_sym_COMMA, + STATE(2175), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111313] = 2, + ACTIONS(3902), 2, + sym__newline, + anon_sym_SEMI, + [109690] = 5, + ACTIONS(3906), 1, + anon_sym_case, + ACTIONS(3909), 1, + sym__dedent, + STATE(2154), 1, + aux_sym__match_block_repeat1, + STATE(2583), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, + [109707] = 4, + ACTIONS(3814), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111324] = 2, + STATE(2110), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111335] = 2, + ACTIONS(3812), 2, + sym__newline, + anon_sym_SEMI, + [109722] = 5, + ACTIONS(1565), 1, + anon_sym_LBRACK, + ACTIONS(3880), 1, + anon_sym_LPAREN, + STATE(731), 1, + sym_function_definition_scope, + STATE(2669), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111346] = 5, - ACTIONS(3906), 1, + [109739] = 5, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3957), 1, + ACTIONS(3911), 1, anon_sym_RPAREN, - ACTIONS(3959), 1, + ACTIONS(3913), 1, anon_sym_COMMA, - STATE(2289), 1, + STATE(2265), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111363] = 5, - ACTIONS(3910), 1, + [109756] = 5, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(3961), 1, + ACTIONS(3915), 1, anon_sym_COMMA, - ACTIONS(3963), 1, + ACTIONS(3917), 1, anon_sym_RBRACK, - STATE(2290), 1, + STATE(2266), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111380] = 2, + [109773] = 4, + ACTIONS(3919), 1, + anon_sym_COMMA, + STATE(2007), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(1453), 2, + sym__newline, + anon_sym_SEMI, + [109788] = 4, + ACTIONS(3923), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + STATE(2160), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3921), 2, + sym__newline, + anon_sym_SEMI, + [109803] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2877), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [111391] = 2, + [109814] = 4, + ACTIONS(3858), 1, + anon_sym_COMMA, + STATE(2100), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3926), 2, + sym__newline, + anon_sym_SEMI, + [109829] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, + ACTIONS(3770), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111402] = 5, - ACTIONS(3906), 1, + anon_sym_RBRACE, + [109840] = 5, + ACTIONS(3878), 1, anon_sym_as, - ACTIONS(3965), 1, + ACTIONS(3928), 1, anon_sym_RPAREN, - ACTIONS(3967), 1, + ACTIONS(3930), 1, anon_sym_COMMA, - STATE(2294), 1, + STATE(2274), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111419] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2527), 1, - sym_parameters, - STATE(2553), 1, - sym_type_parameter, + [109857] = 5, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(3932), 1, + anon_sym_RPAREN, + ACTIONS(3934), 1, + anon_sym_COMMA, + STATE(2490), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111436] = 2, + [109874] = 3, + ACTIONS(3643), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 4, + ACTIONS(3936), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111447] = 4, - ACTIONS(3973), 1, + anon_sym_if, + anon_sym_COLON, + [109887] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3938), 4, anon_sym_COMMA, - STATE(2238), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [109898] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 2, - sym__newline, - anon_sym_SEMI, - [111462] = 5, - ACTIONS(3752), 1, - anon_sym_RPAREN, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, + ACTIONS(3772), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [109909] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111479] = 4, - ACTIONS(3973), 1, + ACTIONS(3786), 4, anon_sym_COMMA, - STATE(2239), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [109920] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3975), 2, - sym__newline, - anon_sym_SEMI, - [111494] = 4, - ACTIONS(3977), 1, + ACTIONS(3808), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [109931] = 5, + ACTIONS(3940), 1, + anon_sym_DOT, + ACTIONS(3942), 1, + anon_sym_COLON, + ACTIONS(3944), 1, + anon_sym_EQ, + ACTIONS(3946), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - [111509] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2600), 1, - sym_parameters, - STATE(2602), 1, - sym_type_parameter, + [109948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111526] = 5, - ACTIONS(3906), 1, + ACTIONS(3948), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3979), 1, + anon_sym_if, + anon_sym_COLON, + [109959] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3666), 4, anon_sym_RPAREN, - ACTIONS(3981), 1, anon_sym_COMMA, - STATE(2331), 1, + anon_sym_as, + anon_sym_PIPE, + [109970] = 4, + ACTIONS(3950), 1, + anon_sym_COMMA, + STATE(2174), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111543] = 5, - ACTIONS(3910), 1, - anon_sym_as, - ACTIONS(3983), 1, + ACTIONS(3936), 2, + anon_sym_if, + anon_sym_COLON, + [109985] = 4, + ACTIONS(3955), 1, + anon_sym_COMMA, + STATE(2229), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3953), 2, + sym__newline, + anon_sym_SEMI, + [110000] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3838), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3985), 1, - anon_sym_RBRACK, - STATE(2333), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110011] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111560] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(3989), 1, + ACTIONS(3810), 4, anon_sym_COMMA, - STATE(2340), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110022] = 3, + ACTIONS(3816), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111577] = 5, - ACTIONS(3681), 1, + ACTIONS(3957), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(3736), 1, + [110035] = 4, + ACTIONS(3961), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_COLON, - ACTIONS(3742), 1, - anon_sym_PIPE, + STATE(2179), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111594] = 2, + ACTIONS(3959), 2, + anon_sym_import, + sym_identifier, + [110050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3750), 4, + ACTIONS(3820), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111605] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(3991), 1, - sym__dedent, - STATE(2234), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + [110061] = 4, + ACTIONS(3966), 1, + anon_sym_COMMA, + STATE(2181), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111622] = 2, + ACTIONS(3964), 2, + sym__newline, + anon_sym_SEMI, + [110076] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3764), 4, + ACTIONS(3761), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111633] = 4, - ACTIONS(3263), 1, + [110087] = 4, + ACTIONS(3245), 1, anon_sym_COMMA, - STATE(2052), 1, + STATE(2007), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 2, + ACTIONS(3969), 2, sym__newline, anon_sym_SEMI, - [111648] = 2, + [110102] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3776), 4, - anon_sym_RPAREN, + ACTIONS(3826), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111659] = 2, + anon_sym_RBRACE, + [110113] = 5, + ACTIONS(3882), 1, + sym_identifier, + STATE(2215), 1, + sym_dotted_name, + STATE(2340), 1, + sym_aliased_import, + STATE(2683), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3780), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111670] = 2, + [110130] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 4, + ACTIONS(3842), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111681] = 2, + [110141] = 5, + ACTIONS(3882), 1, + sym_identifier, + STATE(2215), 1, + sym_dotted_name, + STATE(2340), 1, + sym_aliased_import, + STATE(2739), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3805), 4, - anon_sym_RPAREN, + [110158] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3788), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111692] = 5, - ACTIONS(3873), 1, + anon_sym_RBRACE, + [110169] = 5, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(3971), 1, anon_sym_RPAREN, - ACTIONS(3995), 1, + ACTIONS(3973), 1, anon_sym_COMMA, - ACTIONS(3997), 1, - anon_sym_as, - STATE(2454), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111709] = 5, - ACTIONS(3898), 1, - anon_sym_case, - ACTIONS(3999), 1, - sym__dedent, - STATE(2207), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + STATE(2478), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111726] = 4, - ACTIONS(4003), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, + [110186] = 5, + ACTIONS(1565), 1, + anon_sym_LBRACK, + ACTIONS(3975), 1, + anon_sym_LPAREN, + STATE(792), 1, + sym_function_definition_scope, + STATE(2785), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4001), 2, - sym__newline, - anon_sym_SEMI, - [111741] = 4, - ACTIONS(4005), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, + [110203] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4001), 2, - sym__newline, - anon_sym_SEMI, - [111756] = 4, - ACTIONS(3875), 1, + ACTIONS(3770), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2216), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3873), 2, - sym__newline, - anon_sym_SEMI, - [111771] = 2, + anon_sym_as, + anon_sym_PIPE, + [110214] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 4, + ACTIONS(3772), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111782] = 2, + [110225] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3861), 4, + ACTIONS(3786), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111793] = 2, + [110236] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3696), 4, + ACTIONS(3788), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111804] = 2, + [110247] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3871), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3468), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [111815] = 2, + [110258] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3879), 4, + ACTIONS(3790), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111826] = 5, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4007), 1, - anon_sym_RBRACE, - ACTIONS(4009), 1, - sym_type_conversion, - STATE(2744), 1, - sym_format_specifier, + [110269] = 4, + ACTIONS(3858), 1, + anon_sym_COMMA, + STATE(2160), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3977), 2, + sym__newline, + anon_sym_SEMI, + [110284] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111843] = 2, + ACTIONS(3979), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [110295] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, + ACTIONS(3828), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111854] = 2, + anon_sym_PIPE, + anon_sym_RBRACE, + [110306] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3832), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111865] = 4, - ACTIONS(4013), 1, - anon_sym_COLON, - ACTIONS(4015), 1, - anon_sym_EQ, + [110317] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, + ACTIONS(3666), 4, anon_sym_COMMA, - [111880] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110328] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 4, - anon_sym_RPAREN, + ACTIONS(3838), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111891] = 3, - ACTIONS(3877), 1, - anon_sym_as, + anon_sym_RBRACE, + [110339] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3830), 4, anon_sym_COMMA, - [111904] = 4, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110350] = 5, + ACTIONS(3518), 1, + anon_sym_EQ, + ACTIONS(3940), 1, + anon_sym_DOT, + ACTIONS(3942), 1, + anon_sym_COLON, + ACTIONS(3946), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4019), 2, - sym__newline, - anon_sym_SEMI, - [111919] = 5, - ACTIONS(3926), 1, - sym_identifier, - STATE(2214), 1, - sym_dotted_name, - STATE(2372), 1, - sym_aliased_import, - STATE(2706), 1, - sym__import_list, + [110367] = 5, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(3981), 1, + anon_sym_RPAREN, + ACTIONS(3983), 1, + anon_sym_COMMA, + STATE(2447), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111936] = 5, - ACTIONS(3926), 1, + [110384] = 5, + ACTIONS(3373), 1, sym_identifier, - STATE(2214), 1, + STATE(2073), 1, sym_dotted_name, - STATE(2372), 1, + STATE(2155), 1, sym_aliased_import, - STATE(2730), 1, + STATE(2555), 1, sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111953] = 2, + [110401] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 4, - anon_sym_RPAREN, + ACTIONS(3701), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111964] = 5, - ACTIONS(4024), 1, - anon_sym_case, - ACTIONS(4027), 1, - sym__dedent, - STATE(2234), 1, - aux_sym__match_block_repeat1, - STATE(2567), 1, - sym_case_clause, + anon_sym_RBRACE, + [110412] = 5, + ACTIONS(3898), 1, + anon_sym_as, + ACTIONS(3985), 1, + anon_sym_COMMA, + ACTIONS(3987), 1, + anon_sym_RBRACK, + STATE(2450), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111981] = 2, + [110429] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, - anon_sym_RPAREN, + ACTIONS(3834), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111992] = 2, + anon_sym_RBRACE, + [110440] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3671), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [112003] = 5, - ACTIONS(3766), 1, + [110451] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3221), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3989), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [110464] = 5, + ACTIONS(3794), 1, anon_sym_RPAREN, - ACTIONS(3926), 1, + ACTIONS(3882), 1, sym_identifier, - STATE(2274), 1, + STATE(2479), 1, sym_dotted_name, - STATE(2606), 1, + STATE(2572), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112020] = 4, - ACTIONS(3973), 1, - anon_sym_COMMA, - STATE(2245), 1, - aux_sym_global_statement_repeat1, + [110481] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4029), 2, - sym__newline, - anon_sym_SEMI, - [112035] = 4, - ACTIONS(3973), 1, + ACTIONS(3840), 4, anon_sym_COMMA, - STATE(2245), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4031), 2, - sym__newline, - anon_sym_SEMI, - [112050] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110492] = 5, + ACTIONS(3794), 1, + anon_sym_RPAREN, + ACTIONS(3882), 1, + sym_identifier, + STATE(2479), 1, + sym_dotted_name, + STATE(2572), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, + [110509] = 5, + ACTIONS(3812), 1, anon_sym_RPAREN, + ACTIONS(3991), 1, anon_sym_COMMA, + ACTIONS(3993), 1, anon_sym_as, - anon_sym_PIPE, - [112061] = 5, - ACTIONS(3906), 1, - anon_sym_as, - ACTIONS(4033), 1, - anon_sym_RPAREN, - ACTIONS(4035), 1, - anon_sym_COMMA, - STATE(2255), 1, - aux_sym_case_clause_repeat1, + STATE(2258), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112078] = 2, + [110526] = 4, + ACTIONS(3858), 1, + anon_sym_COMMA, + STATE(2197), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3995), 2, + sym__newline, + anon_sym_SEMI, + [110541] = 5, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(3997), 1, anon_sym_RPAREN, + ACTIONS(3999), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [112089] = 2, + STATE(2313), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3724), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [112100] = 5, - ACTIONS(3910), 1, + [110558] = 5, + ACTIONS(3898), 1, anon_sym_as, - ACTIONS(4037), 1, + ACTIONS(4001), 1, anon_sym_COMMA, - ACTIONS(4039), 1, + ACTIONS(4003), 1, anon_sym_RBRACK, - STATE(2266), 1, + STATE(2314), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112117] = 4, - ACTIONS(4043), 1, - anon_sym_COMMA, - STATE(2245), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4041), 2, - sym__newline, - anon_sym_SEMI, - [112132] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2585), 1, - sym_parameters, - STATE(2607), 1, - sym_type_parameter, + [110575] = 5, + ACTIONS(3675), 1, + anon_sym_COLON, + ACTIONS(4005), 1, + anon_sym_RBRACE, + ACTIONS(4007), 1, + sym_type_conversion, + STATE(2734), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112149] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2586), 1, - sym_parameters, - STATE(2609), 1, - sym_type_parameter, + [110592] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112166] = 5, - ACTIONS(3736), 1, + ACTIONS(1648), 4, anon_sym_DOT, - ACTIONS(3738), 1, anon_sym_COLON, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4046), 1, anon_sym_EQ, + anon_sym_PIPE, + [110603] = 5, + ACTIONS(3852), 1, + anon_sym_case, + ACTIONS(4009), 1, + sym__dedent, + STATE(2130), 1, + aux_sym__match_block_repeat1, + STATE(2583), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112183] = 5, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(4050), 1, - sym_type_conversion, - STATE(2720), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112200] = 5, - ACTIONS(3391), 1, - sym_identifier, - STATE(2114), 1, - sym_dotted_name, - STATE(2218), 1, - sym_aliased_import, - STATE(2522), 1, - sym__import_list, + [110620] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112217] = 5, - ACTIONS(3898), 1, + ACTIONS(3701), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110631] = 5, + ACTIONS(3852), 1, anon_sym_case, - ACTIONS(4052), 1, + ACTIONS(4011), 1, sym__dedent, - STATE(2131), 1, + STATE(2154), 1, aux_sym__match_block_repeat1, - STATE(2567), 1, + STATE(2583), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112234] = 4, - ACTIONS(4056), 1, - anon_sym_DOT, - STATE(2173), 1, - aux_sym_import_prefix_repeat1, + [110648] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4054), 2, - anon_sym_import, - sym_identifier, - [112249] = 4, - ACTIONS(3736), 1, + ACTIONS(3664), 4, anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [110659] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112263] = 4, - ACTIONS(3433), 1, + ACTIONS(3699), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3435), 1, - anon_sym_RBRACE, - STATE(2261), 1, - aux_sym_dictionary_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110670] = 4, + ACTIONS(4015), 1, + anon_sym_COMMA, + STATE(2229), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112277] = 4, - ACTIONS(2672), 1, + ACTIONS(4013), 2, + sym__newline, + anon_sym_SEMI, + [110685] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3693), 4, anon_sym_RPAREN, - ACTIONS(4060), 1, anon_sym_COMMA, - STATE(2373), 1, + anon_sym_as, + anon_sym_PIPE, + [110696] = 5, + ACTIONS(3878), 1, + anon_sym_as, + ACTIONS(4017), 1, + anon_sym_RPAREN, + ACTIONS(4019), 1, + anon_sym_COMMA, + STATE(2321), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112291] = 4, - ACTIONS(3391), 1, - sym_identifier, + [110713] = 4, + ACTIONS(4023), 1, + anon_sym_COMMA, STATE(2229), 1, - sym_dotted_name, - STATE(2432), 1, - sym_aliased_import, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112305] = 4, - ACTIONS(637), 1, + ACTIONS(4021), 2, sym__newline, - ACTIONS(4062), 1, anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [110728] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112319] = 4, - ACTIONS(3056), 1, + ACTIONS(3790), 4, anon_sym_COMMA, - ACTIONS(4064), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110739] = 4, + ACTIONS(4028), 1, + anon_sym_DOT, + STATE(2179), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112333] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(4066), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4026), 2, + anon_sym_import, + sym_identifier, + [110754] = 5, + ACTIONS(1565), 1, + anon_sym_LBRACK, + ACTIONS(3975), 1, + anon_sym_LPAREN, + STATE(729), 1, + sym_function_definition_scope, + STATE(2785), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112347] = 4, - ACTIONS(3528), 1, - anon_sym_RPAREN, - ACTIONS(4068), 1, + [110771] = 4, + ACTIONS(3291), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3293), 1, + anon_sym_RBRACK, + STATE(2304), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112361] = 4, - ACTIONS(1357), 1, - anon_sym_RBRACE, - ACTIONS(4071), 1, + [110785] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3041), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112375] = 4, - ACTIONS(4073), 1, + [110799] = 4, + ACTIONS(2845), 1, + anon_sym_RBRACK, + ACTIONS(4030), 1, anon_sym_COMMA, - ACTIONS(4075), 1, - anon_sym_in, - STATE(2486), 1, + STATE(2235), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112389] = 4, - ACTIONS(1339), 1, - anon_sym_RBRACE, - ACTIONS(4077), 1, - anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + [110813] = 4, + ACTIONS(3656), 1, + anon_sym_LPAREN, + ACTIONS(4033), 1, + anon_sym_COLON, + STATE(2641), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112403] = 4, - ACTIONS(3079), 1, - anon_sym_RPAREN, - ACTIONS(3081), 1, + [110827] = 4, + ACTIONS(3364), 1, anon_sym_COMMA, - STATE(2273), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3366), 1, + anon_sym_RBRACE, + STATE(2242), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112417] = 4, - ACTIONS(4079), 1, - anon_sym_RPAREN, - ACTIONS(4081), 1, - anon_sym_COMMA, - STATE(2275), 1, - aux_sym_argument_list_repeat1, + [110841] = 4, + ACTIONS(633), 1, + sym__newline, + ACTIONS(4035), 1, + anon_sym_SEMI, + STATE(2383), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112431] = 4, - ACTIONS(2674), 1, - anon_sym_RBRACK, - ACTIONS(4083), 1, + [110855] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4037), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112445] = 4, - ACTIONS(3241), 1, + [110869] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - ACTIONS(3245), 1, - anon_sym_RBRACK, - STATE(2277), 1, - aux_sym_subscript_repeat1, + ACTIONS(4039), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112459] = 4, - ACTIONS(4085), 1, + [110883] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - ACTIONS(4087), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_match_statement_repeat1, + ACTIONS(2998), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112473] = 4, - ACTIONS(3056), 1, + [110897] = 4, + ACTIONS(1347), 1, + anon_sym_RBRACE, + ACTIONS(4041), 1, anon_sym_COMMA, - ACTIONS(4089), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + STATE(2330), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112487] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4091), 1, - anon_sym_COLON, + [110911] = 4, + ACTIONS(3142), 1, + anon_sym_RPAREN, + ACTIONS(4043), 1, + anon_sym_COMMA, + STATE(2243), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112501] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(4093), 1, + [110925] = 4, + ACTIONS(3008), 1, anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3010), 1, + anon_sym_COMMA, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112515] = 3, - ACTIONS(4097), 1, - anon_sym_as, + [110939] = 4, + ACTIONS(4046), 1, + anon_sym_RPAREN, + ACTIONS(4048), 1, + anon_sym_COMMA, + STATE(2250), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4095), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [112527] = 4, - ACTIONS(1201), 1, + [110953] = 4, + ACTIONS(1231), 1, anon_sym_RPAREN, - ACTIONS(4099), 1, + ACTIONS(4050), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112541] = 3, - ACTIONS(3997), 1, - anon_sym_as, + [110967] = 4, + ACTIONS(3217), 1, + anon_sym_COMMA, + ACTIONS(3219), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110981] = 3, + ACTIONS(4052), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 2, + ACTIONS(4054), 2, + anon_sym_COMMA, + anon_sym_COLON, + [110993] = 4, + ACTIONS(1161), 1, anon_sym_RPAREN, + ACTIONS(4056), 1, anon_sym_COMMA, - [112553] = 4, - ACTIONS(1211), 1, + STATE(2421), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111007] = 4, + ACTIONS(1171), 1, anon_sym_RPAREN, - ACTIONS(4101), 1, + ACTIONS(4058), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112567] = 4, - ACTIONS(4103), 1, + [111021] = 3, + ACTIONS(4062), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4060), 2, + sym__newline, + anon_sym_SEMI, + [111033] = 4, + ACTIONS(4064), 1, anon_sym_COMMA, - ACTIONS(4105), 1, + ACTIONS(4066), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112581] = 4, - ACTIONS(4107), 1, + [111047] = 4, + ACTIONS(4068), 1, anon_sym_COMMA, - ACTIONS(4109), 1, + ACTIONS(4070), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112595] = 4, - ACTIONS(4111), 1, + [111061] = 4, + ACTIONS(2942), 1, + anon_sym_RPAREN, + ACTIONS(2944), 1, anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + STATE(2246), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112609] = 4, - ACTIONS(4073), 1, + [111075] = 4, + ACTIONS(4072), 1, + anon_sym_RPAREN, + ACTIONS(4074), 1, anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + STATE(2268), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112623] = 4, - ACTIONS(1045), 1, + [111089] = 4, + ACTIONS(1041), 1, anon_sym_RBRACK, - ACTIONS(4117), 1, + ACTIONS(4076), 1, anon_sym_COMMA, - STATE(2316), 1, + STATE(2360), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112637] = 4, - ACTIONS(4119), 1, + [111103] = 4, + ACTIONS(3860), 1, + anon_sym_RPAREN, + ACTIONS(4078), 1, anon_sym_COMMA, - ACTIONS(4122), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + STATE(2481), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111117] = 4, + ACTIONS(3860), 1, + anon_sym_RPAREN, + ACTIONS(4080), 1, + anon_sym_COMMA, + STATE(2481), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112651] = 4, - ACTIONS(4124), 1, + [111131] = 3, + ACTIONS(3556), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3558), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111143] = 4, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4126), 1, + ACTIONS(4084), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2267), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112665] = 4, - ACTIONS(4128), 1, + [111157] = 4, + ACTIONS(3339), 1, anon_sym_COMMA, - ACTIONS(4131), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + ACTIONS(3341), 1, + anon_sym_RBRACE, + STATE(2305), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112679] = 4, - ACTIONS(1025), 1, - anon_sym_RBRACK, - ACTIONS(4133), 1, + [111171] = 4, + ACTIONS(3526), 1, + anon_sym_RBRACE, + ACTIONS(4086), 1, anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + STATE(2262), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112693] = 4, - ACTIONS(2702), 1, + [111185] = 3, + ACTIONS(4089), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3890), 2, + anon_sym_COMMA, + anon_sym_COLON, + [111197] = 3, + ACTIONS(3564), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3566), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111209] = 4, + ACTIONS(2636), 1, anon_sym_RPAREN, - ACTIONS(4135), 1, + ACTIONS(4091), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2420), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112707] = 4, - ACTIONS(4137), 1, + [111223] = 4, + ACTIONS(2652), 1, + anon_sym_RBRACK, + ACTIONS(4093), 1, anon_sym_COMMA, - ACTIONS(4139), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_dict_pattern_repeat1, + STATE(2357), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112721] = 4, - ACTIONS(4141), 1, + [111237] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(4143), 1, + ACTIONS(4097), 1, anon_sym_RBRACE, - STATE(2291), 1, + STATE(2483), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112735] = 4, - ACTIONS(1215), 1, + [111251] = 4, + ACTIONS(1233), 1, anon_sym_RPAREN, - ACTIONS(4145), 1, + ACTIONS(4099), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112749] = 4, - ACTIONS(2706), 1, - anon_sym_RPAREN, - ACTIONS(4147), 1, + [111265] = 4, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4103), 1, + anon_sym_RBRACE, + STATE(2483), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112763] = 4, - ACTIONS(2708), 1, - anon_sym_RBRACK, - ACTIONS(4149), 1, + [111279] = 4, + ACTIONS(4105), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4107), 1, + anon_sym_COLON, + STATE(2364), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112777] = 4, - ACTIONS(4151), 1, - anon_sym_COMMA, - ACTIONS(4153), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + [111293] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112791] = 4, - ACTIONS(4155), 1, + ACTIONS(3948), 3, anon_sym_COMMA, - ACTIONS(4157), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + [111303] = 4, + ACTIONS(627), 1, + sym__newline, + ACTIONS(4109), 1, + anon_sym_SEMI, + STATE(2383), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112805] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4159), 1, + [111317] = 4, + ACTIONS(995), 1, anon_sym_in, - STATE(2486), 1, + ACTIONS(4111), 1, + anon_sym_COMMA, + STATE(2312), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112819] = 4, - ACTIONS(2622), 1, + [111331] = 4, + ACTIONS(2648), 1, anon_sym_RPAREN, - ACTIONS(4161), 1, + ACTIONS(4113), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2420), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112833] = 2, + [111345] = 4, + ACTIONS(3940), 1, + anon_sym_DOT, + ACTIONS(3946), 1, + anon_sym_PIPE, + ACTIONS(4115), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [112843] = 4, - ACTIONS(1465), 1, - anon_sym_RPAREN, - ACTIONS(4163), 1, + [111359] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3649), 3, anon_sym_COMMA, - STATE(2437), 1, - aux_sym_with_clause_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [111369] = 4, + ACTIONS(4117), 1, + anon_sym_COMMA, + ACTIONS(4119), 1, + anon_sym_COLON, + STATE(2369), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112857] = 2, + [111383] = 4, + ACTIONS(1289), 1, + anon_sym_RBRACK, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(2485), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 3, + [111397] = 4, + ACTIONS(3233), 1, anon_sym_COMMA, + ACTIONS(3235), 1, + anon_sym_RBRACK, + STATE(2296), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111411] = 4, + ACTIONS(3940), 1, + anon_sym_DOT, + ACTIONS(3946), 1, + anon_sym_PIPE, + ACTIONS(4123), 1, anon_sym_COLON, - anon_sym_EQ, - [112867] = 4, - ACTIONS(1299), 1, - anon_sym_COLON, - ACTIONS(4165), 1, - anon_sym_COMMA, - STATE(2323), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112881] = 4, - ACTIONS(4167), 1, + [111425] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - ACTIONS(4169), 1, - anon_sym_COLON, - STATE(2415), 1, - aux_sym__parameters_repeat1, + ACTIONS(4125), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112895] = 4, - ACTIONS(4171), 1, + [111439] = 4, + ACTIONS(4127), 1, anon_sym_SEMI, - ACTIONS(4173), 1, + ACTIONS(4129), 1, sym__newline, - STATE(2307), 1, + STATE(2289), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112909] = 4, - ACTIONS(4175), 1, + [111453] = 4, + ACTIONS(2050), 1, + anon_sym_RBRACK, + ACTIONS(4131), 1, anon_sym_COMMA, - ACTIONS(4178), 1, - anon_sym_RBRACE, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + STATE(2235), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112923] = 2, + [111467] = 4, + ACTIONS(2964), 1, + anon_sym_COMMA, + ACTIONS(4133), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [112933] = 4, - ACTIONS(1217), 1, + [111481] = 4, + ACTIONS(2962), 1, anon_sym_RPAREN, - ACTIONS(4180), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112947] = 4, - ACTIONS(3056), 1, + [111495] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - ACTIONS(3087), 1, + ACTIONS(4135), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2452), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112961] = 4, - ACTIONS(4182), 1, - anon_sym_SEMI, - ACTIONS(4184), 1, - sym__newline, - STATE(2431), 1, - aux_sym__simple_statements_repeat1, + [111509] = 4, + ACTIONS(2964), 1, + anon_sym_COMMA, + ACTIONS(4137), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112975] = 4, - ACTIONS(3418), 1, + [111523] = 4, + ACTIONS(3390), 1, anon_sym_COMMA, - ACTIONS(3420), 1, + ACTIONS(3392), 1, anon_sym_RBRACE, - STATE(2310), 1, + STATE(2292), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112989] = 4, - ACTIONS(641), 1, + [111537] = 4, + ACTIONS(637), 1, sym__newline, - ACTIONS(4186), 1, + ACTIONS(4139), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2383), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113003] = 3, - ACTIONS(3618), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [111551] = 4, + ACTIONS(4141), 1, + sym__newline, + ACTIONS(4143), 1, + sym__indent, + STATE(785), 1, + sym__match_block, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3620), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113015] = 4, - ACTIONS(3089), 1, - anon_sym_RPAREN, - ACTIONS(3091), 1, + [111565] = 4, + ACTIONS(4145), 1, anon_sym_COMMA, - STATE(2396), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4147), 1, + anon_sym_COLON, + STATE(2387), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113029] = 4, - ACTIONS(1333), 1, + [111579] = 4, + ACTIONS(1303), 1, anon_sym_RBRACE, - ACTIONS(4188), 1, + ACTIONS(4149), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2330), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113043] = 4, - ACTIONS(4190), 1, - sym__newline, - ACTIONS(4192), 1, - sym__indent, - STATE(822), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113057] = 4, - ACTIONS(3028), 1, + [111593] = 4, + ACTIONS(2966), 1, anon_sym_RPAREN, - ACTIONS(3030), 1, + ACTIONS(2968), 1, anon_sym_COMMA, - STATE(2318), 1, + STATE(2300), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113071] = 4, - ACTIONS(4194), 1, + [111607] = 4, + ACTIONS(4151), 1, anon_sym_RPAREN, - ACTIONS(4196), 1, + ACTIONS(4153), 1, anon_sym_COMMA, - STATE(2319), 1, + STATE(2302), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113085] = 4, - ACTIONS(3307), 1, + [111621] = 4, + ACTIONS(4155), 1, anon_sym_COMMA, - ACTIONS(3309), 1, + ACTIONS(4157), 1, anon_sym_RBRACK, - STATE(2322), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113099] = 4, - ACTIONS(4198), 1, - anon_sym_RPAREN, - ACTIONS(4200), 1, + [111635] = 4, + ACTIONS(4159), 1, anon_sym_COMMA, - STATE(2401), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4161), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113113] = 4, - ACTIONS(3839), 1, - anon_sym_RBRACK, - ACTIONS(4202), 1, + [111649] = 4, + ACTIONS(1451), 1, + anon_sym_RPAREN, + ACTIONS(4163), 1, anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + STATE(2361), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113127] = 4, - ACTIONS(4205), 1, - anon_sym_RPAREN, - ACTIONS(4207), 1, - anon_sym_COMMA, - STATE(2317), 1, - aux_sym__parameters_repeat1, + [111663] = 3, + ACTIONS(3572), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3574), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111675] = 4, + ACTIONS(3882), 1, + sym_identifier, + STATE(2479), 1, + sym_dotted_name, + STATE(2572), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113141] = 4, - ACTIONS(1255), 1, + [111689] = 4, + ACTIONS(1235), 1, anon_sym_RPAREN, - ACTIONS(4210), 1, + ACTIONS(4165), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113155] = 4, - ACTIONS(1257), 1, + [111703] = 3, + ACTIONS(4169), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4167), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [111715] = 4, + ACTIONS(1237), 1, anon_sym_RPAREN, - ACTIONS(4212), 1, + ACTIONS(4171), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113169] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4214), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113183] = 4, - ACTIONS(4216), 1, + [111729] = 4, + ACTIONS(4173), 1, anon_sym_COMMA, - ACTIONS(4218), 1, + ACTIONS(4175), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113197] = 4, - ACTIONS(4220), 1, + [111743] = 4, + ACTIONS(4177), 1, anon_sym_COMMA, - ACTIONS(4222), 1, + ACTIONS(4179), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113211] = 4, - ACTIONS(3232), 1, - anon_sym_COLON, - ACTIONS(4224), 1, + [111757] = 4, + ACTIONS(1321), 1, + anon_sym_RBRACE, + ACTIONS(4181), 1, anon_sym_COMMA, - STATE(2323), 1, - aux_sym_assert_statement_repeat1, + STATE(2330), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113225] = 4, - ACTIONS(1033), 1, - anon_sym_RBRACK, - ACTIONS(4227), 1, + [111771] = 4, + ACTIONS(4183), 1, + anon_sym_RPAREN, + ACTIONS(4185), 1, anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, + STATE(2297), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113239] = 3, - ACTIONS(3218), 1, - anon_sym_from, + [111785] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3216), 2, - sym__newline, - anon_sym_SEMI, - [113251] = 4, - ACTIONS(4229), 1, - anon_sym_RPAREN, - ACTIONS(4231), 1, + ACTIONS(3948), 3, anon_sym_COMMA, - STATE(2296), 1, - aux_sym_with_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [111795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113265] = 3, - ACTIONS(1724), 1, - anon_sym_except, + ACTIONS(3649), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [111805] = 4, + ACTIONS(1319), 1, + anon_sym_RBRACE, + ACTIONS(4187), 1, + anon_sym_COMMA, + STATE(2330), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113277] = 4, - ACTIONS(4233), 1, + [111819] = 4, + ACTIONS(4189), 1, anon_sym_COMMA, - ACTIONS(4235), 1, + ACTIONS(4191), 1, anon_sym_RBRACE, - STATE(2334), 1, + STATE(2316), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113291] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(784), 1, - sym__match_block, + [111833] = 4, + ACTIONS(2688), 1, + sym_identifier, + ACTIONS(4193), 1, + anon_sym_import, + STATE(2715), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113305] = 4, - ACTIONS(4205), 1, - anon_sym_COLON, - ACTIONS(4241), 1, + [111847] = 4, + ACTIONS(2845), 1, + anon_sym_in, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(2330), 1, - aux_sym__parameters_repeat1, + STATE(2312), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113319] = 4, - ACTIONS(2654), 1, + [111861] = 4, + ACTIONS(2610), 1, anon_sym_RPAREN, - ACTIONS(4244), 1, + ACTIONS(4198), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2420), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113333] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(794), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113347] = 4, - ACTIONS(2656), 1, + [111875] = 4, + ACTIONS(2612), 1, anon_sym_RBRACK, - ACTIONS(4246), 1, + ACTIONS(4200), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2357), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113361] = 4, - ACTIONS(4248), 1, - anon_sym_COMMA, - ACTIONS(4250), 1, + [111889] = 4, + ACTIONS(3675), 1, + anon_sym_COLON, + ACTIONS(4202), 1, anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + STATE(2774), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113375] = 4, - ACTIONS(4252), 1, + [111903] = 4, + ACTIONS(4204), 1, anon_sym_COMMA, - ACTIONS(4254), 1, + ACTIONS(4206), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2483), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113389] = 3, - ACTIONS(3640), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3642), 2, - anon_sym_LBRACE, + [111917] = 4, + ACTIONS(4208), 1, + anon_sym_COMMA, + ACTIONS(4210), 1, anon_sym_RBRACE, - [113401] = 3, - ACTIONS(3677), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + STATE(2483), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113413] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACE, - ACTIONS(4256), 1, + [111931] = 4, + ACTIONS(3046), 1, + anon_sym_RPAREN, + ACTIONS(3048), 1, anon_sym_COMMA, - STATE(2425), 1, - aux_sym__collection_elements_repeat1, + STATE(2345), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113427] = 3, - ACTIONS(1718), 1, - anon_sym_except, + [111945] = 4, + ACTIONS(4212), 1, + anon_sym_RPAREN, + ACTIONS(4214), 1, + anon_sym_COMMA, + STATE(2350), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, - anon_sym_except_STAR, - anon_sym_finally, - [113439] = 4, - ACTIONS(2662), 1, - anon_sym_RPAREN, - ACTIONS(4258), 1, + [111959] = 4, + ACTIONS(3277), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3279), 1, + anon_sym_RBRACK, + STATE(2353), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113453] = 4, - ACTIONS(2678), 1, + [111973] = 4, + ACTIONS(2622), 1, anon_sym_RPAREN, - ACTIONS(4260), 1, + ACTIONS(4216), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2420), 1, aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113467] = 3, - ACTIONS(3476), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3478), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113479] = 3, - ACTIONS(4262), 1, - anon_sym_EQ, + [111987] = 4, + ACTIONS(2928), 1, + anon_sym_RPAREN, + ACTIONS(2964), 1, + anon_sym_COMMA, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_COMMA, + [112001] = 4, + ACTIONS(3675), 1, anon_sym_COLON, - [113491] = 3, - ACTIONS(4266), 1, - anon_sym_in, + ACTIONS(4218), 1, + anon_sym_RBRACE, + STATE(2735), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4264), 2, + [112015] = 4, + ACTIONS(4141), 1, sym__newline, - anon_sym_SEMI, - [113503] = 4, - ACTIONS(1455), 1, - anon_sym_COLON, - ACTIONS(4268), 1, - anon_sym_COMMA, - STATE(2387), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4143), 1, + sym__indent, + STATE(845), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113517] = 4, - ACTIONS(4270), 1, + [112029] = 3, + ACTIONS(3576), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3578), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112041] = 4, + ACTIONS(4220), 1, anon_sym_SEMI, - ACTIONS(4272), 1, + ACTIONS(4222), 1, sym__newline, - STATE(2352), 1, + STATE(2332), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113531] = 4, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, + [112055] = 3, + ACTIONS(3593), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3595), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(2263), 1, - aux_sym_dictionary_repeat1, + [112067] = 4, + ACTIONS(3373), 1, + sym_identifier, + STATE(2178), 1, + sym_dotted_name, + STATE(2425), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113545] = 4, - ACTIONS(3056), 1, + [112081] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - ACTIONS(3099), 1, + ACTIONS(2976), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2452), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113559] = 4, - ACTIONS(3401), 1, + [112095] = 4, + ACTIONS(4224), 1, anon_sym_COMMA, - ACTIONS(3403), 1, + ACTIONS(4227), 1, anon_sym_RBRACE, - STATE(2354), 1, + STATE(2330), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113573] = 4, - ACTIONS(1043), 1, - anon_sym_RBRACK, - ACTIONS(4274), 1, - anon_sym_COMMA, - STATE(2316), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113587] = 4, - ACTIONS(2680), 1, - anon_sym_RBRACK, - ACTIONS(4276), 1, + [112109] = 4, + ACTIONS(3394), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3396), 1, + anon_sym_RBRACE, + STATE(2335), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113601] = 4, - ACTIONS(645), 1, + [112123] = 4, + ACTIONS(621), 1, sym__newline, - ACTIONS(4278), 1, + ACTIONS(4229), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2383), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113615] = 4, - ACTIONS(3319), 1, - anon_sym_COMMA, - ACTIONS(3321), 1, - anon_sym_RBRACK, - STATE(2462), 1, - aux_sym_subscript_repeat1, + [112137] = 3, + ACTIONS(3601), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3603), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112149] = 3, + ACTIONS(1708), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113629] = 4, - ACTIONS(1351), 1, + ACTIONS(1706), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112161] = 4, + ACTIONS(1311), 1, anon_sym_RBRACE, - ACTIONS(4280), 1, + ACTIONS(4231), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2330), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113643] = 4, - ACTIONS(1299), 1, - anon_sym_RPAREN, - ACTIONS(4282), 1, - anon_sym_COMMA, - STATE(2389), 1, - aux_sym_assert_statement_repeat1, + [112175] = 3, + ACTIONS(1692), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113657] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4284), 1, - anon_sym_COLON, + ACTIONS(1690), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112187] = 3, + ACTIONS(4233), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113671] = 4, - ACTIONS(3101), 1, + ACTIONS(3866), 2, + anon_sym_COMMA, + anon_sym_COLON, + [112199] = 4, + ACTIONS(2978), 1, anon_sym_RPAREN, - ACTIONS(3103), 1, + ACTIONS(2980), 1, anon_sym_COMMA, - STATE(2362), 1, + STATE(2344), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113685] = 4, - ACTIONS(4286), 1, + [112213] = 4, + ACTIONS(4235), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4237), 1, anon_sym_COMMA, - STATE(2364), 1, + STATE(2346), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113699] = 4, - ACTIONS(3323), 1, + [112227] = 4, + ACTIONS(3812), 1, + anon_sym_RPAREN, + ACTIONS(3991), 1, anon_sym_COMMA, - ACTIONS(3325), 1, + STATE(2257), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112241] = 4, + ACTIONS(3239), 1, + anon_sym_COMMA, + ACTIONS(3241), 1, anon_sym_RBRACK, - STATE(2366), 1, + STATE(2349), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113713] = 4, - ACTIONS(4290), 1, + [112255] = 4, + ACTIONS(2916), 1, anon_sym_COMMA, - ACTIONS(4292), 1, + ACTIONS(2928), 1, anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + STATE(2463), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113727] = 4, - ACTIONS(4294), 1, - anon_sym_COMMA, - ACTIONS(4296), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + [112269] = 4, + ACTIONS(3940), 1, + anon_sym_DOT, + ACTIONS(3946), 1, + anon_sym_PIPE, + ACTIONS(4239), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113741] = 4, - ACTIONS(1183), 1, + [112283] = 4, + ACTIONS(1163), 1, anon_sym_RPAREN, - ACTIONS(4298), 1, + ACTIONS(4241), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113755] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(849), 1, - sym__match_block, + [112297] = 4, + ACTIONS(1243), 1, + anon_sym_RPAREN, + ACTIONS(4243), 1, + anon_sym_COMMA, + STATE(2421), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113769] = 4, - ACTIONS(1185), 1, + [112311] = 4, + ACTIONS(1165), 1, anon_sym_RPAREN, - ACTIONS(4300), 1, + ACTIONS(4245), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113783] = 4, - ACTIONS(4302), 1, + [112325] = 4, + ACTIONS(4247), 1, + anon_sym_RPAREN, + ACTIONS(4249), 1, anon_sym_COMMA, - ACTIONS(4304), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + STATE(2347), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113797] = 4, - ACTIONS(4306), 1, + [112339] = 4, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4308), 1, + ACTIONS(4254), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113811] = 2, + [112353] = 4, + ACTIONS(4256), 1, + anon_sym_COMMA, + ACTIONS(4258), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2475), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113821] = 4, - ACTIONS(2997), 1, + [112367] = 4, + ACTIONS(1245), 1, anon_sym_RPAREN, - ACTIONS(3056), 1, + ACTIONS(4260), 1, anon_sym_COMMA, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + STATE(2421), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113835] = 3, + [112381] = 4, + ACTIONS(1297), 1, + anon_sym_COLON, ACTIONS(4262), 1, - anon_sym_EQ, + anon_sym_COMMA, + STATE(2390), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112395] = 4, + ACTIONS(4264), 1, + anon_sym_COMMA, + ACTIONS(4266), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + [112409] = 4, + ACTIONS(4268), 1, anon_sym_COMMA, + ACTIONS(4270), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112423] = 4, + ACTIONS(3675), 1, anon_sym_COLON, - [113847] = 3, - ACTIONS(3906), 1, + ACTIONS(4272), 1, + anon_sym_RBRACE, + STATE(2751), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112437] = 3, + ACTIONS(3898), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_RPAREN, + ACTIONS(3936), 2, anon_sym_COMMA, - [113859] = 2, + anon_sym_RBRACK, + [112449] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, - anon_sym_RPAREN, + ACTIONS(3938), 3, anon_sym_COMMA, anon_sym_as, - [113869] = 4, - ACTIONS(3873), 1, - anon_sym_RPAREN, - ACTIONS(3995), 1, + anon_sym_RBRACK, + [112459] = 4, + ACTIONS(3936), 1, + anon_sym_RBRACK, + ACTIONS(4274), 1, anon_sym_COMMA, - STATE(2453), 1, - aux_sym__import_list_repeat1, + STATE(2357), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113883] = 4, - ACTIONS(3934), 1, - anon_sym_RPAREN, - ACTIONS(4310), 1, - anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + [112473] = 3, + ACTIONS(4277), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113897] = 4, - ACTIONS(4313), 1, + ACTIONS(4054), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [112485] = 4, + ACTIONS(4279), 1, anon_sym_SEMI, - ACTIONS(4315), 1, + ACTIONS(4281), 1, sym__newline, - STATE(2381), 1, + STATE(2368), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113911] = 4, - ACTIONS(1299), 1, + [112499] = 4, + ACTIONS(3757), 1, anon_sym_RBRACK, - ACTIONS(4317), 1, + ACTIONS(4283), 1, anon_sym_COMMA, - STATE(2405), 1, - aux_sym_assert_statement_repeat1, + STATE(2360), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113925] = 4, - ACTIONS(3056), 1, + [112513] = 4, + ACTIONS(4286), 1, + anon_sym_RPAREN, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(3111), 1, + STATE(2361), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112527] = 4, + ACTIONS(3154), 1, anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4291), 1, + anon_sym_COMMA, + STATE(2347), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113939] = 4, - ACTIONS(2997), 1, - anon_sym_RBRACK, - ACTIONS(3152), 1, + [112541] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2460), 1, + ACTIONS(2986), 1, + anon_sym_RPAREN, + STATE(2452), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113953] = 4, - ACTIONS(4319), 1, + [112555] = 4, + ACTIONS(3154), 1, + anon_sym_COLON, + ACTIONS(4293), 1, anon_sym_COMMA, - ACTIONS(4321), 1, - anon_sym_RBRACK, - STATE(2467), 1, - aux_sym__patterns_repeat1, + STATE(2475), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113967] = 4, - ACTIONS(3364), 1, + [112569] = 4, + ACTIONS(4286), 1, + anon_sym_COLON, + ACTIONS(4295), 1, anon_sym_COMMA, - ACTIONS(3366), 1, + STATE(2365), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112583] = 4, + ACTIONS(3398), 1, + anon_sym_COMMA, + ACTIONS(3400), 1, anon_sym_RBRACE, - STATE(2384), 1, + STATE(2370), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113981] = 4, - ACTIONS(2889), 1, - anon_sym_RBRACK, - ACTIONS(4323), 1, - anon_sym_COMMA, - STATE(2380), 1, - aux_sym__patterns_repeat1, + [112597] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113995] = 4, - ACTIONS(635), 1, + ACTIONS(3938), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [112607] = 4, + ACTIONS(643), 1, sym__newline, - ACTIONS(4326), 1, + ACTIONS(4298), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2383), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114009] = 4, - ACTIONS(1291), 1, - anon_sym_RPAREN, - ACTIONS(4328), 1, + [112621] = 4, + ACTIONS(3156), 1, + anon_sym_COLON, + ACTIONS(4300), 1, anon_sym_COMMA, - STATE(2482), 1, - aux_sym__collection_elements_repeat1, + STATE(2475), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114023] = 4, - ACTIONS(4019), 1, - anon_sym_RPAREN, - ACTIONS(4330), 1, + [112635] = 4, + ACTIONS(1323), 1, + anon_sym_RBRACE, + ACTIONS(4302), 1, anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, + STATE(2330), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114037] = 4, - ACTIONS(1361), 1, - anon_sym_RBRACE, - ACTIONS(4333), 1, + [112649] = 4, + ACTIONS(1037), 1, + anon_sym_RBRACK, + ACTIONS(4304), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + STATE(2360), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114051] = 4, - ACTIONS(3124), 1, + [112663] = 4, + ACTIONS(2988), 1, anon_sym_RPAREN, - ACTIONS(3126), 1, + ACTIONS(2990), 1, anon_sym_COMMA, - STATE(2391), 1, + STATE(2378), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114065] = 4, - ACTIONS(4335), 1, + [112677] = 4, + ACTIONS(4306), 1, anon_sym_RPAREN, - ACTIONS(4337), 1, + ACTIONS(4308), 1, anon_sym_COMMA, - STATE(2393), 1, + STATE(2380), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114079] = 4, - ACTIONS(4339), 1, + [112691] = 4, + ACTIONS(3156), 1, + anon_sym_RPAREN, + ACTIONS(4310), 1, anon_sym_COMMA, - ACTIONS(4342), 1, - anon_sym_COLON, - STATE(2387), 1, - aux_sym_with_clause_repeat1, + STATE(2347), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114093] = 4, - ACTIONS(3273), 1, + [112705] = 4, + ACTIONS(3255), 1, anon_sym_COMMA, - ACTIONS(3275), 1, + ACTIONS(3257), 1, anon_sym_RBRACK, - STATE(2395), 1, + STATE(2382), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114107] = 4, - ACTIONS(3232), 1, - anon_sym_RPAREN, - ACTIONS(4344), 1, + [112719] = 4, + ACTIONS(4312), 1, anon_sym_COMMA, - STATE(2389), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4314), 1, + anon_sym_COLON, + STATE(2430), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114121] = 4, - ACTIONS(4347), 1, - anon_sym_COMMA, - ACTIONS(4349), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + [112733] = 4, + ACTIONS(4141), 1, + sym__newline, + ACTIONS(4143), 1, + sym__indent, + STATE(724), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114135] = 4, - ACTIONS(1203), 1, + [112747] = 4, + ACTIONS(1189), 1, anon_sym_RPAREN, - ACTIONS(4351), 1, + ACTIONS(4316), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114149] = 3, - ACTIONS(3689), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112761] = 4, + ACTIONS(4107), 1, + anon_sym_RPAREN, + ACTIONS(4318), 1, + anon_sym_COMMA, + STATE(2362), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3691), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114161] = 4, - ACTIONS(1205), 1, + [112775] = 4, + ACTIONS(1191), 1, anon_sym_RPAREN, - ACTIONS(4353), 1, + ACTIONS(4320), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114175] = 4, - ACTIONS(4355), 1, + [112789] = 4, + ACTIONS(4322), 1, anon_sym_COMMA, - ACTIONS(4357), 1, + ACTIONS(4324), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114189] = 4, - ACTIONS(4359), 1, + [112803] = 4, + ACTIONS(4326), 1, anon_sym_COMMA, - ACTIONS(4361), 1, + ACTIONS(4328), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114203] = 4, - ACTIONS(1251), 1, - anon_sym_RPAREN, - ACTIONS(4363), 1, - anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + [112817] = 4, + ACTIONS(4330), 1, + anon_sym_SEMI, + ACTIONS(4333), 1, + sym__newline, + STATE(2383), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114217] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4365), 1, - anon_sym_COLON, + [112831] = 3, + ACTIONS(1700), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114231] = 3, - ACTIONS(3544), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3546), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114243] = 3, - ACTIONS(3573), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(1698), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112843] = 4, + ACTIONS(4119), 1, + anon_sym_RPAREN, + ACTIONS(4335), 1, + anon_sym_COMMA, + STATE(2374), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114255] = 4, - ACTIONS(3926), 1, - sym_identifier, - STATE(2274), 1, - sym_dotted_name, - STATE(2606), 1, - sym_aliased_import, + [112857] = 4, + ACTIONS(2606), 1, + anon_sym_RBRACK, + ACTIONS(4337), 1, + anon_sym_COMMA, + STATE(2357), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114269] = 4, - ACTIONS(1253), 1, - anon_sym_RPAREN, - ACTIONS(4367), 1, + [112871] = 4, + ACTIONS(4339), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4342), 1, + anon_sym_COLON, + STATE(2387), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114283] = 3, - ACTIONS(1730), 1, - anon_sym_except, + [112885] = 4, + ACTIONS(4344), 1, + anon_sym_SEMI, + ACTIONS(4346), 1, + sym__newline, + STATE(2455), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114295] = 4, - ACTIONS(4369), 1, + [112899] = 4, + ACTIONS(4348), 1, anon_sym_SEMI, - ACTIONS(4371), 1, + ACTIONS(4350), 1, sym__newline, - STATE(2408), 1, + STATE(2394), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114309] = 4, - ACTIONS(3056), 1, + [112913] = 4, + ACTIONS(3142), 1, + anon_sym_COLON, + ACTIONS(4352), 1, anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + STATE(2390), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114323] = 4, - ACTIONS(3232), 1, - anon_sym_RBRACK, - ACTIONS(4373), 1, + [112927] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2405), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(2996), 1, + anon_sym_RPAREN, + STATE(2452), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114337] = 4, - ACTIONS(3455), 1, + [112941] = 4, + ACTIONS(3402), 1, anon_sym_COMMA, - ACTIONS(3457), 1, + ACTIONS(3404), 1, anon_sym_RBRACE, - STATE(2409), 1, + STATE(2397), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114351] = 4, - ACTIONS(4376), 1, - anon_sym_COMMA, - ACTIONS(4378), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + [112955] = 3, + ACTIONS(1712), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114365] = 4, - ACTIONS(621), 1, + ACTIONS(1710), 2, + anon_sym_except_STAR, + anon_sym_finally, + [112967] = 4, + ACTIONS(647), 1, sym__newline, - ACTIONS(4380), 1, + ACTIONS(4355), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2383), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114379] = 4, - ACTIONS(1329), 1, - anon_sym_RBRACE, - ACTIONS(4382), 1, + [112981] = 4, + ACTIONS(4357), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4359), 1, + anon_sym_RBRACE, + STATE(2483), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114393] = 4, - ACTIONS(2688), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, - anon_sym_COMMA, - STATE(2373), 1, - aux_sym_case_clause_repeat1, + [112995] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114407] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4386), 1, + ACTIONS(2427), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [113005] = 4, + ACTIONS(1335), 1, anon_sym_RBRACE, - STATE(2646), 1, - sym_format_specifier, + ACTIONS(4361), 1, + anon_sym_COMMA, + STATE(2330), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114421] = 4, - ACTIONS(3134), 1, + [113019] = 4, + ACTIONS(3002), 1, anon_sym_RPAREN, - ACTIONS(3136), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - STATE(2416), 1, + STATE(2405), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114435] = 4, - ACTIONS(4388), 1, + [113033] = 4, + ACTIONS(4363), 1, anon_sym_RPAREN, - ACTIONS(4390), 1, + ACTIONS(4365), 1, anon_sym_COMMA, - STATE(2418), 1, + STATE(2406), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114449] = 4, - ACTIONS(3285), 1, + [113047] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3948), 3, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + [113057] = 4, ACTIONS(3287), 1, + anon_sym_COMMA, + ACTIONS(3289), 1, anon_sym_RBRACK, - STATE(2421), 1, + STATE(2409), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114463] = 4, - ACTIONS(2969), 1, - anon_sym_COLON, - ACTIONS(4392), 1, - anon_sym_COMMA, - STATE(2330), 1, - aux_sym__parameters_repeat1, + [113071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114477] = 4, - ACTIONS(1219), 1, + ACTIONS(3649), 3, anon_sym_RPAREN, - ACTIONS(4394), 1, anon_sym_COMMA, - STATE(2260), 1, - aux_sym_argument_list_repeat1, + anon_sym_as, + [113081] = 4, + ACTIONS(4141), 1, + sym__newline, + ACTIONS(4143), 1, + sym__indent, + STATE(740), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114491] = 4, - ACTIONS(4169), 1, + [113095] = 4, + ACTIONS(4367), 1, + anon_sym_COMMA, + ACTIONS(4369), 1, + anon_sym_RBRACE, + STATE(2483), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113109] = 4, + ACTIONS(1205), 1, anon_sym_RPAREN, - ACTIONS(4396), 1, + ACTIONS(4371), 1, anon_sym_COMMA, - STATE(2502), 1, - aux_sym__parameters_repeat1, + STATE(2421), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114505] = 4, - ACTIONS(1221), 1, + [113123] = 4, + ACTIONS(1207), 1, anon_sym_RPAREN, - ACTIONS(4398), 1, + ACTIONS(4373), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114519] = 3, - ACTIONS(4015), 1, - anon_sym_EQ, + [113137] = 3, + ACTIONS(1688), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [114531] = 4, - ACTIONS(4400), 1, + ACTIONS(1686), 2, + anon_sym_except_STAR, + anon_sym_finally, + [113149] = 4, + ACTIONS(4375), 1, anon_sym_COMMA, - ACTIONS(4402), 1, + ACTIONS(4377), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114545] = 4, - ACTIONS(4404), 1, + [113163] = 4, + ACTIONS(4379), 1, anon_sym_COMMA, - ACTIONS(4406), 1, + ACTIONS(4381), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114559] = 3, - ACTIONS(4408), 1, - anon_sym_COLON, + [113177] = 4, + ACTIONS(4383), 1, + sym__newline, + ACTIONS(4385), 1, + sym__indent, + STATE(804), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [114571] = 4, - ACTIONS(3756), 1, + [113191] = 4, + ACTIONS(3675), 1, anon_sym_COLON, - ACTIONS(4410), 1, + ACTIONS(4387), 1, anon_sym_RBRACE, - STATE(2758), 1, + STATE(2609), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114585] = 4, - ACTIONS(4321), 1, + [113205] = 4, + ACTIONS(2845), 1, anon_sym_RPAREN, - ACTIONS(4412), 1, + ACTIONS(4389), 1, anon_sym_COMMA, - STATE(2512), 1, + STATE(2412), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114599] = 4, - ACTIONS(3560), 1, - anon_sym_RBRACE, - ACTIONS(4414), 1, + [113219] = 4, + ACTIONS(3360), 1, anon_sym_COMMA, - STATE(2425), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3362), 1, + anon_sym_RBRACE, + STATE(2309), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114613] = 2, + [113233] = 4, + ACTIONS(4392), 1, + anon_sym_SEMI, + ACTIONS(4394), 1, + sym__newline, + STATE(2422), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [113247] = 3, + ACTIONS(3878), 1, anon_sym_as, - [114623] = 3, - ACTIONS(1726), 1, - anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 2, - anon_sym_except_STAR, - anon_sym_finally, - [114635] = 4, - ACTIONS(3056), 1, + ACTIONS(3936), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3093), 1, + [113259] = 4, + ACTIONS(2964), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_RPAREN, - STATE(2382), 1, + STATE(2452), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114649] = 4, - ACTIONS(4417), 1, - anon_sym_SEMI, - ACTIONS(4419), 1, - sym__newline, - STATE(2434), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114663] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3142), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + [113273] = 3, + ACTIONS(3176), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114677] = 4, - ACTIONS(631), 1, + ACTIONS(3174), 2, sym__newline, - ACTIONS(4421), 1, anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [113285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114691] = 2, + ACTIONS(3938), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [113295] = 4, + ACTIONS(3410), 1, + anon_sym_COMMA, + ACTIONS(3412), 1, + anon_sym_RBRACE, + STATE(2424), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 3, - sym__newline, - anon_sym_SEMI, + [113309] = 4, + ACTIONS(3936), 1, + anon_sym_RPAREN, + ACTIONS(4396), 1, anon_sym_COMMA, - [114701] = 4, - ACTIONS(3405), 1, + STATE(2420), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113323] = 4, + ACTIONS(3520), 1, + anon_sym_RPAREN, + ACTIONS(4399), 1, anon_sym_COMMA, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_dictionary_repeat1, + STATE(2421), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114715] = 4, - ACTIONS(649), 1, + [113337] = 4, + ACTIONS(651), 1, sym__newline, - ACTIONS(4423), 1, + ACTIONS(4402), 1, anon_sym_SEMI, - STATE(2448), 1, + STATE(2383), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114729] = 4, - ACTIONS(1321), 1, + [113351] = 4, + ACTIONS(4404), 1, + anon_sym_COMMA, + ACTIONS(4406), 1, + anon_sym_RBRACE, + STATE(2451), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113365] = 4, + ACTIONS(1343), 1, anon_sym_RBRACE, - ACTIONS(4425), 1, + ACTIONS(4408), 1, anon_sym_COMMA, - STATE(2301), 1, + STATE(2330), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114743] = 2, + [113379] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4427), 3, + ACTIONS(3957), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [114753] = 4, - ACTIONS(4342), 1, + [113389] = 4, + ACTIONS(3014), 1, anon_sym_RPAREN, - ACTIONS(4429), 1, + ACTIONS(3016), 1, anon_sym_COMMA, - STATE(2437), 1, - aux_sym_with_clause_repeat1, + STATE(2431), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114767] = 4, - ACTIONS(3144), 1, + [113403] = 4, + ACTIONS(4410), 1, anon_sym_RPAREN, - ACTIONS(3146), 1, + ACTIONS(4412), 1, anon_sym_COMMA, - STATE(2443), 1, + STATE(2432), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114781] = 4, - ACTIONS(4432), 1, - anon_sym_RPAREN, - ACTIONS(4434), 1, + [113417] = 4, + ACTIONS(4414), 1, anon_sym_COMMA, - STATE(2444), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4416), 1, + anon_sym_in, + STATE(2273), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114795] = 4, - ACTIONS(3291), 1, + [113431] = 4, + ACTIONS(3198), 1, anon_sym_COMMA, - ACTIONS(3293), 1, + ACTIONS(3202), 1, anon_sym_RBRACK, - STATE(2446), 1, + STATE(2435), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114809] = 4, - ACTIONS(2732), 1, - sym_identifier, - ACTIONS(4436), 1, - anon_sym_import, - STATE(2627), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114823] = 4, - ACTIONS(4438), 1, - anon_sym_COMMA, - ACTIONS(4440), 1, + [113445] = 4, + ACTIONS(1437), 1, anon_sym_COLON, - STATE(2345), 1, + ACTIONS(4418), 1, + anon_sym_COMMA, + STATE(2365), 1, aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114837] = 4, - ACTIONS(1239), 1, + [113459] = 4, + ACTIONS(1223), 1, anon_sym_RPAREN, - ACTIONS(4442), 1, + ACTIONS(4420), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114851] = 4, - ACTIONS(1241), 1, + [113473] = 4, + ACTIONS(1225), 1, anon_sym_RPAREN, - ACTIONS(4444), 1, + ACTIONS(4422), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114865] = 4, - ACTIONS(4446), 1, - anon_sym_COMMA, - ACTIONS(4448), 1, + [113487] = 4, + ACTIONS(2928), 1, anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + ACTIONS(3028), 1, + anon_sym_COMMA, + STATE(2278), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114879] = 4, - ACTIONS(4450), 1, + [113501] = 4, + ACTIONS(4424), 1, anon_sym_COMMA, - ACTIONS(4452), 1, + ACTIONS(4426), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114893] = 4, - ACTIONS(4454), 1, + [113515] = 4, + ACTIONS(4428), 1, anon_sym_COMMA, - ACTIONS(4456), 1, + ACTIONS(4430), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114907] = 4, - ACTIONS(4458), 1, - anon_sym_SEMI, - ACTIONS(4461), 1, - sym__newline, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, + [113529] = 4, + ACTIONS(4432), 1, + anon_sym_COMMA, + ACTIONS(4434), 1, + anon_sym_COLON, + STATE(2387), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114921] = 4, - ACTIONS(4237), 1, - sym__newline, - ACTIONS(4239), 1, - sym__indent, - STATE(730), 1, - sym__match_block, + [113543] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114935] = 4, - ACTIONS(3299), 1, + ACTIONS(4436), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(3301), 1, + [113553] = 4, + ACTIONS(4438), 1, + anon_sym_COMMA, + ACTIONS(4440), 1, anon_sym_RBRACK, - STATE(2452), 1, - aux_sym_subscript_repeat1, + STATE(2283), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114949] = 4, - ACTIONS(4463), 1, + [113567] = 4, + ACTIONS(4414), 1, anon_sym_COMMA, - ACTIONS(4465), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + ACTIONS(4442), 1, + anon_sym_in, + STATE(2273), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114963] = 4, - ACTIONS(4467), 1, + [113581] = 4, + ACTIONS(3207), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(3209), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2442), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114977] = 4, - ACTIONS(4001), 1, - anon_sym_RPAREN, - ACTIONS(4471), 1, + [113595] = 4, + ACTIONS(4444), 1, anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, + ACTIONS(4446), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114991] = 4, - ACTIONS(4001), 1, - anon_sym_RPAREN, - ACTIONS(4473), 1, + [113609] = 4, + ACTIONS(4448), 1, anon_sym_COMMA, - STATE(2383), 1, - aux_sym__import_list_repeat1, + ACTIONS(4450), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115005] = 3, - ACTIONS(3910), 1, - anon_sym_as, + [113623] = 4, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(4452), 1, + anon_sym_COMMA, + STATE(2360), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115017] = 4, - ACTIONS(3340), 1, + [113637] = 4, + ACTIONS(3213), 1, anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(3215), 1, anon_sym_RBRACK, - STATE(2459), 1, + STATE(2446), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115031] = 4, - ACTIONS(4475), 1, - anon_sym_SEMI, - ACTIONS(4477), 1, - sym__newline, - STATE(2257), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115045] = 4, - ACTIONS(4479), 1, + [113651] = 4, + ACTIONS(4454), 1, anon_sym_COMMA, - ACTIONS(4481), 1, + ACTIONS(4456), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115059] = 4, - ACTIONS(4483), 1, + [113665] = 4, + ACTIONS(4458), 1, anon_sym_COMMA, - ACTIONS(4485), 1, + ACTIONS(4460), 1, anon_sym_RBRACK, - STATE(2283), 1, + STATE(2459), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115073] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACK, - ACTIONS(4487), 1, + [113679] = 4, + ACTIONS(2630), 1, + anon_sym_RPAREN, + ACTIONS(4462), 1, anon_sym_COMMA, - STATE(2503), 1, - aux_sym__collection_elements_repeat1, + STATE(2420), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115087] = 2, + [113693] = 4, + ACTIONS(3940), 1, + anon_sym_DOT, + ACTIONS(3946), 1, + anon_sym_PIPE, + ACTIONS(4464), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3936), 3, - anon_sym_COMMA, - anon_sym_as, + [113707] = 4, + ACTIONS(4383), 1, + sym__newline, + ACTIONS(4385), 1, + sym__indent, + STATE(755), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113721] = 4, + ACTIONS(2632), 1, anon_sym_RBRACK, - [115097] = 4, - ACTIONS(4489), 1, + ACTIONS(4466), 1, anon_sym_COMMA, - ACTIONS(4491), 1, - anon_sym_RBRACK, - STATE(2283), 1, - aux_sym_subscript_repeat1, + STATE(2357), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115111] = 4, - ACTIONS(4493), 1, - anon_sym_SEMI, - ACTIONS(4495), 1, - sym__newline, - STATE(2485), 1, - aux_sym__simple_statements_repeat1, + [113735] = 4, + ACTIONS(4468), 1, + anon_sym_COMMA, + ACTIONS(4470), 1, + anon_sym_RBRACE, + STATE(2483), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115125] = 2, + [113749] = 4, + ACTIONS(1289), 1, + anon_sym_RPAREN, + ACTIONS(4472), 1, + anon_sym_COMMA, + STATE(2453), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 3, + [113763] = 4, + ACTIONS(3526), 1, anon_sym_RPAREN, + ACTIONS(4474), 1, anon_sym_COMMA, - anon_sym_EQ, - [115135] = 3, - ACTIONS(4499), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + STATE(2453), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115147] = 4, - ACTIONS(4501), 1, - anon_sym_COMMA, - ACTIONS(4504), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_match_statement_repeat1, + [113777] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115161] = 4, - ACTIONS(2054), 1, - anon_sym_RBRACK, - ACTIONS(4506), 1, + ACTIONS(2434), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [113787] = 4, + ACTIONS(631), 1, + sym__newline, + ACTIONS(4477), 1, + anon_sym_SEMI, + STATE(2383), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113801] = 4, + ACTIONS(4479), 1, anon_sym_COMMA, - STATE(2380), 1, - aux_sym__patterns_repeat1, + ACTIONS(4481), 1, + anon_sym_RBRACE, + STATE(2483), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115175] = 4, - ACTIONS(3801), 1, + [113815] = 4, + ACTIONS(3656), 1, anon_sym_LPAREN, - ACTIONS(4508), 1, + ACTIONS(4483), 1, anon_sym_COLON, - STATE(2707), 1, + STATE(2690), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115189] = 4, - ACTIONS(4073), 1, + [113829] = 4, + ACTIONS(4414), 1, anon_sym_COMMA, - ACTIONS(4510), 1, + ACTIONS(4485), 1, anon_sym_in, - STATE(2486), 1, + STATE(2273), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115203] = 4, - ACTIONS(3054), 1, - anon_sym_RPAREN, - ACTIONS(3056), 1, + [113843] = 4, + ACTIONS(4487), 1, anon_sym_COMMA, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4490), 1, + anon_sym_RBRACK, + STATE(2459), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115217] = 4, - ACTIONS(4073), 1, + [113857] = 4, + ACTIONS(4440), 1, + anon_sym_RPAREN, + ACTIONS(4492), 1, anon_sym_COMMA, - ACTIONS(4512), 1, - anon_sym_in, - STATE(2486), 1, + STATE(2471), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115231] = 2, + [113871] = 4, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4494), 1, + anon_sym_in, + STATE(2273), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4041), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [115241] = 4, - ACTIONS(3526), 1, + [113885] = 4, + ACTIONS(3514), 1, anon_sym_PIPE, - ACTIONS(4514), 1, + ACTIONS(4496), 1, anon_sym_COLON, - STATE(1933), 1, + STATE(1907), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115255] = 4, - ACTIONS(3736), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_PIPE, - ACTIONS(4516), 1, - anon_sym_COLON, + [113899] = 4, + ACTIONS(1289), 1, + anon_sym_RBRACE, + ACTIONS(4498), 1, + anon_sym_COMMA, + STATE(2262), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115269] = 4, - ACTIONS(2985), 1, + [113913] = 4, + ACTIONS(4500), 1, anon_sym_COMMA, - ACTIONS(2997), 1, + ACTIONS(4502), 1, anon_sym_RBRACE, - STATE(2338), 1, - aux_sym__collection_elements_repeat1, + STATE(2395), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115283] = 4, - ACTIONS(3736), 1, + [113927] = 4, + ACTIONS(3940), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3946), 1, anon_sym_PIPE, - ACTIONS(4518), 1, + ACTIONS(4504), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115297] = 4, - ACTIONS(3736), 1, + [113941] = 4, + ACTIONS(4383), 1, + sym__newline, + ACTIONS(4385), 1, + sym__indent, + STATE(775), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113955] = 4, + ACTIONS(3940), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3946), 1, anon_sym_PIPE, - ACTIONS(4520), 1, + ACTIONS(4506), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115311] = 4, - ACTIONS(4522), 1, - anon_sym_COMMA, - ACTIONS(4524), 1, - anon_sym_RBRACE, - STATE(2278), 1, - aux_sym_dict_pattern_repeat1, + [113969] = 4, + ACTIONS(3940), 1, + anon_sym_DOT, + ACTIONS(3946), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115325] = 4, - ACTIONS(3756), 1, + [113983] = 4, + ACTIONS(3940), 1, + anon_sym_DOT, + ACTIONS(3946), 1, + anon_sym_PIPE, + ACTIONS(4510), 1, anon_sym_COLON, - ACTIONS(4526), 1, - anon_sym_RBRACE, - STATE(2617), 1, - sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115339] = 4, - ACTIONS(3381), 1, + [113997] = 4, + ACTIONS(4414), 1, anon_sym_COMMA, - ACTIONS(3383), 1, - anon_sym_RBRACE, - STATE(2492), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4512), 1, + anon_sym_in, + STATE(2273), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115353] = 4, - ACTIONS(3934), 1, - anon_sym_RBRACK, - ACTIONS(4528), 1, + [114011] = 4, + ACTIONS(2050), 1, + anon_sym_RPAREN, + ACTIONS(4514), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_case_clause_repeat1, + STATE(2412), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115367] = 4, - ACTIONS(3560), 1, - anon_sym_RPAREN, - ACTIONS(4531), 1, - anon_sym_COMMA, - STATE(2482), 1, - aux_sym__collection_elements_repeat1, + [114025] = 3, + ACTIONS(4518), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115381] = 4, - ACTIONS(4073), 1, + ACTIONS(4516), 2, anon_sym_COMMA, - ACTIONS(4534), 1, + anon_sym_RBRACE, + [114037] = 4, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4520), 1, anon_sym_in, - STATE(2486), 1, + STATE(2273), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115395] = 4, - ACTIONS(4073), 1, + [114051] = 4, + ACTIONS(4414), 1, anon_sym_COMMA, - ACTIONS(4536), 1, + ACTIONS(4522), 1, anon_sym_in, - STATE(2486), 1, + STATE(2273), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115409] = 4, - ACTIONS(627), 1, - sym__newline, - ACTIONS(4538), 1, - anon_sym_SEMI, - STATE(2448), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115423] = 4, - ACTIONS(995), 1, - anon_sym_in, - ACTIONS(4540), 1, + [114065] = 4, + ACTIONS(4247), 1, + anon_sym_COLON, + ACTIONS(4524), 1, anon_sym_COMMA, - STATE(2497), 1, - aux_sym__patterns_repeat1, + STATE(2475), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115437] = 3, - ACTIONS(3614), 1, + [114079] = 3, + ACTIONS(3587), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3616), 2, + ACTIONS(3589), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [115449] = 4, - ACTIONS(3056), 1, + [114091] = 4, + ACTIONS(1297), 1, + anon_sym_RBRACK, + ACTIONS(4527), 1, anon_sym_COMMA, - ACTIONS(4542), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + STATE(2488), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115463] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(4544), 1, + [114105] = 4, + ACTIONS(2664), 1, anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4529), 1, + anon_sym_COMMA, + STATE(2420), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115477] = 4, - ACTIONS(4190), 1, - sym__newline, - ACTIONS(4192), 1, - sym__indent, - STATE(812), 1, - sym__match_block, + [114119] = 3, + ACTIONS(3993), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115491] = 4, - ACTIONS(4546), 1, + ACTIONS(3957), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4548), 1, - anon_sym_COLON, - STATE(2466), 1, - aux_sym_match_statement_repeat1, + [114131] = 4, + ACTIONS(1297), 1, + anon_sym_RPAREN, + ACTIONS(4531), 1, + anon_sym_COMMA, + STATE(2243), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115505] = 4, - ACTIONS(1327), 1, - anon_sym_RBRACE, - ACTIONS(4550), 1, + [114145] = 4, + ACTIONS(3964), 1, + anon_sym_RPAREN, + ACTIONS(4533), 1, anon_sym_COMMA, - STATE(2301), 1, - aux_sym_dictionary_repeat1, + STATE(2481), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115519] = 2, + [114159] = 4, + ACTIONS(4414), 1, + anon_sym_COMMA, + ACTIONS(4536), 1, + anon_sym_in, + STATE(2273), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + [114173] = 4, + ACTIONS(4538), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(4541), 1, anon_sym_RBRACE, - [115529] = 4, - ACTIONS(4190), 1, - sym__newline, - ACTIONS(4192), 1, - sym__indent, - STATE(799), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115543] = 2, + STATE(2483), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [115553] = 2, + [114187] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 3, + ACTIONS(3921), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, + [114197] = 4, + ACTIONS(3526), 1, anon_sym_RBRACK, - [115563] = 4, - ACTIONS(2889), 1, - anon_sym_in, - ACTIONS(4552), 1, + ACTIONS(4543), 1, anon_sym_COMMA, - STATE(2497), 1, - aux_sym__patterns_repeat1, + STATE(2485), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115577] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4555), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, + [114211] = 3, + ACTIONS(3486), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [115591] = 4, - ACTIONS(3056), 1, - anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3488), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114223] = 4, + ACTIONS(4383), 1, + sym__newline, + ACTIONS(4385), 1, + sym__indent, + STATE(796), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115605] = 4, - ACTIONS(3058), 1, - anon_sym_RPAREN, - ACTIONS(3060), 1, + [114237] = 4, + ACTIONS(3142), 1, + anon_sym_RBRACK, + ACTIONS(4546), 1, anon_sym_COMMA, - STATE(2288), 1, - aux_sym_argument_list_repeat1, + STATE(2488), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115619] = 4, - ACTIONS(4557), 1, - anon_sym_RPAREN, - ACTIONS(4559), 1, - anon_sym_COMMA, - STATE(2303), 1, - aux_sym_argument_list_repeat1, + [114251] = 4, + ACTIONS(4549), 1, + anon_sym_SEMI, + ACTIONS(4551), 1, + sym__newline, + STATE(2272), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115633] = 4, - ACTIONS(2969), 1, + [114265] = 4, + ACTIONS(2638), 1, anon_sym_RPAREN, - ACTIONS(4561), 1, + ACTIONS(4553), 1, anon_sym_COMMA, - STATE(2317), 1, - aux_sym__parameters_repeat1, + STATE(2420), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115647] = 4, - ACTIONS(3560), 1, - anon_sym_RBRACK, - ACTIONS(4563), 1, + [114279] = 4, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(2503), 1, + ACTIONS(2992), 1, + anon_sym_RPAREN, + STATE(2452), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115661] = 3, - ACTIONS(1698), 1, - anon_sym_except, + [114293] = 4, + ACTIONS(4555), 1, + anon_sym_SEMI, + ACTIONS(4557), 1, + sym__newline, + STATE(2238), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, - anon_sym_except_STAR, - anon_sym_finally, - [115673] = 4, - ACTIONS(3303), 1, + [114307] = 4, + ACTIONS(4414), 1, anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_RBRACK, - STATE(2407), 1, - aux_sym_subscript_repeat1, + ACTIONS(4559), 1, + anon_sym_in, + STATE(2273), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115687] = 4, - ACTIONS(2889), 1, - anon_sym_RPAREN, - ACTIONS(4566), 1, + [114321] = 4, + ACTIONS(4414), 1, anon_sym_COMMA, - STATE(2506), 1, + ACTIONS(4561), 1, + anon_sym_in, + STATE(2273), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115701] = 4, - ACTIONS(3801), 1, - anon_sym_LPAREN, - ACTIONS(4569), 1, - anon_sym_COLON, - STATE(2784), 1, - sym_argument_list, + [114335] = 4, + ACTIONS(2662), 1, + anon_sym_RPAREN, + ACTIONS(4563), 1, + anon_sym_COMMA, + STATE(2420), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115715] = 4, - ACTIONS(3756), 1, - anon_sym_COLON, - ACTIONS(4571), 1, - anon_sym_RBRACE, - STATE(2663), 1, - sym_format_specifier, + [114349] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115729] = 4, - ACTIONS(4190), 1, - sym__newline, - ACTIONS(4192), 1, - sym__indent, - STATE(820), 1, - sym__match_block, + ACTIONS(2845), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114358] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115743] = 4, - ACTIONS(4073), 1, - anon_sym_COMMA, - ACTIONS(4573), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + ACTIONS(4565), 2, + anon_sym__, + sym_identifier, + [114367] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115757] = 4, - ACTIONS(4073), 1, + ACTIONS(3526), 2, anon_sym_COMMA, - ACTIONS(4575), 1, - anon_sym_in, - STATE(2486), 1, - aux_sym__patterns_repeat1, + anon_sym_RBRACE, + [114376] = 3, + ACTIONS(4567), 1, + anon_sym_COLON, + ACTIONS(4569), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115771] = 4, - ACTIONS(2054), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, - anon_sym_COMMA, - STATE(2506), 1, - aux_sym__patterns_repeat1, + [114387] = 3, + ACTIONS(4571), 1, + sym_integer, + ACTIONS(4573), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115785] = 2, + [114398] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3528), 2, + ACTIONS(4247), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115794] = 2, + [114407] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(4575), 2, anon_sym_COMMA, anon_sym_COLON, - [115803] = 3, - ACTIONS(4579), 1, - sym_integer, - ACTIONS(4581), 1, - sym_float, + [114416] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115814] = 2, + ACTIONS(1686), 2, + sym__dedent, + anon_sym_case, + [114425] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 2, + ACTIONS(4575), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115823] = 2, + [114434] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 2, + ACTIONS(3281), 2, sym__newline, anon_sym_SEMI, - [115832] = 3, - ACTIONS(4585), 1, - sym_integer, - ACTIONS(4587), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115843] = 2, + [114443] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(4333), 2, sym__newline, anon_sym_SEMI, - [115852] = 2, + [114452] = 3, + ACTIONS(4577), 1, + sym_integer, + ACTIONS(4579), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4589), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115861] = 2, + [114463] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 2, - sym__dedent, - anon_sym_case, - [115870] = 2, + ACTIONS(4581), 2, + anon_sym__, + sym_identifier, + [114472] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4593), 2, + ACTIONS(3253), 2, sym__newline, anon_sym_SEMI, - [115879] = 2, + [114481] = 3, + ACTIONS(4583), 1, + anon_sym_COLON, + ACTIONS(4585), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4427), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115888] = 3, - ACTIONS(4595), 1, + [114492] = 3, + ACTIONS(4587), 1, sym_integer, - ACTIONS(4597), 1, + ACTIONS(4589), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115899] = 2, + [114503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(3126), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115908] = 2, + [114512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115917] = 3, - ACTIONS(4601), 1, - anon_sym_COLON, - ACTIONS(4603), 1, - anon_sym_DASH_GT, + ACTIONS(4591), 2, + anon_sym__, + sym_identifier, + [114521] = 3, + ACTIONS(4593), 1, + sym_integer, + ACTIONS(4595), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115928] = 2, + [114532] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 2, + ACTIONS(1698), 2, sym__dedent, anon_sym_case, - [115937] = 2, + [114541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 2, - sym__dedent, - anon_sym_case, - [115946] = 2, + ACTIONS(4597), 2, + anon_sym__, + sym_identifier, + [114550] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 2, + ACTIONS(4599), 2, sym__dedent, anon_sym_case, - [115955] = 2, + [114559] = 3, + ACTIONS(4601), 1, + sym_integer, + ACTIONS(4603), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4609), 2, - anon_sym__, - sym_identifier, - [115964] = 2, + [114570] = 3, + ACTIONS(4605), 1, + sym_integer, + ACTIONS(4607), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 2, - sym__dedent, - anon_sym_case, - [115973] = 3, - ACTIONS(4613), 1, + [114581] = 3, + ACTIONS(4609), 1, sym_integer, - ACTIONS(4615), 1, + ACTIONS(4611), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115984] = 2, + [114592] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4617), 2, - anon_sym__, - sym_identifier, - [115993] = 2, + ACTIONS(3126), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114601] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, + ACTIONS(4286), 2, + anon_sym_COMMA, + anon_sym_COLON, + [114610] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4613), 2, + sym__dedent, + anon_sym_case, + [114619] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2845), 2, anon_sym_COMMA, anon_sym_RBRACK, - [116002] = 3, - ACTIONS(4621), 1, + [114628] = 3, + ACTIONS(4615), 1, sym_integer, - ACTIONS(4623), 1, + ACTIONS(4617), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116013] = 2, + [114639] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4619), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [116022] = 2, + [114648] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 2, + sym__newline, + anon_sym_SEMI, + [114657] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4623), 2, + sym__newline, + anon_sym_SEMI, + [114666] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4625), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [116031] = 2, + sym__newline, + anon_sym_SEMI, + [114675] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4627), 2, - sym__dedent, - anon_sym_case, - [116040] = 2, + sym__newline, + anon_sym_SEMI, + [114684] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4629), 2, sym__dedent, anon_sym_case, - [116049] = 2, + [114693] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 2, - anon_sym_COMMA, - anon_sym_COLON, - [116058] = 2, + ACTIONS(4631), 2, + sym__dedent, + anon_sym_case, + [114702] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(4286), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [116067] = 3, - ACTIONS(4631), 1, - sym_integer, - ACTIONS(4633), 1, - sym_float, + [114711] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116078] = 2, + ACTIONS(4633), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114720] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4178), 2, + ACTIONS(4227), 2, anon_sym_COMMA, anon_sym_RBRACE, - [116087] = 2, + [114729] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, - anon_sym_RPAREN, + ACTIONS(1567), 2, anon_sym_COMMA, - [116096] = 3, - ACTIONS(4637), 1, + anon_sym_RBRACK, + [114738] = 3, + ACTIONS(4635), 1, sym_integer, - ACTIONS(4639), 1, + ACTIONS(4637), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116107] = 2, + [114749] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(2852), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116116] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4625), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116125] = 2, + [114758] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3195), 2, + ACTIONS(1567), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116134] = 2, + [114767] = 3, + ACTIONS(4639), 1, + sym_integer, + ACTIONS(4641), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116143] = 2, + [114778] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4342), 2, + ACTIONS(2854), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116152] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4643), 2, - sym__dedent, - anon_sym_case, - [116161] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2588), 1, - sym_parameters, + [114787] = 3, + ACTIONS(4643), 1, + anon_sym_COLON, + ACTIONS(4645), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116172] = 2, + [114798] = 3, + ACTIONS(4647), 1, + anon_sym_COMMA, + STATE(1901), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4645), 2, - sym__dedent, - anon_sym_case, - [116181] = 2, + [114809] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2898), 2, + ACTIONS(3520), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [116190] = 3, - ACTIONS(4647), 1, - sym_integer, - ACTIONS(4649), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116201] = 2, + [114818] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4461), 2, + ACTIONS(4649), 2, sym__newline, anon_sym_SEMI, - [116210] = 2, + [114827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4651), 2, sym__newline, anon_sym_SEMI, - [116219] = 3, - ACTIONS(4653), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116230] = 2, + [114836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_COMMA, - anon_sym_COLON, - [116239] = 2, + ACTIONS(1706), 2, + sym__dedent, + anon_sym_case, + [114845] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3385), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116248] = 2, + ACTIONS(4653), 2, + sym__newline, + anon_sym_SEMI, + [114854] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4655), 2, sym__newline, anon_sym_SEMI, - [116257] = 2, + [114863] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4657), 2, - anon_sym__, - sym_identifier, - [116266] = 2, + sym__newline, + anon_sym_SEMI, + [114872] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4659), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [116275] = 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114881] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4661), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114890] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4342), 2, + ACTIONS(3526), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [116284] = 2, + [114899] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4661), 2, + ACTIONS(3126), 2, sym__newline, anon_sym_SEMI, - [116293] = 2, + [114908] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(4663), 2, - sym__dedent, - anon_sym_case, - [116302] = 2, + sym__newline, + anon_sym_SEMI, + [114917] = 3, + ACTIONS(4665), 1, + sym_integer, + ACTIONS(4667), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3315), 2, - sym__newline, - anon_sym_SEMI, - [116311] = 2, + [114928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, + ACTIONS(1710), 2, sym__dedent, anon_sym_case, - [116320] = 2, + [114937] = 3, + ACTIONS(4669), 1, + anon_sym_COLON, + ACTIONS(4671), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4665), 2, - sym__newline, - anon_sym_SEMI, - [116329] = 2, + [114948] = 3, + ACTIONS(4673), 1, + anon_sym_COLON, + ACTIONS(4675), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, - anon_sym_RPAREN, + [114959] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2854), 2, anon_sym_COMMA, - [116338] = 3, - ACTIONS(4667), 1, + anon_sym_RBRACK, + [114968] = 3, + ACTIONS(4677), 1, anon_sym_COLON, - ACTIONS(4669), 1, + ACTIONS(4679), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116349] = 2, + [114979] = 3, + ACTIONS(4681), 1, + anon_sym_COLON, + ACTIONS(4683), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4671), 2, - sym__dedent, - anon_sym_case, - [116358] = 2, + [114990] = 3, + ACTIONS(4685), 1, + anon_sym_COLON, + ACTIONS(4687), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4673), 2, - sym__dedent, - anon_sym_case, - [116367] = 3, - ACTIONS(4675), 1, + [115001] = 3, + ACTIONS(4689), 1, sym_integer, - ACTIONS(4677), 1, + ACTIONS(4691), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116378] = 2, + [115012] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4247), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115021] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4679), 2, + ACTIONS(1690), 2, sym__dedent, anon_sym_case, - [116387] = 2, + [115030] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4681), 2, - sym__newline, - anon_sym_SEMI, - [116396] = 2, + ACTIONS(4633), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115039] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4683), 2, + ACTIONS(3024), 2, sym__newline, anon_sym_SEMI, - [116405] = 2, + [115048] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, - anon_sym_RPAREN, + ACTIONS(4693), 2, anon_sym_COMMA, - [116414] = 2, + anon_sym_RBRACE, + [115057] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116423] = 2, + ACTIONS(4695), 2, + sym__dedent, + anon_sym_case, + [115066] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4685), 2, - anon_sym__, - sym_identifier, - [116432] = 2, + ACTIONS(4697), 2, + sym__dedent, + anon_sym_case, + [115075] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4687), 2, - sym__dedent, - anon_sym_case, - [116441] = 2, + ACTIONS(3957), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115084] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4689), 2, + ACTIONS(4699), 2, sym__newline, anon_sym_SEMI, - [116450] = 2, + [115093] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, + ACTIONS(4436), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [116459] = 3, - ACTIONS(4691), 1, - anon_sym_COLON, - ACTIONS(4693), 1, - anon_sym_DASH_GT, + [115102] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116470] = 3, - ACTIONS(4695), 1, - anon_sym_COLON, - ACTIONS(4697), 1, - anon_sym_DASH_GT, + ACTIONS(4701), 2, + sym__dedent, + anon_sym_case, + [115111] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116481] = 3, - ACTIONS(4699), 1, - anon_sym_COLON, - ACTIONS(4701), 1, - anon_sym_DASH_GT, + ACTIONS(4703), 2, + sym__dedent, + anon_sym_case, + [115120] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116492] = 3, - ACTIONS(4703), 1, - anon_sym_COLON, - ACTIONS(4705), 1, - anon_sym_DASH_GT, + ACTIONS(4659), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115129] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116503] = 3, - ACTIONS(4707), 1, - anon_sym_COLON, - ACTIONS(4709), 1, - anon_sym_DASH_GT, + ACTIONS(4661), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115138] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116514] = 3, - ACTIONS(4711), 1, - sym_integer, - ACTIONS(4713), 1, - sym_float, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115147] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116525] = 2, + ACTIONS(2852), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115156] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 2, - sym__newline, - anon_sym_SEMI, - [116534] = 3, - ACTIONS(4715), 1, - sym_integer, - ACTIONS(4717), 1, - sym_float, + ACTIONS(4659), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115165] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116545] = 2, + ACTIONS(4661), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 2, + ACTIONS(4705), 2, sym__dedent, anon_sym_case, - [116554] = 3, - ACTIONS(4719), 1, - sym_integer, - ACTIONS(4721), 1, - sym_float, + [115183] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4707), 2, + sym__dedent, + anon_sym_case, + [115192] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116565] = 2, + ACTIONS(4709), 2, + sym__dedent, + anon_sym_case, + [115201] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 2, + ACTIONS(4711), 2, sym__newline, anon_sym_SEMI, - [116574] = 2, + [115210] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116583] = 2, + ACTIONS(4713), 2, + sym__dedent, + anon_sym_case, + [115219] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116592] = 2, + ACTIONS(4715), 2, + sym__dedent, + anon_sym_case, + [115228] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4725), 2, + ACTIONS(4717), 2, sym__newline, anon_sym_SEMI, - [116601] = 2, + [115237] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, + ACTIONS(3333), 2, anon_sym_COMMA, anon_sym_RBRACK, - [116610] = 3, - ACTIONS(4727), 1, - anon_sym_COLON, - ACTIONS(4729), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116621] = 2, + [115246] = 2, + ACTIONS(4512), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, + [115254] = 2, + ACTIONS(4719), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [116630] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2572), 1, - sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116641] = 2, + [115262] = 2, + ACTIONS(4721), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 2, - sym__dedent, - anon_sym_case, - [116650] = 2, + [115270] = 2, + ACTIONS(3420), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3066), 2, - sym__newline, - anon_sym_SEMI, - [116659] = 2, + [115278] = 2, + ACTIONS(4723), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, - sym__dedent, - anon_sym_case, - [116668] = 2, + [115286] = 2, + ACTIONS(2988), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4017), 2, + [115294] = 2, + ACTIONS(4725), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [116677] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2587), 1, - sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116688] = 2, + [115302] = 2, + ACTIONS(1441), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 2, - sym__newline, - anon_sym_SEMI, - [116697] = 3, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(2589), 1, - sym_parameters, + [115310] = 2, + ACTIONS(4727), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116708] = 2, + [115318] = 2, + ACTIONS(4729), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, - anon_sym_COMMA, - anon_sym_COLON, - [116717] = 2, + [115326] = 2, + ACTIONS(3412), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 2, + [115334] = 2, + ACTIONS(3008), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [116726] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2889), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116735] = 2, + [115342] = 2, + ACTIONS(4731), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4733), 2, - sym__newline, - anon_sym_SEMI, - [116744] = 2, + [115350] = 2, + ACTIONS(4733), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115358] = 2, ACTIONS(4735), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116752] = 2, + [115366] = 2, ACTIONS(4737), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116760] = 2, + [115374] = 2, ACTIONS(4739), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116768] = 2, + [115382] = 2, ACTIONS(4741), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116776] = 2, + [115390] = 2, ACTIONS(4743), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116784] = 2, - ACTIONS(3407), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116792] = 2, + [115398] = 2, ACTIONS(4745), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116800] = 2, + [115406] = 2, ACTIONS(4747), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116808] = 2, + [115414] = 2, ACTIONS(4749), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116816] = 2, + [115422] = 2, ACTIONS(4751), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116824] = 2, + [115430] = 2, ACTIONS(4753), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116832] = 2, + [115438] = 2, ACTIONS(4755), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116840] = 2, + [115446] = 2, ACTIONS(4757), 1, - sym_identifier, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116848] = 2, + [115454] = 2, ACTIONS(4759), 1, - anon_sym_import, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116856] = 2, - ACTIONS(4761), 1, + [115462] = 2, + ACTIONS(3014), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116864] = 2, + [115470] = 2, + ACTIONS(4761), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115478] = 2, ACTIONS(4763), 1, - anon_sym_RBRACK, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116872] = 2, + [115486] = 2, ACTIONS(4765), 1, - anon_sym_COLON_EQ, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115494] = 2, + ACTIONS(4416), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116880] = 2, + [115502] = 2, ACTIONS(4767), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116888] = 2, + [115510] = 2, ACTIONS(4769), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116896] = 2, + [115518] = 2, ACTIONS(4771), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116904] = 2, + [115526] = 2, ACTIONS(4773), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116912] = 2, + [115534] = 2, ACTIONS(4775), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116920] = 2, - ACTIONS(3144), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116928] = 2, + [115542] = 2, ACTIONS(4777), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116936] = 2, + [115550] = 2, ACTIONS(4779), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116944] = 2, + [115558] = 2, ACTIONS(4781), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116952] = 2, + [115566] = 2, ACTIONS(4783), 1, - anon_sym_import, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116960] = 2, + [115574] = 2, ACTIONS(4785), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116968] = 2, - ACTIONS(3079), 1, - anon_sym_RPAREN, + [115582] = 2, + ACTIONS(4787), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116976] = 2, - ACTIONS(4787), 1, - anon_sym_RPAREN, + [115590] = 2, + ACTIONS(3396), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116984] = 2, + [115598] = 2, ACTIONS(4789), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116992] = 2, + [115606] = 2, ACTIONS(4791), 1, - anon_sym_COLON_EQ, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117000] = 2, + [115614] = 2, ACTIONS(4793), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117008] = 2, + [115622] = 2, ACTIONS(4795), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117016] = 2, - ACTIONS(3457), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117024] = 2, + [115630] = 2, ACTIONS(4797), 1, - anon_sym_COLON_EQ, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117032] = 2, + [115638] = 2, ACTIONS(4799), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117040] = 2, + [115646] = 2, ACTIONS(4801), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117048] = 2, + [115654] = 2, ACTIONS(4803), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117056] = 2, - ACTIONS(1467), 1, - anon_sym_COLON, + [115662] = 2, + ACTIONS(3404), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117064] = 2, + [115670] = 2, ACTIONS(4805), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117072] = 2, + [115678] = 2, ACTIONS(4807), 1, - anon_sym_COLON, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117080] = 2, + [115686] = 2, ACTIONS(4809), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117088] = 2, + [115694] = 2, ACTIONS(4811), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117096] = 2, + [115702] = 2, ACTIONS(4813), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117104] = 2, + [115710] = 2, ACTIONS(4815), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117112] = 2, + [115718] = 2, ACTIONS(4817), 1, - sym_identifier, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115726] = 2, + ACTIONS(3341), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117120] = 2, + [115734] = 2, ACTIONS(4819), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117128] = 2, + [115742] = 2, ACTIONS(4821), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117136] = 2, + [115750] = 2, ACTIONS(4823), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115758] = 2, + ACTIONS(3366), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117144] = 2, + [115766] = 2, ACTIONS(4825), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117152] = 2, + [115774] = 2, ACTIONS(4827), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117160] = 2, + [115782] = 2, ACTIONS(4829), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117168] = 2, + [115790] = 2, ACTIONS(4831), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117176] = 2, + [115798] = 2, ACTIONS(4833), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117184] = 2, + [115806] = 2, ACTIONS(4835), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117192] = 2, + [115814] = 2, ACTIONS(4837), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117200] = 2, - ACTIONS(3403), 1, - anon_sym_RBRACE, + [115822] = 2, + ACTIONS(4839), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117208] = 2, - ACTIONS(4839), 1, - anon_sym_COLON_EQ, + [115830] = 2, + ACTIONS(4841), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117216] = 2, - ACTIONS(4841), 1, - anon_sym_RPAREN, + [115838] = 2, + ACTIONS(1471), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117224] = 2, + [115846] = 2, ACTIONS(4843), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117232] = 2, + [115854] = 2, ACTIONS(4845), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117240] = 2, + [115862] = 2, ACTIONS(4847), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117248] = 2, + [115870] = 2, ACTIONS(4849), 1, - anon_sym_RBRACE, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117256] = 2, + [115878] = 2, ACTIONS(4851), 1, - anon_sym_COLON_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117264] = 2, + [115886] = 2, ACTIONS(4853), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117272] = 2, + [115894] = 2, ACTIONS(4855), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117280] = 2, - ACTIONS(1473), 1, - anon_sym_def, + [115902] = 2, + ACTIONS(4857), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117288] = 2, - ACTIONS(4857), 1, - sym_identifier, + [115910] = 2, + ACTIONS(4859), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117296] = 2, - ACTIONS(3134), 1, - anon_sym_RPAREN, + [115918] = 2, + ACTIONS(4052), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117304] = 2, - ACTIONS(4859), 1, - anon_sym_COLON_EQ, + [115926] = 2, + ACTIONS(1481), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117312] = 2, + [115934] = 2, ACTIONS(4861), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117320] = 2, + [115942] = 2, ACTIONS(4863), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117328] = 2, - ACTIONS(4865), 1, + [115950] = 2, + ACTIONS(2978), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117336] = 2, + [115958] = 2, + ACTIONS(4865), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115966] = 2, ACTIONS(4867), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117344] = 2, + [115974] = 2, ACTIONS(4869), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117352] = 2, + [115982] = 2, ACTIONS(4871), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115990] = 2, + ACTIONS(4485), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115998] = 2, + ACTIONS(3435), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117360] = 2, + [116006] = 2, ACTIONS(4873), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117368] = 2, + [116014] = 2, ACTIONS(4875), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117376] = 2, + [116022] = 2, ACTIONS(4877), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117384] = 2, + [116030] = 2, ACTIONS(4879), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117392] = 2, + [116038] = 2, ACTIONS(4881), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117400] = 2, + [116046] = 2, ACTIONS(4883), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117408] = 2, - ACTIONS(4885), 1, - anon_sym_COLON, + [116054] = 2, + ACTIONS(4494), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117416] = 2, - ACTIONS(4887), 1, + [116062] = 2, + ACTIONS(4885), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117424] = 2, - ACTIONS(4889), 1, - anon_sym_RBRACE, + [116070] = 2, + ACTIONS(3437), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117432] = 2, - ACTIONS(4510), 1, - anon_sym_in, + [116078] = 2, + ACTIONS(4887), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117440] = 2, - ACTIONS(4891), 1, - anon_sym_for, + [116086] = 2, + ACTIONS(4889), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117448] = 2, - ACTIONS(3356), 1, - anon_sym_COLON, + [116094] = 2, + ACTIONS(4891), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117456] = 2, + [116102] = 2, ACTIONS(4893), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117464] = 2, + [116110] = 2, ACTIONS(4895), 1, - anon_sym_RPAREN, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116118] = 2, + ACTIONS(3362), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117472] = 2, + [116126] = 2, ACTIONS(4897), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117480] = 2, + [116134] = 2, ACTIONS(4899), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117488] = 2, + [116142] = 2, ACTIONS(4901), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117496] = 2, - ACTIONS(3089), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117504] = 2, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117512] = 2, + [116150] = 2, ACTIONS(4903), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117520] = 2, - ACTIONS(3362), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117528] = 2, + [116158] = 2, ACTIONS(4905), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117536] = 2, + [116166] = 2, ACTIONS(4907), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117544] = 2, - ACTIONS(4075), 1, - anon_sym_in, + [116174] = 2, + ACTIONS(4909), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117552] = 2, - ACTIONS(3101), 1, - anon_sym_RPAREN, + [116182] = 2, + ACTIONS(3392), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117560] = 2, - ACTIONS(4909), 1, - sym_identifier, + [116190] = 2, + ACTIONS(3002), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117568] = 2, + [116198] = 2, ACTIONS(4911), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117576] = 2, + [116206] = 2, ACTIONS(4913), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117584] = 2, + [116214] = 2, ACTIONS(4915), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117592] = 2, + [116222] = 2, ACTIONS(4917), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117600] = 2, + [116230] = 2, ACTIONS(4919), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117608] = 2, + [116238] = 2, ACTIONS(4921), 1, - anon_sym_RBRACK, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117616] = 2, + [116246] = 2, ACTIONS(4923), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117624] = 2, + [116254] = 2, ACTIONS(4925), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117632] = 2, - ACTIONS(3383), 1, - anon_sym_RBRACE, + [116262] = 2, + ACTIONS(4927), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117640] = 2, - ACTIONS(4927), 1, - sym_identifier, + [116270] = 2, + ACTIONS(4520), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117648] = 2, + [116278] = 2, ACTIONS(4929), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117656] = 2, - ACTIONS(4931), 1, + [116286] = 2, + ACTIONS(4522), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117664] = 2, - ACTIONS(4933), 1, - anon_sym_RBRACE, + [116294] = 2, + ACTIONS(4931), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117672] = 2, - ACTIONS(4935), 1, - anon_sym_RPAREN, + [116302] = 2, + ACTIONS(4933), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117680] = 2, - ACTIONS(3420), 1, + [116310] = 2, + ACTIONS(4935), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117688] = 2, + [116318] = 2, ACTIONS(4937), 1, - ts_builtin_sym_end, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117696] = 2, + [116326] = 2, ACTIONS(4939), 1, - anon_sym_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117704] = 2, - ACTIONS(4534), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117712] = 2, + [116334] = 2, ACTIONS(4941), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117720] = 2, - ACTIONS(4536), 1, - anon_sym_in, + [116342] = 2, + ACTIONS(3046), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117728] = 2, + [116350] = 2, ACTIONS(4943), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117736] = 2, + [116358] = 2, ACTIONS(4945), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117744] = 2, + [116366] = 2, ACTIONS(4947), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117752] = 2, + [116374] = 2, ACTIONS(4949), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117760] = 2, - ACTIONS(4951), 1, + [116382] = 2, + ACTIONS(4277), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117768] = 2, + [116390] = 2, + ACTIONS(4951), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116398] = 2, ACTIONS(4953), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117776] = 2, + [116406] = 2, ACTIONS(4955), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117784] = 2, + [116414] = 2, ACTIONS(4957), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117792] = 2, + [116422] = 2, ACTIONS(4959), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117800] = 2, + [116430] = 2, ACTIONS(4961), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117808] = 2, + [116438] = 2, ACTIONS(4963), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117816] = 2, + [116446] = 2, ACTIONS(4965), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117824] = 2, + [116454] = 2, ACTIONS(4967), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117832] = 2, + [116462] = 2, ACTIONS(4969), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117840] = 2, + [116470] = 2, ACTIONS(4971), 1, - sym_identifier, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116478] = 2, + ACTIONS(2942), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117848] = 2, + [116486] = 2, ACTIONS(4973), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117856] = 2, + [116494] = 2, + ACTIONS(4536), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116502] = 2, ACTIONS(4975), 1, - anon_sym_RBRACE, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117864] = 2, + [116510] = 2, ACTIONS(4977), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117872] = 2, + [116518] = 2, ACTIONS(4979), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117880] = 2, + [116526] = 2, ACTIONS(4981), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117888] = 2, + [116534] = 2, ACTIONS(4983), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117896] = 2, + [116542] = 2, ACTIONS(4985), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117904] = 2, + [116550] = 2, ACTIONS(4987), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117912] = 2, - ACTIONS(3399), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117920] = 2, + [116558] = 2, ACTIONS(4989), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117928] = 2, + [116566] = 2, ACTIONS(4991), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117936] = 2, + [116574] = 2, ACTIONS(4993), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117944] = 2, + [116582] = 2, ACTIONS(4995), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117952] = 2, + [116590] = 2, ACTIONS(4997), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117960] = 2, + [116598] = 2, ACTIONS(4999), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117968] = 2, - ACTIONS(5001), 1, - sym_identifier, + [116606] = 2, + ACTIONS(4442), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117976] = 2, - ACTIONS(5003), 1, - anon_sym_COLON, + [116614] = 2, + ACTIONS(5001), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117984] = 2, - ACTIONS(5005), 1, - anon_sym_RBRACE, + [116622] = 2, + ACTIONS(5003), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117992] = 2, - ACTIONS(3058), 1, + [116630] = 2, + ACTIONS(5005), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118000] = 2, + [116638] = 2, ACTIONS(5007), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118008] = 2, + [116646] = 2, ACTIONS(5009), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118016] = 2, + [116654] = 2, ACTIONS(5011), 1, - anon_sym_RPAREN, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118024] = 2, + [116662] = 2, ACTIONS(5013), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118032] = 2, - ACTIONS(4555), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118040] = 2, + [116670] = 2, ACTIONS(5015), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118048] = 2, - ACTIONS(3409), 1, - anon_sym_COLON, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118056] = 2, + [116678] = 2, ACTIONS(5017), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118064] = 2, - ACTIONS(3370), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118072] = 2, - ACTIONS(3028), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118080] = 2, + [116686] = 2, ACTIONS(5019), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118088] = 2, - ACTIONS(3124), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118096] = 2, - ACTIONS(4159), 1, - anon_sym_in, + [116694] = 2, + ACTIONS(5021), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118104] = 2, - ACTIONS(5021), 1, + [116702] = 2, + ACTIONS(5023), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118112] = 2, - ACTIONS(3435), 1, + [116710] = 2, + ACTIONS(5025), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118120] = 2, - ACTIONS(5023), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118128] = 2, - ACTIONS(5025), 1, + [116718] = 2, + ACTIONS(3439), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118136] = 2, + [116726] = 2, ACTIONS(5027), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118144] = 2, + [116734] = 2, ACTIONS(5029), 1, - anon_sym_RBRACE, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118152] = 2, + [116742] = 2, ACTIONS(5031), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118160] = 2, + [116750] = 2, ACTIONS(5033), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118168] = 2, + [116758] = 2, ACTIONS(5035), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118176] = 2, - ACTIONS(5037), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118184] = 2, - ACTIONS(5039), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118192] = 2, - ACTIONS(4115), 1, + [116766] = 2, + ACTIONS(4559), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118200] = 2, - ACTIONS(5041), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118208] = 2, - ACTIONS(5043), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118216] = 2, - ACTIONS(5045), 1, - sym_identifier, + [116774] = 2, + ACTIONS(5037), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118224] = 2, - ACTIONS(5047), 1, - anon_sym_RBRACK, + [116782] = 2, + ACTIONS(3400), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118232] = 2, - ACTIONS(4573), 1, + [116790] = 2, + ACTIONS(4561), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118240] = 2, - ACTIONS(1491), 1, - anon_sym_def, + [116798] = 2, + ACTIONS(5039), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118248] = 2, - ACTIONS(5049), 1, + [116806] = 2, + ACTIONS(5041), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118256] = 2, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118264] = 2, - ACTIONS(4575), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [118272] = 2, - ACTIONS(5053), 1, - anon_sym_for, + [116814] = 2, + ACTIONS(2966), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118280] = 2, - ACTIONS(5055), 1, - sym_identifier, + [116822] = 2, + ACTIONS(5043), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118288] = 2, - ACTIONS(3366), 1, + [116830] = 2, + ACTIONS(5045), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118296] = 2, - ACTIONS(5057), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(190)] = 0, - [SMALL_STATE(191)] = 124, - [SMALL_STATE(192)] = 250, - [SMALL_STATE(193)] = 374, - [SMALL_STATE(194)] = 498, - [SMALL_STATE(195)] = 622, - [SMALL_STATE(196)] = 748, - [SMALL_STATE(197)] = 872, - [SMALL_STATE(198)] = 996, + [SMALL_STATE(191)] = 126, + [SMALL_STATE(192)] = 254, + [SMALL_STATE(193)] = 380, + [SMALL_STATE(194)] = 504, + [SMALL_STATE(195)] = 628, + [SMALL_STATE(196)] = 756, + [SMALL_STATE(197)] = 880, + [SMALL_STATE(198)] = 1004, [SMALL_STATE(199)] = 1124, - [SMALL_STATE(200)] = 1252, - [SMALL_STATE(201)] = 1378, - [SMALL_STATE(202)] = 1502, - [SMALL_STATE(203)] = 1626, - [SMALL_STATE(204)] = 1752, - [SMALL_STATE(205)] = 1876, - [SMALL_STATE(206)] = 2000, - [SMALL_STATE(207)] = 2124, - [SMALL_STATE(208)] = 2250, - [SMALL_STATE(209)] = 2374, - [SMALL_STATE(210)] = 2498, - [SMALL_STATE(211)] = 2624, - [SMALL_STATE(212)] = 2750, - [SMALL_STATE(213)] = 2870, - [SMALL_STATE(214)] = 2996, - [SMALL_STATE(215)] = 3120, - [SMALL_STATE(216)] = 3244, - [SMALL_STATE(217)] = 3368, - [SMALL_STATE(218)] = 3488, - [SMALL_STATE(219)] = 3608, + [SMALL_STATE(200)] = 1244, + [SMALL_STATE(201)] = 1364, + [SMALL_STATE(202)] = 1490, + [SMALL_STATE(203)] = 1614, + [SMALL_STATE(204)] = 1740, + [SMALL_STATE(205)] = 1864, + [SMALL_STATE(206)] = 1988, + [SMALL_STATE(207)] = 2114, + [SMALL_STATE(208)] = 2238, + [SMALL_STATE(209)] = 2362, + [SMALL_STATE(210)] = 2488, + [SMALL_STATE(211)] = 2612, + [SMALL_STATE(212)] = 2736, + [SMALL_STATE(213)] = 2862, + [SMALL_STATE(214)] = 2986, + [SMALL_STATE(215)] = 3110, + [SMALL_STATE(216)] = 3236, + [SMALL_STATE(217)] = 3360, + [SMALL_STATE(218)] = 3484, + [SMALL_STATE(219)] = 3610, [SMALL_STATE(220)] = 3734, [SMALL_STATE(221)] = 3858, [SMALL_STATE(222)] = 3982, @@ -124984,2581 +123790,2562 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(231)] = 5016, [SMALL_STATE(232)] = 5132, [SMALL_STATE(233)] = 5248, - [SMALL_STATE(234)] = 5364, - [SMALL_STATE(235)] = 5480, - [SMALL_STATE(236)] = 5593, - [SMALL_STATE(237)] = 5706, - [SMALL_STATE(238)] = 5819, - [SMALL_STATE(239)] = 5932, - [SMALL_STATE(240)] = 6049, - [SMALL_STATE(241)] = 6162, - [SMALL_STATE(242)] = 6275, - [SMALL_STATE(243)] = 6388, - [SMALL_STATE(244)] = 6501, - [SMALL_STATE(245)] = 6616, - [SMALL_STATE(246)] = 6727, - [SMALL_STATE(247)] = 6842, - [SMALL_STATE(248)] = 6957, - [SMALL_STATE(249)] = 7070, - [SMALL_STATE(250)] = 7175, - [SMALL_STATE(251)] = 7290, - [SMALL_STATE(252)] = 7403, - [SMALL_STATE(253)] = 7518, - [SMALL_STATE(254)] = 7631, - [SMALL_STATE(255)] = 7744, - [SMALL_STATE(256)] = 7857, - [SMALL_STATE(257)] = 7972, - [SMALL_STATE(258)] = 8085, - [SMALL_STATE(259)] = 8198, - [SMALL_STATE(260)] = 8313, - [SMALL_STATE(261)] = 8426, - [SMALL_STATE(262)] = 8539, - [SMALL_STATE(263)] = 8654, - [SMALL_STATE(264)] = 8767, - [SMALL_STATE(265)] = 8882, - [SMALL_STATE(266)] = 8995, - [SMALL_STATE(267)] = 9108, - [SMALL_STATE(268)] = 9221, - [SMALL_STATE(269)] = 9326, - [SMALL_STATE(270)] = 9439, - [SMALL_STATE(271)] = 9552, - [SMALL_STATE(272)] = 9665, - [SMALL_STATE(273)] = 9778, - [SMALL_STATE(274)] = 9890, - [SMALL_STATE(275)] = 10006, - [SMALL_STATE(276)] = 10118, - [SMALL_STATE(277)] = 10230, - [SMALL_STATE(278)] = 10346, - [SMALL_STATE(279)] = 10458, - [SMALL_STATE(280)] = 10570, - [SMALL_STATE(281)] = 10682, - [SMALL_STATE(282)] = 10794, - [SMALL_STATE(283)] = 10906, - [SMALL_STATE(284)] = 11018, - [SMALL_STATE(285)] = 11132, - [SMALL_STATE(286)] = 11244, - [SMALL_STATE(287)] = 11360, - [SMALL_STATE(288)] = 11472, - [SMALL_STATE(289)] = 11584, - [SMALL_STATE(290)] = 11696, - [SMALL_STATE(291)] = 11808, - [SMALL_STATE(292)] = 11920, - [SMALL_STATE(293)] = 12032, - [SMALL_STATE(294)] = 12144, - [SMALL_STATE(295)] = 12256, - [SMALL_STATE(296)] = 12370, - [SMALL_STATE(297)] = 12484, - [SMALL_STATE(298)] = 12596, - [SMALL_STATE(299)] = 12708, - [SMALL_STATE(300)] = 12820, - [SMALL_STATE(301)] = 12932, - [SMALL_STATE(302)] = 13044, - [SMALL_STATE(303)] = 13156, - [SMALL_STATE(304)] = 13268, - [SMALL_STATE(305)] = 13380, - [SMALL_STATE(306)] = 13494, - [SMALL_STATE(307)] = 13606, - [SMALL_STATE(308)] = 13720, - [SMALL_STATE(309)] = 13832, - [SMALL_STATE(310)] = 13948, - [SMALL_STATE(311)] = 14062, - [SMALL_STATE(312)] = 14174, - [SMALL_STATE(313)] = 14286, - [SMALL_STATE(314)] = 14398, - [SMALL_STATE(315)] = 14510, - [SMALL_STATE(316)] = 14622, - [SMALL_STATE(317)] = 14738, - [SMALL_STATE(318)] = 14854, - [SMALL_STATE(319)] = 14966, - [SMALL_STATE(320)] = 15078, - [SMALL_STATE(321)] = 15192, - [SMALL_STATE(322)] = 15304, - [SMALL_STATE(323)] = 15416, - [SMALL_STATE(324)] = 15528, - [SMALL_STATE(325)] = 15640, - [SMALL_STATE(326)] = 15754, - [SMALL_STATE(327)] = 15866, - [SMALL_STATE(328)] = 15975, - [SMALL_STATE(329)] = 16084, - [SMALL_STATE(330)] = 16193, - [SMALL_STATE(331)] = 16302, - [SMALL_STATE(332)] = 16411, - [SMALL_STATE(333)] = 16520, - [SMALL_STATE(334)] = 16625, - [SMALL_STATE(335)] = 16734, - [SMALL_STATE(336)] = 16843, - [SMALL_STATE(337)] = 16952, - [SMALL_STATE(338)] = 17061, - [SMALL_STATE(339)] = 17170, - [SMALL_STATE(340)] = 17279, - [SMALL_STATE(341)] = 17384, - [SMALL_STATE(342)] = 17493, - [SMALL_STATE(343)] = 17602, - [SMALL_STATE(344)] = 17711, - [SMALL_STATE(345)] = 17820, - [SMALL_STATE(346)] = 17929, - [SMALL_STATE(347)] = 18038, - [SMALL_STATE(348)] = 18135, - [SMALL_STATE(349)] = 18244, - [SMALL_STATE(350)] = 18350, - [SMALL_STATE(351)] = 18458, - [SMALL_STATE(352)] = 18566, - [SMALL_STATE(353)] = 18674, - [SMALL_STATE(354)] = 18782, - [SMALL_STATE(355)] = 18890, - [SMALL_STATE(356)] = 18998, - [SMALL_STATE(357)] = 19106, - [SMALL_STATE(358)] = 19214, - [SMALL_STATE(359)] = 19322, - [SMALL_STATE(360)] = 19430, - [SMALL_STATE(361)] = 19538, - [SMALL_STATE(362)] = 19646, - [SMALL_STATE(363)] = 19754, - [SMALL_STATE(364)] = 19862, - [SMALL_STATE(365)] = 19968, - [SMALL_STATE(366)] = 20076, - [SMALL_STATE(367)] = 20184, - [SMALL_STATE(368)] = 20292, - [SMALL_STATE(369)] = 20400, - [SMALL_STATE(370)] = 20508, - [SMALL_STATE(371)] = 20616, - [SMALL_STATE(372)] = 20722, - [SMALL_STATE(373)] = 20817, - [SMALL_STATE(374)] = 20924, - [SMALL_STATE(375)] = 21031, - [SMALL_STATE(376)] = 21138, - [SMALL_STATE(377)] = 21243, - [SMALL_STATE(378)] = 21350, - [SMALL_STATE(379)] = 21457, - [SMALL_STATE(380)] = 21564, - [SMALL_STATE(381)] = 21669, - [SMALL_STATE(382)] = 21776, - [SMALL_STATE(383)] = 21883, - [SMALL_STATE(384)] = 21990, - [SMALL_STATE(385)] = 22097, - [SMALL_STATE(386)] = 22204, - [SMALL_STATE(387)] = 22311, - [SMALL_STATE(388)] = 22418, - [SMALL_STATE(389)] = 22525, - [SMALL_STATE(390)] = 22632, - [SMALL_STATE(391)] = 22739, - [SMALL_STATE(392)] = 22846, - [SMALL_STATE(393)] = 22953, - [SMALL_STATE(394)] = 23060, - [SMALL_STATE(395)] = 23167, - [SMALL_STATE(396)] = 23274, - [SMALL_STATE(397)] = 23381, - [SMALL_STATE(398)] = 23486, - [SMALL_STATE(399)] = 23593, - [SMALL_STATE(400)] = 23698, - [SMALL_STATE(401)] = 23805, - [SMALL_STATE(402)] = 23912, - [SMALL_STATE(403)] = 24017, - [SMALL_STATE(404)] = 24122, - [SMALL_STATE(405)] = 24229, - [SMALL_STATE(406)] = 24336, - [SMALL_STATE(407)] = 24443, - [SMALL_STATE(408)] = 24538, - [SMALL_STATE(409)] = 24645, - [SMALL_STATE(410)] = 24752, - [SMALL_STATE(411)] = 24856, - [SMALL_STATE(412)] = 24958, - [SMALL_STATE(413)] = 25060, - [SMALL_STATE(414)] = 25162, - [SMALL_STATE(415)] = 25264, - [SMALL_STATE(416)] = 25366, - [SMALL_STATE(417)] = 25460, - [SMALL_STATE(418)] = 25554, - [SMALL_STATE(419)] = 25656, - [SMALL_STATE(420)] = 25758, - [SMALL_STATE(421)] = 25862, - [SMALL_STATE(422)] = 25966, - [SMALL_STATE(423)] = 26068, - [SMALL_STATE(424)] = 26172, - [SMALL_STATE(425)] = 26274, - [SMALL_STATE(426)] = 26376, - [SMALL_STATE(427)] = 26478, - [SMALL_STATE(428)] = 26580, - [SMALL_STATE(429)] = 26682, - [SMALL_STATE(430)] = 26786, - [SMALL_STATE(431)] = 26888, - [SMALL_STATE(432)] = 26990, - [SMALL_STATE(433)] = 27094, - [SMALL_STATE(434)] = 27196, - [SMALL_STATE(435)] = 27300, - [SMALL_STATE(436)] = 27402, - [SMALL_STATE(437)] = 27496, - [SMALL_STATE(438)] = 27600, - [SMALL_STATE(439)] = 27702, - [SMALL_STATE(440)] = 27798, - [SMALL_STATE(441)] = 27900, - [SMALL_STATE(442)] = 28002, - [SMALL_STATE(443)] = 28104, - [SMALL_STATE(444)] = 28206, - [SMALL_STATE(445)] = 28308, - [SMALL_STATE(446)] = 28410, - [SMALL_STATE(447)] = 28512, - [SMALL_STATE(448)] = 28614, - [SMALL_STATE(449)] = 28716, - [SMALL_STATE(450)] = 28810, - [SMALL_STATE(451)] = 28914, - [SMALL_STATE(452)] = 29018, - [SMALL_STATE(453)] = 29122, - [SMALL_STATE(454)] = 29226, - [SMALL_STATE(455)] = 29330, - [SMALL_STATE(456)] = 29434, - [SMALL_STATE(457)] = 29538, - [SMALL_STATE(458)] = 29642, - [SMALL_STATE(459)] = 29746, - [SMALL_STATE(460)] = 29850, - [SMALL_STATE(461)] = 29954, - [SMALL_STATE(462)] = 30056, - [SMALL_STATE(463)] = 30131, - [SMALL_STATE(464)] = 30232, - [SMALL_STATE(465)] = 30333, - [SMALL_STATE(466)] = 30434, - [SMALL_STATE(467)] = 30535, - [SMALL_STATE(468)] = 30636, - [SMALL_STATE(469)] = 30737, - [SMALL_STATE(470)] = 30838, - [SMALL_STATE(471)] = 30939, - [SMALL_STATE(472)] = 31014, - [SMALL_STATE(473)] = 31115, - [SMALL_STATE(474)] = 31216, - [SMALL_STATE(475)] = 31317, - [SMALL_STATE(476)] = 31418, - [SMALL_STATE(477)] = 31495, - [SMALL_STATE(478)] = 31570, - [SMALL_STATE(479)] = 31671, - [SMALL_STATE(480)] = 31772, - [SMALL_STATE(481)] = 31873, - [SMALL_STATE(482)] = 31971, - [SMALL_STATE(483)] = 32069, - [SMALL_STATE(484)] = 32167, - [SMALL_STATE(485)] = 32265, - [SMALL_STATE(486)] = 32363, - [SMALL_STATE(487)] = 32461, - [SMALL_STATE(488)] = 32559, - [SMALL_STATE(489)] = 32657, - [SMALL_STATE(490)] = 32755, - [SMALL_STATE(491)] = 32853, - [SMALL_STATE(492)] = 32951, - [SMALL_STATE(493)] = 33049, - [SMALL_STATE(494)] = 33147, - [SMALL_STATE(495)] = 33245, - [SMALL_STATE(496)] = 33317, - [SMALL_STATE(497)] = 33415, - [SMALL_STATE(498)] = 33513, - [SMALL_STATE(499)] = 33611, - [SMALL_STATE(500)] = 33709, - [SMALL_STATE(501)] = 33807, - [SMALL_STATE(502)] = 33905, - [SMALL_STATE(503)] = 34003, - [SMALL_STATE(504)] = 34075, - [SMALL_STATE(505)] = 34173, - [SMALL_STATE(506)] = 34271, - [SMALL_STATE(507)] = 34369, - [SMALL_STATE(508)] = 34467, - [SMALL_STATE(509)] = 34565, - [SMALL_STATE(510)] = 34663, - [SMALL_STATE(511)] = 34761, - [SMALL_STATE(512)] = 34859, - [SMALL_STATE(513)] = 34957, - [SMALL_STATE(514)] = 35057, - [SMALL_STATE(515)] = 35155, - [SMALL_STATE(516)] = 35253, - [SMALL_STATE(517)] = 35351, - [SMALL_STATE(518)] = 35449, - [SMALL_STATE(519)] = 35547, - [SMALL_STATE(520)] = 35645, - [SMALL_STATE(521)] = 35743, - [SMALL_STATE(522)] = 35841, - [SMALL_STATE(523)] = 35939, - [SMALL_STATE(524)] = 36037, - [SMALL_STATE(525)] = 36135, - [SMALL_STATE(526)] = 36235, - [SMALL_STATE(527)] = 36333, - [SMALL_STATE(528)] = 36431, - [SMALL_STATE(529)] = 36529, - [SMALL_STATE(530)] = 36627, - [SMALL_STATE(531)] = 36725, - [SMALL_STATE(532)] = 36823, - [SMALL_STATE(533)] = 36921, - [SMALL_STATE(534)] = 37019, - [SMALL_STATE(535)] = 37117, - [SMALL_STATE(536)] = 37215, - [SMALL_STATE(537)] = 37313, - [SMALL_STATE(538)] = 37411, - [SMALL_STATE(539)] = 37509, - [SMALL_STATE(540)] = 37607, - [SMALL_STATE(541)] = 37705, - [SMALL_STATE(542)] = 37803, - [SMALL_STATE(543)] = 37901, - [SMALL_STATE(544)] = 37999, - [SMALL_STATE(545)] = 38097, - [SMALL_STATE(546)] = 38197, - [SMALL_STATE(547)] = 38295, - [SMALL_STATE(548)] = 38393, - [SMALL_STATE(549)] = 38491, - [SMALL_STATE(550)] = 38589, - [SMALL_STATE(551)] = 38687, - [SMALL_STATE(552)] = 38785, - [SMALL_STATE(553)] = 38883, - [SMALL_STATE(554)] = 38981, - [SMALL_STATE(555)] = 39079, - [SMALL_STATE(556)] = 39177, - [SMALL_STATE(557)] = 39275, - [SMALL_STATE(558)] = 39373, - [SMALL_STATE(559)] = 39473, - [SMALL_STATE(560)] = 39571, - [SMALL_STATE(561)] = 39669, - [SMALL_STATE(562)] = 39767, - [SMALL_STATE(563)] = 39865, - [SMALL_STATE(564)] = 39963, - [SMALL_STATE(565)] = 40061, - [SMALL_STATE(566)] = 40161, - [SMALL_STATE(567)] = 40261, - [SMALL_STATE(568)] = 40359, - [SMALL_STATE(569)] = 40457, - [SMALL_STATE(570)] = 40557, - [SMALL_STATE(571)] = 40655, - [SMALL_STATE(572)] = 40753, - [SMALL_STATE(573)] = 40825, - [SMALL_STATE(574)] = 40897, - [SMALL_STATE(575)] = 40995, - [SMALL_STATE(576)] = 41093, - [SMALL_STATE(577)] = 41191, - [SMALL_STATE(578)] = 41289, - [SMALL_STATE(579)] = 41387, - [SMALL_STATE(580)] = 41485, - [SMALL_STATE(581)] = 41583, - [SMALL_STATE(582)] = 41681, - [SMALL_STATE(583)] = 41779, - [SMALL_STATE(584)] = 41877, - [SMALL_STATE(585)] = 41975, - [SMALL_STATE(586)] = 42073, - [SMALL_STATE(587)] = 42171, - [SMALL_STATE(588)] = 42269, - [SMALL_STATE(589)] = 42341, - [SMALL_STATE(590)] = 42413, - [SMALL_STATE(591)] = 42511, - [SMALL_STATE(592)] = 42609, - [SMALL_STATE(593)] = 42707, - [SMALL_STATE(594)] = 42805, - [SMALL_STATE(595)] = 42903, - [SMALL_STATE(596)] = 43001, - [SMALL_STATE(597)] = 43099, - [SMALL_STATE(598)] = 43197, - [SMALL_STATE(599)] = 43295, - [SMALL_STATE(600)] = 43393, - [SMALL_STATE(601)] = 43491, - [SMALL_STATE(602)] = 43589, - [SMALL_STATE(603)] = 43687, - [SMALL_STATE(604)] = 43785, - [SMALL_STATE(605)] = 43883, - [SMALL_STATE(606)] = 43981, - [SMALL_STATE(607)] = 44079, - [SMALL_STATE(608)] = 44151, - [SMALL_STATE(609)] = 44223, - [SMALL_STATE(610)] = 44321, - [SMALL_STATE(611)] = 44419, - [SMALL_STATE(612)] = 44492, - [SMALL_STATE(613)] = 44558, - [SMALL_STATE(614)] = 44620, - [SMALL_STATE(615)] = 44688, - [SMALL_STATE(616)] = 44756, - [SMALL_STATE(617)] = 44822, - [SMALL_STATE(618)] = 44890, - [SMALL_STATE(619)] = 44958, - [SMALL_STATE(620)] = 45026, - [SMALL_STATE(621)] = 45094, - [SMALL_STATE(622)] = 45162, - [SMALL_STATE(623)] = 45230, - [SMALL_STATE(624)] = 45298, - [SMALL_STATE(625)] = 45364, - [SMALL_STATE(626)] = 45432, - [SMALL_STATE(627)] = 45494, - [SMALL_STATE(628)] = 45556, - [SMALL_STATE(629)] = 45618, - [SMALL_STATE(630)] = 45681, - [SMALL_STATE(631)] = 45744, - [SMALL_STATE(632)] = 45805, - [SMALL_STATE(633)] = 45866, - [SMALL_STATE(634)] = 45929, - [SMALL_STATE(635)] = 45986, - [SMALL_STATE(636)] = 46043, - [SMALL_STATE(637)] = 46100, - [SMALL_STATE(638)] = 46157, - [SMALL_STATE(639)] = 46220, - [SMALL_STATE(640)] = 46281, - [SMALL_STATE(641)] = 46344, - [SMALL_STATE(642)] = 46407, - [SMALL_STATE(643)] = 46464, - [SMALL_STATE(644)] = 46529, - [SMALL_STATE(645)] = 46592, - [SMALL_STATE(646)] = 46655, - [SMALL_STATE(647)] = 46718, - [SMALL_STATE(648)] = 46781, - [SMALL_STATE(649)] = 46838, - [SMALL_STATE(650)] = 46895, - [SMALL_STATE(651)] = 46951, - [SMALL_STATE(652)] = 47007, - [SMALL_STATE(653)] = 47099, - [SMALL_STATE(654)] = 47155, - [SMALL_STATE(655)] = 47211, - [SMALL_STATE(656)] = 47267, - [SMALL_STATE(657)] = 47323, - [SMALL_STATE(658)] = 47379, - [SMALL_STATE(659)] = 47435, - [SMALL_STATE(660)] = 47491, - [SMALL_STATE(661)] = 47547, - [SMALL_STATE(662)] = 47603, - [SMALL_STATE(663)] = 47659, - [SMALL_STATE(664)] = 47715, - [SMALL_STATE(665)] = 47771, - [SMALL_STATE(666)] = 47827, - [SMALL_STATE(667)] = 47883, - [SMALL_STATE(668)] = 47939, - [SMALL_STATE(669)] = 47995, - [SMALL_STATE(670)] = 48051, - [SMALL_STATE(671)] = 48107, - [SMALL_STATE(672)] = 48163, - [SMALL_STATE(673)] = 48219, - [SMALL_STATE(674)] = 48275, - [SMALL_STATE(675)] = 48331, - [SMALL_STATE(676)] = 48387, - [SMALL_STATE(677)] = 48443, - [SMALL_STATE(678)] = 48499, - [SMALL_STATE(679)] = 48555, - [SMALL_STATE(680)] = 48611, - [SMALL_STATE(681)] = 48667, - [SMALL_STATE(682)] = 48723, - [SMALL_STATE(683)] = 48779, - [SMALL_STATE(684)] = 48835, - [SMALL_STATE(685)] = 48891, - [SMALL_STATE(686)] = 48983, - [SMALL_STATE(687)] = 49039, - [SMALL_STATE(688)] = 49095, - [SMALL_STATE(689)] = 49151, - [SMALL_STATE(690)] = 49207, - [SMALL_STATE(691)] = 49263, - [SMALL_STATE(692)] = 49319, - [SMALL_STATE(693)] = 49375, - [SMALL_STATE(694)] = 49431, - [SMALL_STATE(695)] = 49487, - [SMALL_STATE(696)] = 49543, - [SMALL_STATE(697)] = 49599, - [SMALL_STATE(698)] = 49655, - [SMALL_STATE(699)] = 49711, - [SMALL_STATE(700)] = 49767, - [SMALL_STATE(701)] = 49823, - [SMALL_STATE(702)] = 49879, - [SMALL_STATE(703)] = 49934, - [SMALL_STATE(704)] = 49993, - [SMALL_STATE(705)] = 50052, - [SMALL_STATE(706)] = 50111, - [SMALL_STATE(707)] = 50170, - [SMALL_STATE(708)] = 50229, - [SMALL_STATE(709)] = 50288, - [SMALL_STATE(710)] = 50347, - [SMALL_STATE(711)] = 50406, - [SMALL_STATE(712)] = 50465, - [SMALL_STATE(713)] = 50524, - [SMALL_STATE(714)] = 50579, - [SMALL_STATE(715)] = 50638, - [SMALL_STATE(716)] = 50697, - [SMALL_STATE(717)] = 50752, - [SMALL_STATE(718)] = 50807, - [SMALL_STATE(719)] = 50866, - [SMALL_STATE(720)] = 50921, - [SMALL_STATE(721)] = 50980, - [SMALL_STATE(722)] = 51039, - [SMALL_STATE(723)] = 51094, - [SMALL_STATE(724)] = 51153, - [SMALL_STATE(725)] = 51207, - [SMALL_STATE(726)] = 51261, - [SMALL_STATE(727)] = 51315, - [SMALL_STATE(728)] = 51407, - [SMALL_STATE(729)] = 51499, - [SMALL_STATE(730)] = 51553, - [SMALL_STATE(731)] = 51606, - [SMALL_STATE(732)] = 51659, - [SMALL_STATE(733)] = 51712, - [SMALL_STATE(734)] = 51765, - [SMALL_STATE(735)] = 51818, - [SMALL_STATE(736)] = 51871, - [SMALL_STATE(737)] = 51924, - [SMALL_STATE(738)] = 51977, - [SMALL_STATE(739)] = 52030, - [SMALL_STATE(740)] = 52083, - [SMALL_STATE(741)] = 52136, - [SMALL_STATE(742)] = 52189, - [SMALL_STATE(743)] = 52278, - [SMALL_STATE(744)] = 52331, - [SMALL_STATE(745)] = 52384, - [SMALL_STATE(746)] = 52437, - [SMALL_STATE(747)] = 52490, - [SMALL_STATE(748)] = 52543, - [SMALL_STATE(749)] = 52596, - [SMALL_STATE(750)] = 52649, - [SMALL_STATE(751)] = 52702, - [SMALL_STATE(752)] = 52755, - [SMALL_STATE(753)] = 52808, - [SMALL_STATE(754)] = 52861, - [SMALL_STATE(755)] = 52914, - [SMALL_STATE(756)] = 52967, - [SMALL_STATE(757)] = 53020, - [SMALL_STATE(758)] = 53073, - [SMALL_STATE(759)] = 53126, - [SMALL_STATE(760)] = 53179, - [SMALL_STATE(761)] = 53232, - [SMALL_STATE(762)] = 53285, - [SMALL_STATE(763)] = 53338, - [SMALL_STATE(764)] = 53391, - [SMALL_STATE(765)] = 53444, - [SMALL_STATE(766)] = 53497, - [SMALL_STATE(767)] = 53550, - [SMALL_STATE(768)] = 53603, - [SMALL_STATE(769)] = 53656, - [SMALL_STATE(770)] = 53745, - [SMALL_STATE(771)] = 53798, - [SMALL_STATE(772)] = 53887, - [SMALL_STATE(773)] = 53940, - [SMALL_STATE(774)] = 53993, - [SMALL_STATE(775)] = 54046, - [SMALL_STATE(776)] = 54099, - [SMALL_STATE(777)] = 54152, - [SMALL_STATE(778)] = 54205, - [SMALL_STATE(779)] = 54258, - [SMALL_STATE(780)] = 54311, - [SMALL_STATE(781)] = 54364, - [SMALL_STATE(782)] = 54417, - [SMALL_STATE(783)] = 54470, - [SMALL_STATE(784)] = 54523, - [SMALL_STATE(785)] = 54576, - [SMALL_STATE(786)] = 54629, - [SMALL_STATE(787)] = 54682, - [SMALL_STATE(788)] = 54735, - [SMALL_STATE(789)] = 54788, - [SMALL_STATE(790)] = 54841, - [SMALL_STATE(791)] = 54894, - [SMALL_STATE(792)] = 54947, - [SMALL_STATE(793)] = 55000, - [SMALL_STATE(794)] = 55053, - [SMALL_STATE(795)] = 55106, - [SMALL_STATE(796)] = 55195, - [SMALL_STATE(797)] = 55248, - [SMALL_STATE(798)] = 55301, - [SMALL_STATE(799)] = 55354, - [SMALL_STATE(800)] = 55407, - [SMALL_STATE(801)] = 55460, - [SMALL_STATE(802)] = 55513, - [SMALL_STATE(803)] = 55566, - [SMALL_STATE(804)] = 55619, - [SMALL_STATE(805)] = 55708, - [SMALL_STATE(806)] = 55761, - [SMALL_STATE(807)] = 55814, - [SMALL_STATE(808)] = 55867, - [SMALL_STATE(809)] = 55956, - [SMALL_STATE(810)] = 56009, - [SMALL_STATE(811)] = 56098, - [SMALL_STATE(812)] = 56151, - [SMALL_STATE(813)] = 56204, - [SMALL_STATE(814)] = 56257, - [SMALL_STATE(815)] = 56310, - [SMALL_STATE(816)] = 56363, - [SMALL_STATE(817)] = 56416, - [SMALL_STATE(818)] = 56469, - [SMALL_STATE(819)] = 56522, - [SMALL_STATE(820)] = 56575, - [SMALL_STATE(821)] = 56628, - [SMALL_STATE(822)] = 56681, - [SMALL_STATE(823)] = 56734, - [SMALL_STATE(824)] = 56787, - [SMALL_STATE(825)] = 56840, - [SMALL_STATE(826)] = 56893, - [SMALL_STATE(827)] = 56946, - [SMALL_STATE(828)] = 56999, - [SMALL_STATE(829)] = 57088, - [SMALL_STATE(830)] = 57141, - [SMALL_STATE(831)] = 57194, - [SMALL_STATE(832)] = 57247, - [SMALL_STATE(833)] = 57300, - [SMALL_STATE(834)] = 57353, - [SMALL_STATE(835)] = 57406, - [SMALL_STATE(836)] = 57459, - [SMALL_STATE(837)] = 57512, - [SMALL_STATE(838)] = 57601, - [SMALL_STATE(839)] = 57654, - [SMALL_STATE(840)] = 57707, - [SMALL_STATE(841)] = 57796, - [SMALL_STATE(842)] = 57885, - [SMALL_STATE(843)] = 57974, - [SMALL_STATE(844)] = 58027, - [SMALL_STATE(845)] = 58080, - [SMALL_STATE(846)] = 58133, - [SMALL_STATE(847)] = 58186, - [SMALL_STATE(848)] = 58239, - [SMALL_STATE(849)] = 58292, - [SMALL_STATE(850)] = 58345, - [SMALL_STATE(851)] = 58434, - [SMALL_STATE(852)] = 58523, - [SMALL_STATE(853)] = 58612, - [SMALL_STATE(854)] = 58701, - [SMALL_STATE(855)] = 58787, - [SMALL_STATE(856)] = 58873, - [SMALL_STATE(857)] = 58959, - [SMALL_STATE(858)] = 59045, - [SMALL_STATE(859)] = 59131, - [SMALL_STATE(860)] = 59217, - [SMALL_STATE(861)] = 59300, - [SMALL_STATE(862)] = 59383, - [SMALL_STATE(863)] = 59461, - [SMALL_STATE(864)] = 59539, - [SMALL_STATE(865)] = 59617, - [SMALL_STATE(866)] = 59695, - [SMALL_STATE(867)] = 59773, - [SMALL_STATE(868)] = 59851, - [SMALL_STATE(869)] = 59929, - [SMALL_STATE(870)] = 60007, - [SMALL_STATE(871)] = 60093, - [SMALL_STATE(872)] = 60168, - [SMALL_STATE(873)] = 60243, - [SMALL_STATE(874)] = 60318, - [SMALL_STATE(875)] = 60393, - [SMALL_STATE(876)] = 60468, - [SMALL_STATE(877)] = 60543, - [SMALL_STATE(878)] = 60618, - [SMALL_STATE(879)] = 60693, - [SMALL_STATE(880)] = 60768, - [SMALL_STATE(881)] = 60843, - [SMALL_STATE(882)] = 60918, - [SMALL_STATE(883)] = 60993, - [SMALL_STATE(884)] = 61068, - [SMALL_STATE(885)] = 61143, - [SMALL_STATE(886)] = 61218, - [SMALL_STATE(887)] = 61293, - [SMALL_STATE(888)] = 61368, - [SMALL_STATE(889)] = 61443, - [SMALL_STATE(890)] = 61522, - [SMALL_STATE(891)] = 61601, - [SMALL_STATE(892)] = 61676, - [SMALL_STATE(893)] = 61751, - [SMALL_STATE(894)] = 61826, - [SMALL_STATE(895)] = 61901, - [SMALL_STATE(896)] = 61976, - [SMALL_STATE(897)] = 62055, - [SMALL_STATE(898)] = 62130, - [SMALL_STATE(899)] = 62205, - [SMALL_STATE(900)] = 62284, - [SMALL_STATE(901)] = 62359, - [SMALL_STATE(902)] = 62434, - [SMALL_STATE(903)] = 62509, - [SMALL_STATE(904)] = 62584, - [SMALL_STATE(905)] = 62659, - [SMALL_STATE(906)] = 62734, - [SMALL_STATE(907)] = 62809, - [SMALL_STATE(908)] = 62884, - [SMALL_STATE(909)] = 62959, - [SMALL_STATE(910)] = 63034, - [SMALL_STATE(911)] = 63113, - [SMALL_STATE(912)] = 63188, - [SMALL_STATE(913)] = 63267, - [SMALL_STATE(914)] = 63346, - [SMALL_STATE(915)] = 63425, - [SMALL_STATE(916)] = 63504, - [SMALL_STATE(917)] = 63579, - [SMALL_STATE(918)] = 63654, - [SMALL_STATE(919)] = 63729, - [SMALL_STATE(920)] = 63804, - [SMALL_STATE(921)] = 63879, - [SMALL_STATE(922)] = 63954, - [SMALL_STATE(923)] = 64029, - [SMALL_STATE(924)] = 64104, - [SMALL_STATE(925)] = 64179, - [SMALL_STATE(926)] = 64258, - [SMALL_STATE(927)] = 64337, - [SMALL_STATE(928)] = 64422, - [SMALL_STATE(929)] = 64507, - [SMALL_STATE(930)] = 64582, - [SMALL_STATE(931)] = 64661, - [SMALL_STATE(932)] = 64736, - [SMALL_STATE(933)] = 64811, - [SMALL_STATE(934)] = 64886, - [SMALL_STATE(935)] = 64961, - [SMALL_STATE(936)] = 65036, - [SMALL_STATE(937)] = 65111, - [SMALL_STATE(938)] = 65186, - [SMALL_STATE(939)] = 65265, - [SMALL_STATE(940)] = 65340, - [SMALL_STATE(941)] = 65415, - [SMALL_STATE(942)] = 65490, - [SMALL_STATE(943)] = 65565, - [SMALL_STATE(944)] = 65640, - [SMALL_STATE(945)] = 65715, - [SMALL_STATE(946)] = 65790, - [SMALL_STATE(947)] = 65865, - [SMALL_STATE(948)] = 65944, - [SMALL_STATE(949)] = 66019, - [SMALL_STATE(950)] = 66094, - [SMALL_STATE(951)] = 66173, - [SMALL_STATE(952)] = 66248, - [SMALL_STATE(953)] = 66327, - [SMALL_STATE(954)] = 66402, - [SMALL_STATE(955)] = 66477, - [SMALL_STATE(956)] = 66552, - [SMALL_STATE(957)] = 66627, - [SMALL_STATE(958)] = 66702, - [SMALL_STATE(959)] = 66781, - [SMALL_STATE(960)] = 66860, - [SMALL_STATE(961)] = 66939, - [SMALL_STATE(962)] = 67014, - [SMALL_STATE(963)] = 67093, - [SMALL_STATE(964)] = 67168, - [SMALL_STATE(965)] = 67253, - [SMALL_STATE(966)] = 67328, - [SMALL_STATE(967)] = 67380, - [SMALL_STATE(968)] = 67464, - [SMALL_STATE(969)] = 67546, - [SMALL_STATE(970)] = 67598, - [SMALL_STATE(971)] = 67650, - [SMALL_STATE(972)] = 67734, - [SMALL_STATE(973)] = 67818, - [SMALL_STATE(974)] = 67875, - [SMALL_STATE(975)] = 67940, - [SMALL_STATE(976)] = 67997, - [SMALL_STATE(977)] = 68054, - [SMALL_STATE(978)] = 68105, - [SMALL_STATE(979)] = 68156, - [SMALL_STATE(980)] = 68207, - [SMALL_STATE(981)] = 68258, - [SMALL_STATE(982)] = 68309, - [SMALL_STATE(983)] = 68360, - [SMALL_STATE(984)] = 68411, - [SMALL_STATE(985)] = 68462, - [SMALL_STATE(986)] = 68513, - [SMALL_STATE(987)] = 68570, - [SMALL_STATE(988)] = 68633, - [SMALL_STATE(989)] = 68704, - [SMALL_STATE(990)] = 68765, - [SMALL_STATE(991)] = 68834, - [SMALL_STATE(992)] = 68901, - [SMALL_STATE(993)] = 68982, - [SMALL_STATE(994)] = 69038, - [SMALL_STATE(995)] = 69088, - [SMALL_STATE(996)] = 69138, - [SMALL_STATE(997)] = 69190, - [SMALL_STATE(998)] = 69242, - [SMALL_STATE(999)] = 69298, - [SMALL_STATE(1000)] = 69354, - [SMALL_STATE(1001)] = 69402, - [SMALL_STATE(1002)] = 69448, - [SMALL_STATE(1003)] = 69504, - [SMALL_STATE(1004)] = 69566, - [SMALL_STATE(1005)] = 69636, - [SMALL_STATE(1006)] = 69692, - [SMALL_STATE(1007)] = 69752, - [SMALL_STATE(1008)] = 69820, - [SMALL_STATE(1009)] = 69886, - [SMALL_STATE(1010)] = 69950, - [SMALL_STATE(1011)] = 70006, - [SMALL_STATE(1012)] = 70062, - [SMALL_STATE(1013)] = 70110, - [SMALL_STATE(1014)] = 70166, - [SMALL_STATE(1015)] = 70222, - [SMALL_STATE(1016)] = 70268, - [SMALL_STATE(1017)] = 70314, - [SMALL_STATE(1018)] = 70378, - [SMALL_STATE(1019)] = 70440, - [SMALL_STATE(1020)] = 70510, - [SMALL_STATE(1021)] = 70560, - [SMALL_STATE(1022)] = 70620, - [SMALL_STATE(1023)] = 70688, - [SMALL_STATE(1024)] = 70754, - [SMALL_STATE(1025)] = 70818, - [SMALL_STATE(1026)] = 70868, - [SMALL_STATE(1027)] = 70916, - [SMALL_STATE(1028)] = 70962, - [SMALL_STATE(1029)] = 71008, - [SMALL_STATE(1030)] = 71054, - [SMALL_STATE(1031)] = 71100, - [SMALL_STATE(1032)] = 71146, - [SMALL_STATE(1033)] = 71192, - [SMALL_STATE(1034)] = 71272, - [SMALL_STATE(1035)] = 71322, - [SMALL_STATE(1036)] = 71372, - [SMALL_STATE(1037)] = 71422, - [SMALL_STATE(1038)] = 71502, - [SMALL_STATE(1039)] = 71558, - [SMALL_STATE(1040)] = 71620, - [SMALL_STATE(1041)] = 71690, - [SMALL_STATE(1042)] = 71746, - [SMALL_STATE(1043)] = 71806, - [SMALL_STATE(1044)] = 71874, - [SMALL_STATE(1045)] = 71924, - [SMALL_STATE(1046)] = 71990, - [SMALL_STATE(1047)] = 72040, - [SMALL_STATE(1048)] = 72120, - [SMALL_STATE(1049)] = 72176, - [SMALL_STATE(1050)] = 72221, - [SMALL_STATE(1051)] = 72266, - [SMALL_STATE(1052)] = 72313, - [SMALL_STATE(1053)] = 72368, - [SMALL_STATE(1054)] = 72423, - [SMALL_STATE(1055)] = 72468, - [SMALL_STATE(1056)] = 72527, - [SMALL_STATE(1057)] = 72578, - [SMALL_STATE(1058)] = 72629, - [SMALL_STATE(1059)] = 72680, - [SMALL_STATE(1060)] = 72725, - [SMALL_STATE(1061)] = 72780, - [SMALL_STATE(1062)] = 72841, - [SMALL_STATE(1063)] = 72910, - [SMALL_STATE(1064)] = 72965, - [SMALL_STATE(1065)] = 73024, - [SMALL_STATE(1066)] = 73069, - [SMALL_STATE(1067)] = 73116, - [SMALL_STATE(1068)] = 73163, - [SMALL_STATE(1069)] = 73210, - [SMALL_STATE(1070)] = 73277, - [SMALL_STATE(1071)] = 73342, - [SMALL_STATE(1072)] = 73411, - [SMALL_STATE(1073)] = 73474, - [SMALL_STATE(1074)] = 73519, - [SMALL_STATE(1075)] = 73564, - [SMALL_STATE(1076)] = 73609, - [SMALL_STATE(1077)] = 73654, - [SMALL_STATE(1078)] = 73699, - [SMALL_STATE(1079)] = 73744, - [SMALL_STATE(1080)] = 73789, - [SMALL_STATE(1081)] = 73834, - [SMALL_STATE(1082)] = 73879, - [SMALL_STATE(1083)] = 73928, - [SMALL_STATE(1084)] = 73973, - [SMALL_STATE(1085)] = 74018, - [SMALL_STATE(1086)] = 74067, - [SMALL_STATE(1087)] = 74118, - [SMALL_STATE(1088)] = 74169, - [SMALL_STATE(1089)] = 74236, - [SMALL_STATE(1090)] = 74281, - [SMALL_STATE(1091)] = 74346, - [SMALL_STATE(1092)] = 74391, - [SMALL_STATE(1093)] = 74436, - [SMALL_STATE(1094)] = 74481, - [SMALL_STATE(1095)] = 74526, - [SMALL_STATE(1096)] = 74571, - [SMALL_STATE(1097)] = 74626, - [SMALL_STATE(1098)] = 74681, - [SMALL_STATE(1099)] = 74726, - [SMALL_STATE(1100)] = 74771, - [SMALL_STATE(1101)] = 74826, - [SMALL_STATE(1102)] = 74881, - [SMALL_STATE(1103)] = 74950, - [SMALL_STATE(1104)] = 75005, - [SMALL_STATE(1105)] = 75064, - [SMALL_STATE(1106)] = 75131, - [SMALL_STATE(1107)] = 75196, - [SMALL_STATE(1108)] = 75259, - [SMALL_STATE(1109)] = 75304, - [SMALL_STATE(1110)] = 75349, - [SMALL_STATE(1111)] = 75398, - [SMALL_STATE(1112)] = 75445, - [SMALL_STATE(1113)] = 75492, - [SMALL_STATE(1114)] = 75539, - [SMALL_STATE(1115)] = 75584, - [SMALL_STATE(1116)] = 75629, - [SMALL_STATE(1117)] = 75678, - [SMALL_STATE(1118)] = 75727, - [SMALL_STATE(1119)] = 75772, - [SMALL_STATE(1120)] = 75817, - [SMALL_STATE(1121)] = 75862, - [SMALL_STATE(1122)] = 75907, - [SMALL_STATE(1123)] = 75956, - [SMALL_STATE(1124)] = 76005, - [SMALL_STATE(1125)] = 76054, - [SMALL_STATE(1126)] = 76117, - [SMALL_STATE(1127)] = 76162, - [SMALL_STATE(1128)] = 76217, - [SMALL_STATE(1129)] = 76270, - [SMALL_STATE(1130)] = 76319, - [SMALL_STATE(1131)] = 76368, - [SMALL_STATE(1132)] = 76417, - [SMALL_STATE(1133)] = 76462, - [SMALL_STATE(1134)] = 76523, - [SMALL_STATE(1135)] = 76568, - [SMALL_STATE(1136)] = 76613, - [SMALL_STATE(1137)] = 76664, - [SMALL_STATE(1138)] = 76715, - [SMALL_STATE(1139)] = 76770, - [SMALL_STATE(1140)] = 76825, - [SMALL_STATE(1141)] = 76874, - [SMALL_STATE(1142)] = 76925, - [SMALL_STATE(1143)] = 76976, - [SMALL_STATE(1144)] = 77021, - [SMALL_STATE(1145)] = 77068, - [SMALL_STATE(1146)] = 77113, - [SMALL_STATE(1147)] = 77160, - [SMALL_STATE(1148)] = 77205, - [SMALL_STATE(1149)] = 77266, - [SMALL_STATE(1150)] = 77314, - [SMALL_STATE(1151)] = 77358, - [SMALL_STATE(1152)] = 77402, - [SMALL_STATE(1153)] = 77446, - [SMALL_STATE(1154)] = 77492, - [SMALL_STATE(1155)] = 77538, - [SMALL_STATE(1156)] = 77584, - [SMALL_STATE(1157)] = 77632, - [SMALL_STATE(1158)] = 77680, - [SMALL_STATE(1159)] = 77726, - [SMALL_STATE(1160)] = 77772, - [SMALL_STATE(1161)] = 77818, - [SMALL_STATE(1162)] = 77864, - [SMALL_STATE(1163)] = 77910, - [SMALL_STATE(1164)] = 77954, - [SMALL_STATE(1165)] = 77998, - [SMALL_STATE(1166)] = 78042, - [SMALL_STATE(1167)] = 78086, - [SMALL_STATE(1168)] = 78130, - [SMALL_STATE(1169)] = 78178, - [SMALL_STATE(1170)] = 78226, - [SMALL_STATE(1171)] = 78274, - [SMALL_STATE(1172)] = 78318, - [SMALL_STATE(1173)] = 78362, - [SMALL_STATE(1174)] = 78406, - [SMALL_STATE(1175)] = 78450, - [SMALL_STATE(1176)] = 78494, - [SMALL_STATE(1177)] = 78538, - [SMALL_STATE(1178)] = 78582, - [SMALL_STATE(1179)] = 78626, - [SMALL_STATE(1180)] = 78670, - [SMALL_STATE(1181)] = 78714, - [SMALL_STATE(1182)] = 78758, - [SMALL_STATE(1183)] = 78802, - [SMALL_STATE(1184)] = 78846, - [SMALL_STATE(1185)] = 78890, - [SMALL_STATE(1186)] = 78934, - [SMALL_STATE(1187)] = 78978, - [SMALL_STATE(1188)] = 79022, - [SMALL_STATE(1189)] = 79066, - [SMALL_STATE(1190)] = 79110, - [SMALL_STATE(1191)] = 79154, - [SMALL_STATE(1192)] = 79198, - [SMALL_STATE(1193)] = 79242, - [SMALL_STATE(1194)] = 79286, - [SMALL_STATE(1195)] = 79330, - [SMALL_STATE(1196)] = 79374, - [SMALL_STATE(1197)] = 79418, - [SMALL_STATE(1198)] = 79462, - [SMALL_STATE(1199)] = 79506, - [SMALL_STATE(1200)] = 79552, - [SMALL_STATE(1201)] = 79596, - [SMALL_STATE(1202)] = 79644, - [SMALL_STATE(1203)] = 79688, - [SMALL_STATE(1204)] = 79732, - [SMALL_STATE(1205)] = 79776, - [SMALL_STATE(1206)] = 79820, - [SMALL_STATE(1207)] = 79864, - [SMALL_STATE(1208)] = 79908, - [SMALL_STATE(1209)] = 79952, - [SMALL_STATE(1210)] = 79996, - [SMALL_STATE(1211)] = 80040, - [SMALL_STATE(1212)] = 80084, - [SMALL_STATE(1213)] = 80128, - [SMALL_STATE(1214)] = 80172, - [SMALL_STATE(1215)] = 80216, - [SMALL_STATE(1216)] = 80260, - [SMALL_STATE(1217)] = 80304, - [SMALL_STATE(1218)] = 80348, - [SMALL_STATE(1219)] = 80392, - [SMALL_STATE(1220)] = 80436, - [SMALL_STATE(1221)] = 80480, - [SMALL_STATE(1222)] = 80524, - [SMALL_STATE(1223)] = 80568, - [SMALL_STATE(1224)] = 80612, - [SMALL_STATE(1225)] = 80656, - [SMALL_STATE(1226)] = 80700, - [SMALL_STATE(1227)] = 80744, - [SMALL_STATE(1228)] = 80788, - [SMALL_STATE(1229)] = 80832, - [SMALL_STATE(1230)] = 80876, - [SMALL_STATE(1231)] = 80920, - [SMALL_STATE(1232)] = 80964, - [SMALL_STATE(1233)] = 81010, - [SMALL_STATE(1234)] = 81054, - [SMALL_STATE(1235)] = 81100, - [SMALL_STATE(1236)] = 81146, - [SMALL_STATE(1237)] = 81190, - [SMALL_STATE(1238)] = 81234, - [SMALL_STATE(1239)] = 81284, - [SMALL_STATE(1240)] = 81328, - [SMALL_STATE(1241)] = 81372, - [SMALL_STATE(1242)] = 81416, - [SMALL_STATE(1243)] = 81460, - [SMALL_STATE(1244)] = 81504, - [SMALL_STATE(1245)] = 81548, - [SMALL_STATE(1246)] = 81592, - [SMALL_STATE(1247)] = 81642, - [SMALL_STATE(1248)] = 81686, - [SMALL_STATE(1249)] = 81734, - [SMALL_STATE(1250)] = 81778, - [SMALL_STATE(1251)] = 81822, - [SMALL_STATE(1252)] = 81876, - [SMALL_STATE(1253)] = 81930, - [SMALL_STATE(1254)] = 81974, - [SMALL_STATE(1255)] = 82018, - [SMALL_STATE(1256)] = 82062, - [SMALL_STATE(1257)] = 82116, - [SMALL_STATE(1258)] = 82176, - [SMALL_STATE(1259)] = 82244, - [SMALL_STATE(1260)] = 82298, - [SMALL_STATE(1261)] = 82356, - [SMALL_STATE(1262)] = 82422, - [SMALL_STATE(1263)] = 82486, - [SMALL_STATE(1264)] = 82548, - [SMALL_STATE(1265)] = 82596, - [SMALL_STATE(1266)] = 82644, - [SMALL_STATE(1267)] = 82692, - [SMALL_STATE(1268)] = 82740, - [SMALL_STATE(1269)] = 82788, - [SMALL_STATE(1270)] = 82836, - [SMALL_STATE(1271)] = 82880, - [SMALL_STATE(1272)] = 82924, - [SMALL_STATE(1273)] = 82968, - [SMALL_STATE(1274)] = 83012, - [SMALL_STATE(1275)] = 83056, - [SMALL_STATE(1276)] = 83100, - [SMALL_STATE(1277)] = 83144, - [SMALL_STATE(1278)] = 83192, - [SMALL_STATE(1279)] = 83240, - [SMALL_STATE(1280)] = 83288, - [SMALL_STATE(1281)] = 83332, - [SMALL_STATE(1282)] = 83380, - [SMALL_STATE(1283)] = 83424, - [SMALL_STATE(1284)] = 83470, - [SMALL_STATE(1285)] = 83516, - [SMALL_STATE(1286)] = 83562, - [SMALL_STATE(1287)] = 83606, - [SMALL_STATE(1288)] = 83650, - [SMALL_STATE(1289)] = 83694, - [SMALL_STATE(1290)] = 83738, - [SMALL_STATE(1291)] = 83782, - [SMALL_STATE(1292)] = 83826, - [SMALL_STATE(1293)] = 83874, - [SMALL_STATE(1294)] = 83918, - [SMALL_STATE(1295)] = 83962, - [SMALL_STATE(1296)] = 84006, - [SMALL_STATE(1297)] = 84050, - [SMALL_STATE(1298)] = 84100, - [SMALL_STATE(1299)] = 84150, - [SMALL_STATE(1300)] = 84194, - [SMALL_STATE(1301)] = 84238, - [SMALL_STATE(1302)] = 84282, - [SMALL_STATE(1303)] = 84325, - [SMALL_STATE(1304)] = 84370, - [SMALL_STATE(1305)] = 84417, - [SMALL_STATE(1306)] = 84464, - [SMALL_STATE(1307)] = 84509, - [SMALL_STATE(1308)] = 84554, - [SMALL_STATE(1309)] = 84599, - [SMALL_STATE(1310)] = 84642, - [SMALL_STATE(1311)] = 84685, - [SMALL_STATE(1312)] = 84728, - [SMALL_STATE(1313)] = 84771, - [SMALL_STATE(1314)] = 84814, - [SMALL_STATE(1315)] = 84857, - [SMALL_STATE(1316)] = 84900, - [SMALL_STATE(1317)] = 84943, - [SMALL_STATE(1318)] = 84986, - [SMALL_STATE(1319)] = 85029, - [SMALL_STATE(1320)] = 85072, - [SMALL_STATE(1321)] = 85115, - [SMALL_STATE(1322)] = 85158, - [SMALL_STATE(1323)] = 85205, - [SMALL_STATE(1324)] = 85248, - [SMALL_STATE(1325)] = 85295, - [SMALL_STATE(1326)] = 85338, - [SMALL_STATE(1327)] = 85383, - [SMALL_STATE(1328)] = 85426, - [SMALL_STATE(1329)] = 85469, - [SMALL_STATE(1330)] = 85512, - [SMALL_STATE(1331)] = 85555, - [SMALL_STATE(1332)] = 85598, - [SMALL_STATE(1333)] = 85641, - [SMALL_STATE(1334)] = 85684, - [SMALL_STATE(1335)] = 85727, - [SMALL_STATE(1336)] = 85770, - [SMALL_STATE(1337)] = 85813, - [SMALL_STATE(1338)] = 85856, - [SMALL_STATE(1339)] = 85899, - [SMALL_STATE(1340)] = 85942, - [SMALL_STATE(1341)] = 85987, - [SMALL_STATE(1342)] = 86032, - [SMALL_STATE(1343)] = 86075, - [SMALL_STATE(1344)] = 86118, - [SMALL_STATE(1345)] = 86161, - [SMALL_STATE(1346)] = 86204, - [SMALL_STATE(1347)] = 86247, - [SMALL_STATE(1348)] = 86290, - [SMALL_STATE(1349)] = 86333, - [SMALL_STATE(1350)] = 86376, - [SMALL_STATE(1351)] = 86419, - [SMALL_STATE(1352)] = 86462, - [SMALL_STATE(1353)] = 86505, - [SMALL_STATE(1354)] = 86548, - [SMALL_STATE(1355)] = 86591, - [SMALL_STATE(1356)] = 86634, - [SMALL_STATE(1357)] = 86677, - [SMALL_STATE(1358)] = 86720, - [SMALL_STATE(1359)] = 86763, - [SMALL_STATE(1360)] = 86806, - [SMALL_STATE(1361)] = 86853, - [SMALL_STATE(1362)] = 86896, - [SMALL_STATE(1363)] = 86939, - [SMALL_STATE(1364)] = 86982, - [SMALL_STATE(1365)] = 87025, - [SMALL_STATE(1366)] = 87068, - [SMALL_STATE(1367)] = 87111, - [SMALL_STATE(1368)] = 87154, - [SMALL_STATE(1369)] = 87201, - [SMALL_STATE(1370)] = 87244, - [SMALL_STATE(1371)] = 87289, - [SMALL_STATE(1372)] = 87334, - [SMALL_STATE(1373)] = 87379, - [SMALL_STATE(1374)] = 87422, - [SMALL_STATE(1375)] = 87469, - [SMALL_STATE(1376)] = 87514, - [SMALL_STATE(1377)] = 87557, - [SMALL_STATE(1378)] = 87600, - [SMALL_STATE(1379)] = 87643, - [SMALL_STATE(1380)] = 87686, - [SMALL_STATE(1381)] = 87729, - [SMALL_STATE(1382)] = 87780, - [SMALL_STATE(1383)] = 87823, - [SMALL_STATE(1384)] = 87866, - [SMALL_STATE(1385)] = 87909, - [SMALL_STATE(1386)] = 87952, - [SMALL_STATE(1387)] = 87995, - [SMALL_STATE(1388)] = 88038, - [SMALL_STATE(1389)] = 88081, - [SMALL_STATE(1390)] = 88124, - [SMALL_STATE(1391)] = 88167, - [SMALL_STATE(1392)] = 88212, - [SMALL_STATE(1393)] = 88255, - [SMALL_STATE(1394)] = 88300, - [SMALL_STATE(1395)] = 88343, - [SMALL_STATE(1396)] = 88386, - [SMALL_STATE(1397)] = 88431, - [SMALL_STATE(1398)] = 88474, - [SMALL_STATE(1399)] = 88521, - [SMALL_STATE(1400)] = 88568, - [SMALL_STATE(1401)] = 88613, - [SMALL_STATE(1402)] = 88656, - [SMALL_STATE(1403)] = 88703, - [SMALL_STATE(1404)] = 88746, - [SMALL_STATE(1405)] = 88791, - [SMALL_STATE(1406)] = 88834, - [SMALL_STATE(1407)] = 88877, - [SMALL_STATE(1408)] = 88920, - [SMALL_STATE(1409)] = 88963, - [SMALL_STATE(1410)] = 89006, - [SMALL_STATE(1411)] = 89049, - [SMALL_STATE(1412)] = 89092, - [SMALL_STATE(1413)] = 89135, - [SMALL_STATE(1414)] = 89178, - [SMALL_STATE(1415)] = 89221, - [SMALL_STATE(1416)] = 89264, - [SMALL_STATE(1417)] = 89309, - [SMALL_STATE(1418)] = 89352, - [SMALL_STATE(1419)] = 89395, - [SMALL_STATE(1420)] = 89446, - [SMALL_STATE(1421)] = 89489, - [SMALL_STATE(1422)] = 89532, - [SMALL_STATE(1423)] = 89575, - [SMALL_STATE(1424)] = 89620, - [SMALL_STATE(1425)] = 89663, - [SMALL_STATE(1426)] = 89710, - [SMALL_STATE(1427)] = 89757, - [SMALL_STATE(1428)] = 89800, - [SMALL_STATE(1429)] = 89842, - [SMALL_STATE(1430)] = 89884, - [SMALL_STATE(1431)] = 89926, - [SMALL_STATE(1432)] = 89968, - [SMALL_STATE(1433)] = 90010, - [SMALL_STATE(1434)] = 90058, - [SMALL_STATE(1435)] = 90100, - [SMALL_STATE(1436)] = 90146, - [SMALL_STATE(1437)] = 90188, - [SMALL_STATE(1438)] = 90230, - [SMALL_STATE(1439)] = 90280, - [SMALL_STATE(1440)] = 90324, - [SMALL_STATE(1441)] = 90366, - [SMALL_STATE(1442)] = 90410, - [SMALL_STATE(1443)] = 90452, - [SMALL_STATE(1444)] = 90494, - [SMALL_STATE(1445)] = 90536, - [SMALL_STATE(1446)] = 90578, - [SMALL_STATE(1447)] = 90620, - [SMALL_STATE(1448)] = 90662, - [SMALL_STATE(1449)] = 90706, - [SMALL_STATE(1450)] = 90750, - [SMALL_STATE(1451)] = 90794, - [SMALL_STATE(1452)] = 90836, - [SMALL_STATE(1453)] = 90880, - [SMALL_STATE(1454)] = 90922, - [SMALL_STATE(1455)] = 90964, - [SMALL_STATE(1456)] = 91008, - [SMALL_STATE(1457)] = 91050, - [SMALL_STATE(1458)] = 91092, - [SMALL_STATE(1459)] = 91134, - [SMALL_STATE(1460)] = 91176, - [SMALL_STATE(1461)] = 91218, - [SMALL_STATE(1462)] = 91262, - [SMALL_STATE(1463)] = 91304, - [SMALL_STATE(1464)] = 91348, - [SMALL_STATE(1465)] = 91390, - [SMALL_STATE(1466)] = 91432, - [SMALL_STATE(1467)] = 91474, - [SMALL_STATE(1468)] = 91516, - [SMALL_STATE(1469)] = 91558, - [SMALL_STATE(1470)] = 91604, - [SMALL_STATE(1471)] = 91650, - [SMALL_STATE(1472)] = 91692, - [SMALL_STATE(1473)] = 91734, - [SMALL_STATE(1474)] = 91776, - [SMALL_STATE(1475)] = 91818, - [SMALL_STATE(1476)] = 91861, - [SMALL_STATE(1477)] = 91902, - [SMALL_STATE(1478)] = 91943, - [SMALL_STATE(1479)] = 91984, - [SMALL_STATE(1480)] = 92027, - [SMALL_STATE(1481)] = 92070, - [SMALL_STATE(1482)] = 92111, - [SMALL_STATE(1483)] = 92152, - [SMALL_STATE(1484)] = 92193, - [SMALL_STATE(1485)] = 92236, - [SMALL_STATE(1486)] = 92277, - [SMALL_STATE(1487)] = 92318, - [SMALL_STATE(1488)] = 92359, - [SMALL_STATE(1489)] = 92402, - [SMALL_STATE(1490)] = 92445, - [SMALL_STATE(1491)] = 92488, - [SMALL_STATE(1492)] = 92531, - [SMALL_STATE(1493)] = 92572, - [SMALL_STATE(1494)] = 92615, - [SMALL_STATE(1495)] = 92689, - [SMALL_STATE(1496)] = 92763, - [SMALL_STATE(1497)] = 92831, - [SMALL_STATE(1498)] = 92899, - [SMALL_STATE(1499)] = 92967, - [SMALL_STATE(1500)] = 93035, - [SMALL_STATE(1501)] = 93103, - [SMALL_STATE(1502)] = 93171, - [SMALL_STATE(1503)] = 93239, - [SMALL_STATE(1504)] = 93307, - [SMALL_STATE(1505)] = 93375, - [SMALL_STATE(1506)] = 93443, - [SMALL_STATE(1507)] = 93511, - [SMALL_STATE(1508)] = 93579, - [SMALL_STATE(1509)] = 93647, - [SMALL_STATE(1510)] = 93715, - [SMALL_STATE(1511)] = 93783, - [SMALL_STATE(1512)] = 93851, - [SMALL_STATE(1513)] = 93919, - [SMALL_STATE(1514)] = 93987, - [SMALL_STATE(1515)] = 94055, - [SMALL_STATE(1516)] = 94123, - [SMALL_STATE(1517)] = 94191, - [SMALL_STATE(1518)] = 94259, - [SMALL_STATE(1519)] = 94327, - [SMALL_STATE(1520)] = 94395, - [SMALL_STATE(1521)] = 94463, - [SMALL_STATE(1522)] = 94531, - [SMALL_STATE(1523)] = 94599, - [SMALL_STATE(1524)] = 94667, - [SMALL_STATE(1525)] = 94735, - [SMALL_STATE(1526)] = 94803, - [SMALL_STATE(1527)] = 94871, - [SMALL_STATE(1528)] = 94939, - [SMALL_STATE(1529)] = 95007, - [SMALL_STATE(1530)] = 95075, - [SMALL_STATE(1531)] = 95143, - [SMALL_STATE(1532)] = 95211, - [SMALL_STATE(1533)] = 95276, - [SMALL_STATE(1534)] = 95341, - [SMALL_STATE(1535)] = 95406, - [SMALL_STATE(1536)] = 95471, - [SMALL_STATE(1537)] = 95536, - [SMALL_STATE(1538)] = 95602, - [SMALL_STATE(1539)] = 95668, - [SMALL_STATE(1540)] = 95734, - [SMALL_STATE(1541)] = 95800, - [SMALL_STATE(1542)] = 95866, - [SMALL_STATE(1543)] = 95932, - [SMALL_STATE(1544)] = 95998, - [SMALL_STATE(1545)] = 96064, - [SMALL_STATE(1546)] = 96130, - [SMALL_STATE(1547)] = 96196, - [SMALL_STATE(1548)] = 96262, - [SMALL_STATE(1549)] = 96328, - [SMALL_STATE(1550)] = 96394, - [SMALL_STATE(1551)] = 96460, - [SMALL_STATE(1552)] = 96526, - [SMALL_STATE(1553)] = 96592, - [SMALL_STATE(1554)] = 96658, - [SMALL_STATE(1555)] = 96724, - [SMALL_STATE(1556)] = 96790, - [SMALL_STATE(1557)] = 96856, - [SMALL_STATE(1558)] = 96919, - [SMALL_STATE(1559)] = 96977, - [SMALL_STATE(1560)] = 97035, - [SMALL_STATE(1561)] = 97093, - [SMALL_STATE(1562)] = 97151, - [SMALL_STATE(1563)] = 97209, - [SMALL_STATE(1564)] = 97267, - [SMALL_STATE(1565)] = 97313, - [SMALL_STATE(1566)] = 97371, - [SMALL_STATE(1567)] = 97429, - [SMALL_STATE(1568)] = 97475, - [SMALL_STATE(1569)] = 97520, - [SMALL_STATE(1570)] = 97565, - [SMALL_STATE(1571)] = 97609, - [SMALL_STATE(1572)] = 97653, - [SMALL_STATE(1573)] = 97697, - [SMALL_STATE(1574)] = 97741, - [SMALL_STATE(1575)] = 97784, - [SMALL_STATE(1576)] = 97827, - [SMALL_STATE(1577)] = 97870, - [SMALL_STATE(1578)] = 97913, - [SMALL_STATE(1579)] = 97954, - [SMALL_STATE(1580)] = 97995, - [SMALL_STATE(1581)] = 98037, - [SMALL_STATE(1582)] = 98067, - [SMALL_STATE(1583)] = 98099, - [SMALL_STATE(1584)] = 98131, - [SMALL_STATE(1585)] = 98163, - [SMALL_STATE(1586)] = 98195, - [SMALL_STATE(1587)] = 98227, - [SMALL_STATE(1588)] = 98259, - [SMALL_STATE(1589)] = 98289, - [SMALL_STATE(1590)] = 98331, - [SMALL_STATE(1591)] = 98361, - [SMALL_STATE(1592)] = 98391, - [SMALL_STATE(1593)] = 98421, - [SMALL_STATE(1594)] = 98451, - [SMALL_STATE(1595)] = 98481, - [SMALL_STATE(1596)] = 98511, - [SMALL_STATE(1597)] = 98541, - [SMALL_STATE(1598)] = 98571, - [SMALL_STATE(1599)] = 98600, - [SMALL_STATE(1600)] = 98629, - [SMALL_STATE(1601)] = 98658, - [SMALL_STATE(1602)] = 98687, - [SMALL_STATE(1603)] = 98716, - [SMALL_STATE(1604)] = 98745, - [SMALL_STATE(1605)] = 98774, - [SMALL_STATE(1606)] = 98803, - [SMALL_STATE(1607)] = 98832, - [SMALL_STATE(1608)] = 98861, - [SMALL_STATE(1609)] = 98890, - [SMALL_STATE(1610)] = 98919, - [SMALL_STATE(1611)] = 98948, - [SMALL_STATE(1612)] = 98977, - [SMALL_STATE(1613)] = 99006, - [SMALL_STATE(1614)] = 99035, - [SMALL_STATE(1615)] = 99060, - [SMALL_STATE(1616)] = 99089, - [SMALL_STATE(1617)] = 99136, - [SMALL_STATE(1618)] = 99161, - [SMALL_STATE(1619)] = 99190, - [SMALL_STATE(1620)] = 99219, - [SMALL_STATE(1621)] = 99248, - [SMALL_STATE(1622)] = 99277, - [SMALL_STATE(1623)] = 99324, - [SMALL_STATE(1624)] = 99371, - [SMALL_STATE(1625)] = 99418, - [SMALL_STATE(1626)] = 99465, - [SMALL_STATE(1627)] = 99512, - [SMALL_STATE(1628)] = 99559, - [SMALL_STATE(1629)] = 99584, - [SMALL_STATE(1630)] = 99631, - [SMALL_STATE(1631)] = 99660, - [SMALL_STATE(1632)] = 99707, - [SMALL_STATE(1633)] = 99754, - [SMALL_STATE(1634)] = 99783, - [SMALL_STATE(1635)] = 99808, - [SMALL_STATE(1636)] = 99837, - [SMALL_STATE(1637)] = 99883, - [SMALL_STATE(1638)] = 99929, - [SMALL_STATE(1639)] = 99953, - [SMALL_STATE(1640)] = 99999, - [SMALL_STATE(1641)] = 100023, - [SMALL_STATE(1642)] = 100053, - [SMALL_STATE(1643)] = 100099, - [SMALL_STATE(1644)] = 100127, - [SMALL_STATE(1645)] = 100173, - [SMALL_STATE(1646)] = 100219, - [SMALL_STATE(1647)] = 100243, - [SMALL_STATE(1648)] = 100289, - [SMALL_STATE(1649)] = 100335, - [SMALL_STATE(1650)] = 100381, - [SMALL_STATE(1651)] = 100405, - [SMALL_STATE(1652)] = 100437, - [SMALL_STATE(1653)] = 100469, - [SMALL_STATE(1654)] = 100497, - [SMALL_STATE(1655)] = 100543, - [SMALL_STATE(1656)] = 100589, - [SMALL_STATE(1657)] = 100632, - [SMALL_STATE(1658)] = 100672, - [SMALL_STATE(1659)] = 100712, - [SMALL_STATE(1660)] = 100752, - [SMALL_STATE(1661)] = 100778, - [SMALL_STATE(1662)] = 100818, - [SMALL_STATE(1663)] = 100855, - [SMALL_STATE(1664)] = 100894, - [SMALL_STATE(1665)] = 100931, - [SMALL_STATE(1666)] = 100972, - [SMALL_STATE(1667)] = 100999, - [SMALL_STATE(1668)] = 101040, - [SMALL_STATE(1669)] = 101059, - [SMALL_STATE(1670)] = 101082, - [SMALL_STATE(1671)] = 101101, - [SMALL_STATE(1672)] = 101142, - [SMALL_STATE(1673)] = 101163, - [SMALL_STATE(1674)] = 101204, - [SMALL_STATE(1675)] = 101245, - [SMALL_STATE(1676)] = 101286, - [SMALL_STATE(1677)] = 101311, - [SMALL_STATE(1678)] = 101338, - [SMALL_STATE(1679)] = 101379, - [SMALL_STATE(1680)] = 101398, - [SMALL_STATE(1681)] = 101425, - [SMALL_STATE(1682)] = 101466, - [SMALL_STATE(1683)] = 101504, - [SMALL_STATE(1684)] = 101534, - [SMALL_STATE(1685)] = 101564, - [SMALL_STATE(1686)] = 101602, - [SMALL_STATE(1687)] = 101640, - [SMALL_STATE(1688)] = 101670, - [SMALL_STATE(1689)] = 101700, - [SMALL_STATE(1690)] = 101732, - [SMALL_STATE(1691)] = 101762, - [SMALL_STATE(1692)] = 101792, - [SMALL_STATE(1693)] = 101830, - [SMALL_STATE(1694)] = 101868, - [SMALL_STATE(1695)] = 101906, - [SMALL_STATE(1696)] = 101926, - [SMALL_STATE(1697)] = 101956, - [SMALL_STATE(1698)] = 101986, - [SMALL_STATE(1699)] = 102024, - [SMALL_STATE(1700)] = 102062, - [SMALL_STATE(1701)] = 102100, - [SMALL_STATE(1702)] = 102130, - [SMALL_STATE(1703)] = 102160, - [SMALL_STATE(1704)] = 102198, - [SMALL_STATE(1705)] = 102236, - [SMALL_STATE(1706)] = 102256, - [SMALL_STATE(1707)] = 102276, - [SMALL_STATE(1708)] = 102306, - [SMALL_STATE(1709)] = 102344, - [SMALL_STATE(1710)] = 102374, - [SMALL_STATE(1711)] = 102412, - [SMALL_STATE(1712)] = 102442, - [SMALL_STATE(1713)] = 102472, - [SMALL_STATE(1714)] = 102510, - [SMALL_STATE(1715)] = 102548, - [SMALL_STATE(1716)] = 102578, - [SMALL_STATE(1717)] = 102608, - [SMALL_STATE(1718)] = 102646, - [SMALL_STATE(1719)] = 102684, - [SMALL_STATE(1720)] = 102714, - [SMALL_STATE(1721)] = 102744, - [SMALL_STATE(1722)] = 102782, - [SMALL_STATE(1723)] = 102808, - [SMALL_STATE(1724)] = 102846, - [SMALL_STATE(1725)] = 102872, - [SMALL_STATE(1726)] = 102910, - [SMALL_STATE(1727)] = 102934, - [SMALL_STATE(1728)] = 102972, - [SMALL_STATE(1729)] = 103010, - [SMALL_STATE(1730)] = 103032, - [SMALL_STATE(1731)] = 103070, - [SMALL_STATE(1732)] = 103108, - [SMALL_STATE(1733)] = 103146, - [SMALL_STATE(1734)] = 103172, - [SMALL_STATE(1735)] = 103196, - [SMALL_STATE(1736)] = 103226, - [SMALL_STATE(1737)] = 103243, - [SMALL_STATE(1738)] = 103272, - [SMALL_STATE(1739)] = 103289, - [SMALL_STATE(1740)] = 103312, - [SMALL_STATE(1741)] = 103337, - [SMALL_STATE(1742)] = 103362, - [SMALL_STATE(1743)] = 103383, - [SMALL_STATE(1744)] = 103400, - [SMALL_STATE(1745)] = 103419, - [SMALL_STATE(1746)] = 103440, - [SMALL_STATE(1747)] = 103465, - [SMALL_STATE(1748)] = 103482, - [SMALL_STATE(1749)] = 103499, - [SMALL_STATE(1750)] = 103516, - [SMALL_STATE(1751)] = 103535, - [SMALL_STATE(1752)] = 103560, - [SMALL_STATE(1753)] = 103583, - [SMALL_STATE(1754)] = 103608, - [SMALL_STATE(1755)] = 103633, - [SMALL_STATE(1756)] = 103658, - [SMALL_STATE(1757)] = 103687, - [SMALL_STATE(1758)] = 103712, - [SMALL_STATE(1759)] = 103732, - [SMALL_STATE(1760)] = 103750, - [SMALL_STATE(1761)] = 103766, - [SMALL_STATE(1762)] = 103784, - [SMALL_STATE(1763)] = 103804, - [SMALL_STATE(1764)] = 103828, - [SMALL_STATE(1765)] = 103852, - [SMALL_STATE(1766)] = 103876, - [SMALL_STATE(1767)] = 103900, - [SMALL_STATE(1768)] = 103924, - [SMALL_STATE(1769)] = 103940, - [SMALL_STATE(1770)] = 103964, - [SMALL_STATE(1771)] = 103994, - [SMALL_STATE(1772)] = 104010, - [SMALL_STATE(1773)] = 104034, - [SMALL_STATE(1774)] = 104050, - [SMALL_STATE(1775)] = 104072, - [SMALL_STATE(1776)] = 104096, - [SMALL_STATE(1777)] = 104120, - [SMALL_STATE(1778)] = 104142, - [SMALL_STATE(1779)] = 104164, - [SMALL_STATE(1780)] = 104184, - [SMALL_STATE(1781)] = 104204, - [SMALL_STATE(1782)] = 104228, - [SMALL_STATE(1783)] = 104250, - [SMALL_STATE(1784)] = 104266, - [SMALL_STATE(1785)] = 104284, - [SMALL_STATE(1786)] = 104304, - [SMALL_STATE(1787)] = 104322, - [SMALL_STATE(1788)] = 104340, - [SMALL_STATE(1789)] = 104364, - [SMALL_STATE(1790)] = 104384, - [SMALL_STATE(1791)] = 104408, - [SMALL_STATE(1792)] = 104424, - [SMALL_STATE(1793)] = 104448, - [SMALL_STATE(1794)] = 104470, - [SMALL_STATE(1795)] = 104491, - [SMALL_STATE(1796)] = 104520, - [SMALL_STATE(1797)] = 104541, - [SMALL_STATE(1798)] = 104564, - [SMALL_STATE(1799)] = 104589, - [SMALL_STATE(1800)] = 104616, - [SMALL_STATE(1801)] = 104639, - [SMALL_STATE(1802)] = 104668, - [SMALL_STATE(1803)] = 104683, - [SMALL_STATE(1804)] = 104706, - [SMALL_STATE(1805)] = 104729, - [SMALL_STATE(1806)] = 104756, - [SMALL_STATE(1807)] = 104777, - [SMALL_STATE(1808)] = 104802, - [SMALL_STATE(1809)] = 104823, - [SMALL_STATE(1810)] = 104844, - [SMALL_STATE(1811)] = 104861, - [SMALL_STATE(1812)] = 104890, - [SMALL_STATE(1813)] = 104917, - [SMALL_STATE(1814)] = 104938, - [SMALL_STATE(1815)] = 104967, - [SMALL_STATE(1816)] = 104988, - [SMALL_STATE(1817)] = 105017, - [SMALL_STATE(1818)] = 105046, - [SMALL_STATE(1819)] = 105063, - [SMALL_STATE(1820)] = 105092, - [SMALL_STATE(1821)] = 105111, - [SMALL_STATE(1822)] = 105136, - [SMALL_STATE(1823)] = 105157, - [SMALL_STATE(1824)] = 105182, - [SMALL_STATE(1825)] = 105209, - [SMALL_STATE(1826)] = 105232, - [SMALL_STATE(1827)] = 105259, - [SMALL_STATE(1828)] = 105286, - [SMALL_STATE(1829)] = 105313, - [SMALL_STATE(1830)] = 105338, - [SMALL_STATE(1831)] = 105367, - [SMALL_STATE(1832)] = 105388, - [SMALL_STATE(1833)] = 105409, - [SMALL_STATE(1834)] = 105438, - [SMALL_STATE(1835)] = 105465, - [SMALL_STATE(1836)] = 105488, - [SMALL_STATE(1837)] = 105513, - [SMALL_STATE(1838)] = 105534, - [SMALL_STATE(1839)] = 105555, - [SMALL_STATE(1840)] = 105576, - [SMALL_STATE(1841)] = 105597, - [SMALL_STATE(1842)] = 105614, - [SMALL_STATE(1843)] = 105633, - [SMALL_STATE(1844)] = 105656, - [SMALL_STATE(1845)] = 105685, - [SMALL_STATE(1846)] = 105707, - [SMALL_STATE(1847)] = 105729, - [SMALL_STATE(1848)] = 105755, - [SMALL_STATE(1849)] = 105781, - [SMALL_STATE(1850)] = 105807, - [SMALL_STATE(1851)] = 105833, - [SMALL_STATE(1852)] = 105859, - [SMALL_STATE(1853)] = 105885, - [SMALL_STATE(1854)] = 105903, - [SMALL_STATE(1855)] = 105925, - [SMALL_STATE(1856)] = 105947, - [SMALL_STATE(1857)] = 105971, - [SMALL_STATE(1858)] = 105997, - [SMALL_STATE(1859)] = 106015, - [SMALL_STATE(1860)] = 106033, - [SMALL_STATE(1861)] = 106055, - [SMALL_STATE(1862)] = 106079, - [SMALL_STATE(1863)] = 106101, - [SMALL_STATE(1864)] = 106127, - [SMALL_STATE(1865)] = 106153, - [SMALL_STATE(1866)] = 106179, - [SMALL_STATE(1867)] = 106197, - [SMALL_STATE(1868)] = 106221, - [SMALL_STATE(1869)] = 106239, - [SMALL_STATE(1870)] = 106265, - [SMALL_STATE(1871)] = 106291, - [SMALL_STATE(1872)] = 106317, - [SMALL_STATE(1873)] = 106343, - [SMALL_STATE(1874)] = 106363, - [SMALL_STATE(1875)] = 106379, - [SMALL_STATE(1876)] = 106397, - [SMALL_STATE(1877)] = 106417, - [SMALL_STATE(1878)] = 106435, - [SMALL_STATE(1879)] = 106459, - [SMALL_STATE(1880)] = 106485, - [SMALL_STATE(1881)] = 106507, - [SMALL_STATE(1882)] = 106527, - [SMALL_STATE(1883)] = 106553, - [SMALL_STATE(1884)] = 106571, - [SMALL_STATE(1885)] = 106589, - [SMALL_STATE(1886)] = 106607, - [SMALL_STATE(1887)] = 106629, - [SMALL_STATE(1888)] = 106651, - [SMALL_STATE(1889)] = 106677, - [SMALL_STATE(1890)] = 106703, - [SMALL_STATE(1891)] = 106725, - [SMALL_STATE(1892)] = 106741, - [SMALL_STATE(1893)] = 106759, - [SMALL_STATE(1894)] = 106781, - [SMALL_STATE(1895)] = 106799, - [SMALL_STATE(1896)] = 106814, - [SMALL_STATE(1897)] = 106835, - [SMALL_STATE(1898)] = 106852, - [SMALL_STATE(1899)] = 106873, - [SMALL_STATE(1900)] = 106894, - [SMALL_STATE(1901)] = 106915, - [SMALL_STATE(1902)] = 106932, - [SMALL_STATE(1903)] = 106945, - [SMALL_STATE(1904)] = 106960, - [SMALL_STATE(1905)] = 106977, - [SMALL_STATE(1906)] = 106992, - [SMALL_STATE(1907)] = 107013, - [SMALL_STATE(1908)] = 107028, - [SMALL_STATE(1909)] = 107045, - [SMALL_STATE(1910)] = 107058, - [SMALL_STATE(1911)] = 107071, - [SMALL_STATE(1912)] = 107094, - [SMALL_STATE(1913)] = 107109, - [SMALL_STATE(1914)] = 107132, - [SMALL_STATE(1915)] = 107149, - [SMALL_STATE(1916)] = 107170, - [SMALL_STATE(1917)] = 107187, - [SMALL_STATE(1918)] = 107200, - [SMALL_STATE(1919)] = 107213, - [SMALL_STATE(1920)] = 107226, - [SMALL_STATE(1921)] = 107245, - [SMALL_STATE(1922)] = 107262, - [SMALL_STATE(1923)] = 107275, - [SMALL_STATE(1924)] = 107288, - [SMALL_STATE(1925)] = 107309, - [SMALL_STATE(1926)] = 107326, - [SMALL_STATE(1927)] = 107347, - [SMALL_STATE(1928)] = 107368, - [SMALL_STATE(1929)] = 107389, - [SMALL_STATE(1930)] = 107406, - [SMALL_STATE(1931)] = 107419, - [SMALL_STATE(1932)] = 107440, - [SMALL_STATE(1933)] = 107457, - [SMALL_STATE(1934)] = 107474, - [SMALL_STATE(1935)] = 107491, - [SMALL_STATE(1936)] = 107504, - [SMALL_STATE(1937)] = 107525, - [SMALL_STATE(1938)] = 107540, - [SMALL_STATE(1939)] = 107553, - [SMALL_STATE(1940)] = 107574, - [SMALL_STATE(1941)] = 107591, - [SMALL_STATE(1942)] = 107612, - [SMALL_STATE(1943)] = 107629, - [SMALL_STATE(1944)] = 107652, - [SMALL_STATE(1945)] = 107673, - [SMALL_STATE(1946)] = 107690, - [SMALL_STATE(1947)] = 107705, - [SMALL_STATE(1948)] = 107718, - [SMALL_STATE(1949)] = 107739, - [SMALL_STATE(1950)] = 107760, - [SMALL_STATE(1951)] = 107783, - [SMALL_STATE(1952)] = 107800, - [SMALL_STATE(1953)] = 107813, - [SMALL_STATE(1954)] = 107834, - [SMALL_STATE(1955)] = 107851, - [SMALL_STATE(1956)] = 107868, - [SMALL_STATE(1957)] = 107881, - [SMALL_STATE(1958)] = 107898, - [SMALL_STATE(1959)] = 107911, - [SMALL_STATE(1960)] = 107930, - [SMALL_STATE(1961)] = 107947, - [SMALL_STATE(1962)] = 107964, - [SMALL_STATE(1963)] = 107979, - [SMALL_STATE(1964)] = 107996, - [SMALL_STATE(1965)] = 108017, - [SMALL_STATE(1966)] = 108034, - [SMALL_STATE(1967)] = 108051, - [SMALL_STATE(1968)] = 108064, - [SMALL_STATE(1969)] = 108077, - [SMALL_STATE(1970)] = 108094, - [SMALL_STATE(1971)] = 108107, - [SMALL_STATE(1972)] = 108128, - [SMALL_STATE(1973)] = 108145, - [SMALL_STATE(1974)] = 108162, - [SMALL_STATE(1975)] = 108183, - [SMALL_STATE(1976)] = 108206, - [SMALL_STATE(1977)] = 108223, - [SMALL_STATE(1978)] = 108246, - [SMALL_STATE(1979)] = 108263, - [SMALL_STATE(1980)] = 108280, - [SMALL_STATE(1981)] = 108297, - [SMALL_STATE(1982)] = 108318, - [SMALL_STATE(1983)] = 108339, - [SMALL_STATE(1984)] = 108352, - [SMALL_STATE(1985)] = 108365, - [SMALL_STATE(1986)] = 108386, - [SMALL_STATE(1987)] = 108407, - [SMALL_STATE(1988)] = 108428, - [SMALL_STATE(1989)] = 108441, - [SMALL_STATE(1990)] = 108454, - [SMALL_STATE(1991)] = 108467, - [SMALL_STATE(1992)] = 108488, - [SMALL_STATE(1993)] = 108509, - [SMALL_STATE(1994)] = 108526, - [SMALL_STATE(1995)] = 108543, - [SMALL_STATE(1996)] = 108560, - [SMALL_STATE(1997)] = 108581, - [SMALL_STATE(1998)] = 108602, - [SMALL_STATE(1999)] = 108625, - [SMALL_STATE(2000)] = 108646, - [SMALL_STATE(2001)] = 108667, - [SMALL_STATE(2002)] = 108684, - [SMALL_STATE(2003)] = 108701, - [SMALL_STATE(2004)] = 108714, - [SMALL_STATE(2005)] = 108726, - [SMALL_STATE(2006)] = 108746, - [SMALL_STATE(2007)] = 108766, - [SMALL_STATE(2008)] = 108778, - [SMALL_STATE(2009)] = 108792, - [SMALL_STATE(2010)] = 108808, - [SMALL_STATE(2011)] = 108820, - [SMALL_STATE(2012)] = 108832, - [SMALL_STATE(2013)] = 108844, - [SMALL_STATE(2014)] = 108864, - [SMALL_STATE(2015)] = 108876, - [SMALL_STATE(2016)] = 108888, - [SMALL_STATE(2017)] = 108904, - [SMALL_STATE(2018)] = 108920, - [SMALL_STATE(2019)] = 108940, - [SMALL_STATE(2020)] = 108952, - [SMALL_STATE(2021)] = 108964, - [SMALL_STATE(2022)] = 108982, - [SMALL_STATE(2023)] = 108994, - [SMALL_STATE(2024)] = 109010, - [SMALL_STATE(2025)] = 109030, - [SMALL_STATE(2026)] = 109042, - [SMALL_STATE(2027)] = 109062, - [SMALL_STATE(2028)] = 109074, - [SMALL_STATE(2029)] = 109094, - [SMALL_STATE(2030)] = 109106, - [SMALL_STATE(2031)] = 109118, - [SMALL_STATE(2032)] = 109130, - [SMALL_STATE(2033)] = 109148, - [SMALL_STATE(2034)] = 109168, - [SMALL_STATE(2035)] = 109188, - [SMALL_STATE(2036)] = 109200, - [SMALL_STATE(2037)] = 109218, - [SMALL_STATE(2038)] = 109236, - [SMALL_STATE(2039)] = 109248, - [SMALL_STATE(2040)] = 109268, - [SMALL_STATE(2041)] = 109280, - [SMALL_STATE(2042)] = 109292, - [SMALL_STATE(2043)] = 109304, - [SMALL_STATE(2044)] = 109316, - [SMALL_STATE(2045)] = 109334, - [SMALL_STATE(2046)] = 109346, - [SMALL_STATE(2047)] = 109366, - [SMALL_STATE(2048)] = 109378, - [SMALL_STATE(2049)] = 109390, - [SMALL_STATE(2050)] = 109402, - [SMALL_STATE(2051)] = 109414, - [SMALL_STATE(2052)] = 109434, - [SMALL_STATE(2053)] = 109450, - [SMALL_STATE(2054)] = 109470, - [SMALL_STATE(2055)] = 109490, - [SMALL_STATE(2056)] = 109502, - [SMALL_STATE(2057)] = 109522, - [SMALL_STATE(2058)] = 109542, - [SMALL_STATE(2059)] = 109558, - [SMALL_STATE(2060)] = 109572, - [SMALL_STATE(2061)] = 109588, - [SMALL_STATE(2062)] = 109600, - [SMALL_STATE(2063)] = 109612, - [SMALL_STATE(2064)] = 109628, - [SMALL_STATE(2065)] = 109640, - [SMALL_STATE(2066)] = 109660, - [SMALL_STATE(2067)] = 109674, - [SMALL_STATE(2068)] = 109694, - [SMALL_STATE(2069)] = 109714, - [SMALL_STATE(2070)] = 109728, - [SMALL_STATE(2071)] = 109748, - [SMALL_STATE(2072)] = 109768, - [SMALL_STATE(2073)] = 109784, - [SMALL_STATE(2074)] = 109796, - [SMALL_STATE(2075)] = 109808, - [SMALL_STATE(2076)] = 109828, - [SMALL_STATE(2077)] = 109840, - [SMALL_STATE(2078)] = 109852, - [SMALL_STATE(2079)] = 109864, - [SMALL_STATE(2080)] = 109882, - [SMALL_STATE(2081)] = 109902, - [SMALL_STATE(2082)] = 109914, - [SMALL_STATE(2083)] = 109932, - [SMALL_STATE(2084)] = 109944, - [SMALL_STATE(2085)] = 109956, - [SMALL_STATE(2086)] = 109970, - [SMALL_STATE(2087)] = 109982, - [SMALL_STATE(2088)] = 109998, - [SMALL_STATE(2089)] = 110010, - [SMALL_STATE(2090)] = 110030, - [SMALL_STATE(2091)] = 110042, - [SMALL_STATE(2092)] = 110062, - [SMALL_STATE(2093)] = 110074, - [SMALL_STATE(2094)] = 110090, - [SMALL_STATE(2095)] = 110110, - [SMALL_STATE(2096)] = 110122, - [SMALL_STATE(2097)] = 110142, - [SMALL_STATE(2098)] = 110154, - [SMALL_STATE(2099)] = 110166, - [SMALL_STATE(2100)] = 110182, - [SMALL_STATE(2101)] = 110200, - [SMALL_STATE(2102)] = 110218, - [SMALL_STATE(2103)] = 110230, - [SMALL_STATE(2104)] = 110250, - [SMALL_STATE(2105)] = 110268, - [SMALL_STATE(2106)] = 110284, - [SMALL_STATE(2107)] = 110298, - [SMALL_STATE(2108)] = 110310, - [SMALL_STATE(2109)] = 110328, - [SMALL_STATE(2110)] = 110346, - [SMALL_STATE(2111)] = 110366, - [SMALL_STATE(2112)] = 110382, - [SMALL_STATE(2113)] = 110394, - [SMALL_STATE(2114)] = 110406, - [SMALL_STATE(2115)] = 110424, - [SMALL_STATE(2116)] = 110436, - [SMALL_STATE(2117)] = 110448, - [SMALL_STATE(2118)] = 110468, - [SMALL_STATE(2119)] = 110480, - [SMALL_STATE(2120)] = 110492, - [SMALL_STATE(2121)] = 110504, - [SMALL_STATE(2122)] = 110520, - [SMALL_STATE(2123)] = 110532, - [SMALL_STATE(2124)] = 110552, - [SMALL_STATE(2125)] = 110563, - [SMALL_STATE(2126)] = 110574, - [SMALL_STATE(2127)] = 110585, - [SMALL_STATE(2128)] = 110596, - [SMALL_STATE(2129)] = 110607, - [SMALL_STATE(2130)] = 110618, - [SMALL_STATE(2131)] = 110629, - [SMALL_STATE(2132)] = 110646, - [SMALL_STATE(2133)] = 110657, - [SMALL_STATE(2134)] = 110668, - [SMALL_STATE(2135)] = 110679, - [SMALL_STATE(2136)] = 110690, - [SMALL_STATE(2137)] = 110701, - [SMALL_STATE(2138)] = 110712, - [SMALL_STATE(2139)] = 110723, - [SMALL_STATE(2140)] = 110734, - [SMALL_STATE(2141)] = 110745, - [SMALL_STATE(2142)] = 110756, - [SMALL_STATE(2143)] = 110767, - [SMALL_STATE(2144)] = 110778, - [SMALL_STATE(2145)] = 110789, - [SMALL_STATE(2146)] = 110800, - [SMALL_STATE(2147)] = 110811, - [SMALL_STATE(2148)] = 110822, - [SMALL_STATE(2149)] = 110833, - [SMALL_STATE(2150)] = 110844, - [SMALL_STATE(2151)] = 110855, - [SMALL_STATE(2152)] = 110866, - [SMALL_STATE(2153)] = 110877, - [SMALL_STATE(2154)] = 110894, - [SMALL_STATE(2155)] = 110911, - [SMALL_STATE(2156)] = 110926, - [SMALL_STATE(2157)] = 110941, - [SMALL_STATE(2158)] = 110956, - [SMALL_STATE(2159)] = 110973, - [SMALL_STATE(2160)] = 110988, - [SMALL_STATE(2161)] = 111005, - [SMALL_STATE(2162)] = 111018, - [SMALL_STATE(2163)] = 111029, - [SMALL_STATE(2164)] = 111046, - [SMALL_STATE(2165)] = 111061, - [SMALL_STATE(2166)] = 111072, - [SMALL_STATE(2167)] = 111083, - [SMALL_STATE(2168)] = 111094, - [SMALL_STATE(2169)] = 111105, - [SMALL_STATE(2170)] = 111116, - [SMALL_STATE(2171)] = 111127, - [SMALL_STATE(2172)] = 111138, - [SMALL_STATE(2173)] = 111149, - [SMALL_STATE(2174)] = 111164, - [SMALL_STATE(2175)] = 111175, - [SMALL_STATE(2176)] = 111190, - [SMALL_STATE(2177)] = 111201, - [SMALL_STATE(2178)] = 111212, - [SMALL_STATE(2179)] = 111223, - [SMALL_STATE(2180)] = 111234, - [SMALL_STATE(2181)] = 111245, - [SMALL_STATE(2182)] = 111256, - [SMALL_STATE(2183)] = 111267, - [SMALL_STATE(2184)] = 111278, - [SMALL_STATE(2185)] = 111291, - [SMALL_STATE(2186)] = 111302, - [SMALL_STATE(2187)] = 111313, - [SMALL_STATE(2188)] = 111324, - [SMALL_STATE(2189)] = 111335, - [SMALL_STATE(2190)] = 111346, - [SMALL_STATE(2191)] = 111363, - [SMALL_STATE(2192)] = 111380, - [SMALL_STATE(2193)] = 111391, - [SMALL_STATE(2194)] = 111402, - [SMALL_STATE(2195)] = 111419, - [SMALL_STATE(2196)] = 111436, - [SMALL_STATE(2197)] = 111447, - [SMALL_STATE(2198)] = 111462, - [SMALL_STATE(2199)] = 111479, - [SMALL_STATE(2200)] = 111494, - [SMALL_STATE(2201)] = 111509, - [SMALL_STATE(2202)] = 111526, - [SMALL_STATE(2203)] = 111543, - [SMALL_STATE(2204)] = 111560, - [SMALL_STATE(2205)] = 111577, - [SMALL_STATE(2206)] = 111594, - [SMALL_STATE(2207)] = 111605, - [SMALL_STATE(2208)] = 111622, - [SMALL_STATE(2209)] = 111633, - [SMALL_STATE(2210)] = 111648, - [SMALL_STATE(2211)] = 111659, - [SMALL_STATE(2212)] = 111670, - [SMALL_STATE(2213)] = 111681, - [SMALL_STATE(2214)] = 111692, - [SMALL_STATE(2215)] = 111709, - [SMALL_STATE(2216)] = 111726, - [SMALL_STATE(2217)] = 111741, - [SMALL_STATE(2218)] = 111756, - [SMALL_STATE(2219)] = 111771, - [SMALL_STATE(2220)] = 111782, - [SMALL_STATE(2221)] = 111793, - [SMALL_STATE(2222)] = 111804, - [SMALL_STATE(2223)] = 111815, - [SMALL_STATE(2224)] = 111826, - [SMALL_STATE(2225)] = 111843, - [SMALL_STATE(2226)] = 111854, - [SMALL_STATE(2227)] = 111865, - [SMALL_STATE(2228)] = 111880, - [SMALL_STATE(2229)] = 111891, - [SMALL_STATE(2230)] = 111904, - [SMALL_STATE(2231)] = 111919, - [SMALL_STATE(2232)] = 111936, - [SMALL_STATE(2233)] = 111953, - [SMALL_STATE(2234)] = 111964, - [SMALL_STATE(2235)] = 111981, - [SMALL_STATE(2236)] = 111992, - [SMALL_STATE(2237)] = 112003, - [SMALL_STATE(2238)] = 112020, - [SMALL_STATE(2239)] = 112035, - [SMALL_STATE(2240)] = 112050, - [SMALL_STATE(2241)] = 112061, - [SMALL_STATE(2242)] = 112078, - [SMALL_STATE(2243)] = 112089, - [SMALL_STATE(2244)] = 112100, - [SMALL_STATE(2245)] = 112117, - [SMALL_STATE(2246)] = 112132, - [SMALL_STATE(2247)] = 112149, - [SMALL_STATE(2248)] = 112166, - [SMALL_STATE(2249)] = 112183, - [SMALL_STATE(2250)] = 112200, - [SMALL_STATE(2251)] = 112217, - [SMALL_STATE(2252)] = 112234, - [SMALL_STATE(2253)] = 112249, - [SMALL_STATE(2254)] = 112263, - [SMALL_STATE(2255)] = 112277, - [SMALL_STATE(2256)] = 112291, - [SMALL_STATE(2257)] = 112305, - [SMALL_STATE(2258)] = 112319, - [SMALL_STATE(2259)] = 112333, - [SMALL_STATE(2260)] = 112347, - [SMALL_STATE(2261)] = 112361, - [SMALL_STATE(2262)] = 112375, - [SMALL_STATE(2263)] = 112389, - [SMALL_STATE(2264)] = 112403, - [SMALL_STATE(2265)] = 112417, - [SMALL_STATE(2266)] = 112431, - [SMALL_STATE(2267)] = 112445, - [SMALL_STATE(2268)] = 112459, - [SMALL_STATE(2269)] = 112473, - [SMALL_STATE(2270)] = 112487, - [SMALL_STATE(2271)] = 112501, - [SMALL_STATE(2272)] = 112515, - [SMALL_STATE(2273)] = 112527, - [SMALL_STATE(2274)] = 112541, - [SMALL_STATE(2275)] = 112553, - [SMALL_STATE(2276)] = 112567, - [SMALL_STATE(2277)] = 112581, - [SMALL_STATE(2278)] = 112595, - [SMALL_STATE(2279)] = 112609, - [SMALL_STATE(2280)] = 112623, - [SMALL_STATE(2281)] = 112637, - [SMALL_STATE(2282)] = 112651, - [SMALL_STATE(2283)] = 112665, - [SMALL_STATE(2284)] = 112679, - [SMALL_STATE(2285)] = 112693, - [SMALL_STATE(2286)] = 112707, - [SMALL_STATE(2287)] = 112721, - [SMALL_STATE(2288)] = 112735, - [SMALL_STATE(2289)] = 112749, - [SMALL_STATE(2290)] = 112763, - [SMALL_STATE(2291)] = 112777, - [SMALL_STATE(2292)] = 112791, - [SMALL_STATE(2293)] = 112805, - [SMALL_STATE(2294)] = 112819, - [SMALL_STATE(2295)] = 112833, - [SMALL_STATE(2296)] = 112843, - [SMALL_STATE(2297)] = 112857, - [SMALL_STATE(2298)] = 112867, - [SMALL_STATE(2299)] = 112881, - [SMALL_STATE(2300)] = 112895, - [SMALL_STATE(2301)] = 112909, - [SMALL_STATE(2302)] = 112923, - [SMALL_STATE(2303)] = 112933, - [SMALL_STATE(2304)] = 112947, - [SMALL_STATE(2305)] = 112961, - [SMALL_STATE(2306)] = 112975, - [SMALL_STATE(2307)] = 112989, - [SMALL_STATE(2308)] = 113003, - [SMALL_STATE(2309)] = 113015, - [SMALL_STATE(2310)] = 113029, - [SMALL_STATE(2311)] = 113043, - [SMALL_STATE(2312)] = 113057, - [SMALL_STATE(2313)] = 113071, - [SMALL_STATE(2314)] = 113085, - [SMALL_STATE(2315)] = 113099, - [SMALL_STATE(2316)] = 113113, - [SMALL_STATE(2317)] = 113127, - [SMALL_STATE(2318)] = 113141, - [SMALL_STATE(2319)] = 113155, - [SMALL_STATE(2320)] = 113169, - [SMALL_STATE(2321)] = 113183, - [SMALL_STATE(2322)] = 113197, - [SMALL_STATE(2323)] = 113211, - [SMALL_STATE(2324)] = 113225, - [SMALL_STATE(2325)] = 113239, - [SMALL_STATE(2326)] = 113251, - [SMALL_STATE(2327)] = 113265, - [SMALL_STATE(2328)] = 113277, - [SMALL_STATE(2329)] = 113291, - [SMALL_STATE(2330)] = 113305, - [SMALL_STATE(2331)] = 113319, - [SMALL_STATE(2332)] = 113333, - [SMALL_STATE(2333)] = 113347, - [SMALL_STATE(2334)] = 113361, - [SMALL_STATE(2335)] = 113375, - [SMALL_STATE(2336)] = 113389, - [SMALL_STATE(2337)] = 113401, - [SMALL_STATE(2338)] = 113413, - [SMALL_STATE(2339)] = 113427, - [SMALL_STATE(2340)] = 113439, - [SMALL_STATE(2341)] = 113453, - [SMALL_STATE(2342)] = 113467, - [SMALL_STATE(2343)] = 113479, - [SMALL_STATE(2344)] = 113491, - [SMALL_STATE(2345)] = 113503, - [SMALL_STATE(2346)] = 113517, - [SMALL_STATE(2347)] = 113531, - [SMALL_STATE(2348)] = 113545, - [SMALL_STATE(2349)] = 113559, - [SMALL_STATE(2350)] = 113573, - [SMALL_STATE(2351)] = 113587, - [SMALL_STATE(2352)] = 113601, - [SMALL_STATE(2353)] = 113615, - [SMALL_STATE(2354)] = 113629, - [SMALL_STATE(2355)] = 113643, - [SMALL_STATE(2356)] = 113657, - [SMALL_STATE(2357)] = 113671, - [SMALL_STATE(2358)] = 113685, - [SMALL_STATE(2359)] = 113699, - [SMALL_STATE(2360)] = 113713, - [SMALL_STATE(2361)] = 113727, - [SMALL_STATE(2362)] = 113741, - [SMALL_STATE(2363)] = 113755, - [SMALL_STATE(2364)] = 113769, - [SMALL_STATE(2365)] = 113783, - [SMALL_STATE(2366)] = 113797, - [SMALL_STATE(2367)] = 113811, - [SMALL_STATE(2368)] = 113821, - [SMALL_STATE(2369)] = 113835, - [SMALL_STATE(2370)] = 113847, - [SMALL_STATE(2371)] = 113859, - [SMALL_STATE(2372)] = 113869, - [SMALL_STATE(2373)] = 113883, - [SMALL_STATE(2374)] = 113897, - [SMALL_STATE(2375)] = 113911, - [SMALL_STATE(2376)] = 113925, - [SMALL_STATE(2377)] = 113939, - [SMALL_STATE(2378)] = 113953, - [SMALL_STATE(2379)] = 113967, - [SMALL_STATE(2380)] = 113981, - [SMALL_STATE(2381)] = 113995, - [SMALL_STATE(2382)] = 114009, - [SMALL_STATE(2383)] = 114023, - [SMALL_STATE(2384)] = 114037, - [SMALL_STATE(2385)] = 114051, - [SMALL_STATE(2386)] = 114065, - [SMALL_STATE(2387)] = 114079, - [SMALL_STATE(2388)] = 114093, - [SMALL_STATE(2389)] = 114107, - [SMALL_STATE(2390)] = 114121, - [SMALL_STATE(2391)] = 114135, - [SMALL_STATE(2392)] = 114149, - [SMALL_STATE(2393)] = 114161, - [SMALL_STATE(2394)] = 114175, - [SMALL_STATE(2395)] = 114189, - [SMALL_STATE(2396)] = 114203, - [SMALL_STATE(2397)] = 114217, - [SMALL_STATE(2398)] = 114231, - [SMALL_STATE(2399)] = 114243, - [SMALL_STATE(2400)] = 114255, - [SMALL_STATE(2401)] = 114269, - [SMALL_STATE(2402)] = 114283, - [SMALL_STATE(2403)] = 114295, - [SMALL_STATE(2404)] = 114309, - [SMALL_STATE(2405)] = 114323, - [SMALL_STATE(2406)] = 114337, - [SMALL_STATE(2407)] = 114351, - [SMALL_STATE(2408)] = 114365, - [SMALL_STATE(2409)] = 114379, - [SMALL_STATE(2410)] = 114393, - [SMALL_STATE(2411)] = 114407, - [SMALL_STATE(2412)] = 114421, - [SMALL_STATE(2413)] = 114435, - [SMALL_STATE(2414)] = 114449, - [SMALL_STATE(2415)] = 114463, - [SMALL_STATE(2416)] = 114477, - [SMALL_STATE(2417)] = 114491, - [SMALL_STATE(2418)] = 114505, - [SMALL_STATE(2419)] = 114519, - [SMALL_STATE(2420)] = 114531, - [SMALL_STATE(2421)] = 114545, - [SMALL_STATE(2422)] = 114559, - [SMALL_STATE(2423)] = 114571, - [SMALL_STATE(2424)] = 114585, - [SMALL_STATE(2425)] = 114599, - [SMALL_STATE(2426)] = 114613, - [SMALL_STATE(2427)] = 114623, - [SMALL_STATE(2428)] = 114635, - [SMALL_STATE(2429)] = 114649, - [SMALL_STATE(2430)] = 114663, - [SMALL_STATE(2431)] = 114677, - [SMALL_STATE(2432)] = 114691, - [SMALL_STATE(2433)] = 114701, - [SMALL_STATE(2434)] = 114715, - [SMALL_STATE(2435)] = 114729, - [SMALL_STATE(2436)] = 114743, - [SMALL_STATE(2437)] = 114753, - [SMALL_STATE(2438)] = 114767, - [SMALL_STATE(2439)] = 114781, - [SMALL_STATE(2440)] = 114795, - [SMALL_STATE(2441)] = 114809, - [SMALL_STATE(2442)] = 114823, - [SMALL_STATE(2443)] = 114837, - [SMALL_STATE(2444)] = 114851, - [SMALL_STATE(2445)] = 114865, - [SMALL_STATE(2446)] = 114879, - [SMALL_STATE(2447)] = 114893, - [SMALL_STATE(2448)] = 114907, - [SMALL_STATE(2449)] = 114921, - [SMALL_STATE(2450)] = 114935, - [SMALL_STATE(2451)] = 114949, - [SMALL_STATE(2452)] = 114963, - [SMALL_STATE(2453)] = 114977, - [SMALL_STATE(2454)] = 114991, - [SMALL_STATE(2455)] = 115005, - [SMALL_STATE(2456)] = 115017, - [SMALL_STATE(2457)] = 115031, - [SMALL_STATE(2458)] = 115045, - [SMALL_STATE(2459)] = 115059, - [SMALL_STATE(2460)] = 115073, - [SMALL_STATE(2461)] = 115087, - [SMALL_STATE(2462)] = 115097, - [SMALL_STATE(2463)] = 115111, - [SMALL_STATE(2464)] = 115125, - [SMALL_STATE(2465)] = 115135, - [SMALL_STATE(2466)] = 115147, - [SMALL_STATE(2467)] = 115161, - [SMALL_STATE(2468)] = 115175, - [SMALL_STATE(2469)] = 115189, - [SMALL_STATE(2470)] = 115203, - [SMALL_STATE(2471)] = 115217, - [SMALL_STATE(2472)] = 115231, - [SMALL_STATE(2473)] = 115241, - [SMALL_STATE(2474)] = 115255, - [SMALL_STATE(2475)] = 115269, - [SMALL_STATE(2476)] = 115283, - [SMALL_STATE(2477)] = 115297, - [SMALL_STATE(2478)] = 115311, - [SMALL_STATE(2479)] = 115325, - [SMALL_STATE(2480)] = 115339, - [SMALL_STATE(2481)] = 115353, - [SMALL_STATE(2482)] = 115367, - [SMALL_STATE(2483)] = 115381, - [SMALL_STATE(2484)] = 115395, - [SMALL_STATE(2485)] = 115409, - [SMALL_STATE(2486)] = 115423, - [SMALL_STATE(2487)] = 115437, - [SMALL_STATE(2488)] = 115449, - [SMALL_STATE(2489)] = 115463, - [SMALL_STATE(2490)] = 115477, - [SMALL_STATE(2491)] = 115491, - [SMALL_STATE(2492)] = 115505, - [SMALL_STATE(2493)] = 115519, - [SMALL_STATE(2494)] = 115529, - [SMALL_STATE(2495)] = 115543, - [SMALL_STATE(2496)] = 115553, - [SMALL_STATE(2497)] = 115563, - [SMALL_STATE(2498)] = 115577, - [SMALL_STATE(2499)] = 115591, - [SMALL_STATE(2500)] = 115605, - [SMALL_STATE(2501)] = 115619, - [SMALL_STATE(2502)] = 115633, - [SMALL_STATE(2503)] = 115647, - [SMALL_STATE(2504)] = 115661, - [SMALL_STATE(2505)] = 115673, - [SMALL_STATE(2506)] = 115687, - [SMALL_STATE(2507)] = 115701, - [SMALL_STATE(2508)] = 115715, - [SMALL_STATE(2509)] = 115729, - [SMALL_STATE(2510)] = 115743, - [SMALL_STATE(2511)] = 115757, - [SMALL_STATE(2512)] = 115771, - [SMALL_STATE(2513)] = 115785, - [SMALL_STATE(2514)] = 115794, - [SMALL_STATE(2515)] = 115803, - [SMALL_STATE(2516)] = 115814, - [SMALL_STATE(2517)] = 115823, - [SMALL_STATE(2518)] = 115832, - [SMALL_STATE(2519)] = 115843, - [SMALL_STATE(2520)] = 115852, - [SMALL_STATE(2521)] = 115861, - [SMALL_STATE(2522)] = 115870, - [SMALL_STATE(2523)] = 115879, - [SMALL_STATE(2524)] = 115888, - [SMALL_STATE(2525)] = 115899, - [SMALL_STATE(2526)] = 115908, - [SMALL_STATE(2527)] = 115917, - [SMALL_STATE(2528)] = 115928, - [SMALL_STATE(2529)] = 115937, - [SMALL_STATE(2530)] = 115946, - [SMALL_STATE(2531)] = 115955, - [SMALL_STATE(2532)] = 115964, - [SMALL_STATE(2533)] = 115973, - [SMALL_STATE(2534)] = 115984, - [SMALL_STATE(2535)] = 115993, - [SMALL_STATE(2536)] = 116002, - [SMALL_STATE(2537)] = 116013, - [SMALL_STATE(2538)] = 116022, - [SMALL_STATE(2539)] = 116031, - [SMALL_STATE(2540)] = 116040, - [SMALL_STATE(2541)] = 116049, - [SMALL_STATE(2542)] = 116058, - [SMALL_STATE(2543)] = 116067, - [SMALL_STATE(2544)] = 116078, - [SMALL_STATE(2545)] = 116087, - [SMALL_STATE(2546)] = 116096, - [SMALL_STATE(2547)] = 116107, - [SMALL_STATE(2548)] = 116116, - [SMALL_STATE(2549)] = 116125, - [SMALL_STATE(2550)] = 116134, - [SMALL_STATE(2551)] = 116143, - [SMALL_STATE(2552)] = 116152, - [SMALL_STATE(2553)] = 116161, - [SMALL_STATE(2554)] = 116172, - [SMALL_STATE(2555)] = 116181, - [SMALL_STATE(2556)] = 116190, - [SMALL_STATE(2557)] = 116201, - [SMALL_STATE(2558)] = 116210, - [SMALL_STATE(2559)] = 116219, - [SMALL_STATE(2560)] = 116230, - [SMALL_STATE(2561)] = 116239, - [SMALL_STATE(2562)] = 116248, - [SMALL_STATE(2563)] = 116257, - [SMALL_STATE(2564)] = 116266, - [SMALL_STATE(2565)] = 116275, - [SMALL_STATE(2566)] = 116284, - [SMALL_STATE(2567)] = 116293, - [SMALL_STATE(2568)] = 116302, - [SMALL_STATE(2569)] = 116311, - [SMALL_STATE(2570)] = 116320, - [SMALL_STATE(2571)] = 116329, - [SMALL_STATE(2572)] = 116338, - [SMALL_STATE(2573)] = 116349, - [SMALL_STATE(2574)] = 116358, - [SMALL_STATE(2575)] = 116367, - [SMALL_STATE(2576)] = 116378, - [SMALL_STATE(2577)] = 116387, - [SMALL_STATE(2578)] = 116396, - [SMALL_STATE(2579)] = 116405, - [SMALL_STATE(2580)] = 116414, - [SMALL_STATE(2581)] = 116423, - [SMALL_STATE(2582)] = 116432, - [SMALL_STATE(2583)] = 116441, - [SMALL_STATE(2584)] = 116450, - [SMALL_STATE(2585)] = 116459, - [SMALL_STATE(2586)] = 116470, - [SMALL_STATE(2587)] = 116481, - [SMALL_STATE(2588)] = 116492, - [SMALL_STATE(2589)] = 116503, - [SMALL_STATE(2590)] = 116514, - [SMALL_STATE(2591)] = 116525, - [SMALL_STATE(2592)] = 116534, - [SMALL_STATE(2593)] = 116545, - [SMALL_STATE(2594)] = 116554, - [SMALL_STATE(2595)] = 116565, - [SMALL_STATE(2596)] = 116574, - [SMALL_STATE(2597)] = 116583, - [SMALL_STATE(2598)] = 116592, - [SMALL_STATE(2599)] = 116601, - [SMALL_STATE(2600)] = 116610, - [SMALL_STATE(2601)] = 116621, - [SMALL_STATE(2602)] = 116630, - [SMALL_STATE(2603)] = 116641, - [SMALL_STATE(2604)] = 116650, - [SMALL_STATE(2605)] = 116659, - [SMALL_STATE(2606)] = 116668, - [SMALL_STATE(2607)] = 116677, - [SMALL_STATE(2608)] = 116688, - [SMALL_STATE(2609)] = 116697, - [SMALL_STATE(2610)] = 116708, - [SMALL_STATE(2611)] = 116717, - [SMALL_STATE(2612)] = 116726, - [SMALL_STATE(2613)] = 116735, - [SMALL_STATE(2614)] = 116744, - [SMALL_STATE(2615)] = 116752, - [SMALL_STATE(2616)] = 116760, - [SMALL_STATE(2617)] = 116768, - [SMALL_STATE(2618)] = 116776, - [SMALL_STATE(2619)] = 116784, - [SMALL_STATE(2620)] = 116792, - [SMALL_STATE(2621)] = 116800, - [SMALL_STATE(2622)] = 116808, - [SMALL_STATE(2623)] = 116816, - [SMALL_STATE(2624)] = 116824, - [SMALL_STATE(2625)] = 116832, - [SMALL_STATE(2626)] = 116840, - [SMALL_STATE(2627)] = 116848, - [SMALL_STATE(2628)] = 116856, - [SMALL_STATE(2629)] = 116864, - [SMALL_STATE(2630)] = 116872, - [SMALL_STATE(2631)] = 116880, - [SMALL_STATE(2632)] = 116888, - [SMALL_STATE(2633)] = 116896, - [SMALL_STATE(2634)] = 116904, - [SMALL_STATE(2635)] = 116912, - [SMALL_STATE(2636)] = 116920, - [SMALL_STATE(2637)] = 116928, - [SMALL_STATE(2638)] = 116936, - [SMALL_STATE(2639)] = 116944, - [SMALL_STATE(2640)] = 116952, - [SMALL_STATE(2641)] = 116960, - [SMALL_STATE(2642)] = 116968, - [SMALL_STATE(2643)] = 116976, - [SMALL_STATE(2644)] = 116984, - [SMALL_STATE(2645)] = 116992, - [SMALL_STATE(2646)] = 117000, - [SMALL_STATE(2647)] = 117008, - [SMALL_STATE(2648)] = 117016, - [SMALL_STATE(2649)] = 117024, - [SMALL_STATE(2650)] = 117032, - [SMALL_STATE(2651)] = 117040, - [SMALL_STATE(2652)] = 117048, - [SMALL_STATE(2653)] = 117056, - [SMALL_STATE(2654)] = 117064, - [SMALL_STATE(2655)] = 117072, - [SMALL_STATE(2656)] = 117080, - [SMALL_STATE(2657)] = 117088, - [SMALL_STATE(2658)] = 117096, - [SMALL_STATE(2659)] = 117104, - [SMALL_STATE(2660)] = 117112, - [SMALL_STATE(2661)] = 117120, - [SMALL_STATE(2662)] = 117128, - [SMALL_STATE(2663)] = 117136, - [SMALL_STATE(2664)] = 117144, - [SMALL_STATE(2665)] = 117152, - [SMALL_STATE(2666)] = 117160, - [SMALL_STATE(2667)] = 117168, - [SMALL_STATE(2668)] = 117176, - [SMALL_STATE(2669)] = 117184, - [SMALL_STATE(2670)] = 117192, - [SMALL_STATE(2671)] = 117200, - [SMALL_STATE(2672)] = 117208, - [SMALL_STATE(2673)] = 117216, - [SMALL_STATE(2674)] = 117224, - [SMALL_STATE(2675)] = 117232, - [SMALL_STATE(2676)] = 117240, - [SMALL_STATE(2677)] = 117248, - [SMALL_STATE(2678)] = 117256, - [SMALL_STATE(2679)] = 117264, - [SMALL_STATE(2680)] = 117272, - [SMALL_STATE(2681)] = 117280, - [SMALL_STATE(2682)] = 117288, - [SMALL_STATE(2683)] = 117296, - [SMALL_STATE(2684)] = 117304, - [SMALL_STATE(2685)] = 117312, - [SMALL_STATE(2686)] = 117320, - [SMALL_STATE(2687)] = 117328, - [SMALL_STATE(2688)] = 117336, - [SMALL_STATE(2689)] = 117344, - [SMALL_STATE(2690)] = 117352, - [SMALL_STATE(2691)] = 117360, - [SMALL_STATE(2692)] = 117368, - [SMALL_STATE(2693)] = 117376, - [SMALL_STATE(2694)] = 117384, - [SMALL_STATE(2695)] = 117392, - [SMALL_STATE(2696)] = 117400, - [SMALL_STATE(2697)] = 117408, - [SMALL_STATE(2698)] = 117416, - [SMALL_STATE(2699)] = 117424, - [SMALL_STATE(2700)] = 117432, - [SMALL_STATE(2701)] = 117440, - [SMALL_STATE(2702)] = 117448, - [SMALL_STATE(2703)] = 117456, - [SMALL_STATE(2704)] = 117464, - [SMALL_STATE(2705)] = 117472, - [SMALL_STATE(2706)] = 117480, - [SMALL_STATE(2707)] = 117488, - [SMALL_STATE(2708)] = 117496, - [SMALL_STATE(2709)] = 117504, - [SMALL_STATE(2710)] = 117512, - [SMALL_STATE(2711)] = 117520, - [SMALL_STATE(2712)] = 117528, - [SMALL_STATE(2713)] = 117536, - [SMALL_STATE(2714)] = 117544, - [SMALL_STATE(2715)] = 117552, - [SMALL_STATE(2716)] = 117560, - [SMALL_STATE(2717)] = 117568, - [SMALL_STATE(2718)] = 117576, - [SMALL_STATE(2719)] = 117584, - [SMALL_STATE(2720)] = 117592, - [SMALL_STATE(2721)] = 117600, - [SMALL_STATE(2722)] = 117608, - [SMALL_STATE(2723)] = 117616, - [SMALL_STATE(2724)] = 117624, - [SMALL_STATE(2725)] = 117632, - [SMALL_STATE(2726)] = 117640, - [SMALL_STATE(2727)] = 117648, - [SMALL_STATE(2728)] = 117656, - [SMALL_STATE(2729)] = 117664, - [SMALL_STATE(2730)] = 117672, - [SMALL_STATE(2731)] = 117680, - [SMALL_STATE(2732)] = 117688, - [SMALL_STATE(2733)] = 117696, - [SMALL_STATE(2734)] = 117704, - [SMALL_STATE(2735)] = 117712, - [SMALL_STATE(2736)] = 117720, - [SMALL_STATE(2737)] = 117728, - [SMALL_STATE(2738)] = 117736, - [SMALL_STATE(2739)] = 117744, - [SMALL_STATE(2740)] = 117752, - [SMALL_STATE(2741)] = 117760, - [SMALL_STATE(2742)] = 117768, - [SMALL_STATE(2743)] = 117776, - [SMALL_STATE(2744)] = 117784, - [SMALL_STATE(2745)] = 117792, - [SMALL_STATE(2746)] = 117800, - [SMALL_STATE(2747)] = 117808, - [SMALL_STATE(2748)] = 117816, - [SMALL_STATE(2749)] = 117824, - [SMALL_STATE(2750)] = 117832, - [SMALL_STATE(2751)] = 117840, - [SMALL_STATE(2752)] = 117848, - [SMALL_STATE(2753)] = 117856, - [SMALL_STATE(2754)] = 117864, - [SMALL_STATE(2755)] = 117872, - [SMALL_STATE(2756)] = 117880, - [SMALL_STATE(2757)] = 117888, - [SMALL_STATE(2758)] = 117896, - [SMALL_STATE(2759)] = 117904, - [SMALL_STATE(2760)] = 117912, - [SMALL_STATE(2761)] = 117920, - [SMALL_STATE(2762)] = 117928, - [SMALL_STATE(2763)] = 117936, - [SMALL_STATE(2764)] = 117944, - [SMALL_STATE(2765)] = 117952, - [SMALL_STATE(2766)] = 117960, - [SMALL_STATE(2767)] = 117968, - [SMALL_STATE(2768)] = 117976, - [SMALL_STATE(2769)] = 117984, - [SMALL_STATE(2770)] = 117992, - [SMALL_STATE(2771)] = 118000, - [SMALL_STATE(2772)] = 118008, - [SMALL_STATE(2773)] = 118016, - [SMALL_STATE(2774)] = 118024, - [SMALL_STATE(2775)] = 118032, - [SMALL_STATE(2776)] = 118040, - [SMALL_STATE(2777)] = 118048, - [SMALL_STATE(2778)] = 118056, - [SMALL_STATE(2779)] = 118064, - [SMALL_STATE(2780)] = 118072, - [SMALL_STATE(2781)] = 118080, - [SMALL_STATE(2782)] = 118088, - [SMALL_STATE(2783)] = 118096, - [SMALL_STATE(2784)] = 118104, - [SMALL_STATE(2785)] = 118112, - [SMALL_STATE(2786)] = 118120, - [SMALL_STATE(2787)] = 118128, - [SMALL_STATE(2788)] = 118136, - [SMALL_STATE(2789)] = 118144, - [SMALL_STATE(2790)] = 118152, - [SMALL_STATE(2791)] = 118160, - [SMALL_STATE(2792)] = 118168, - [SMALL_STATE(2793)] = 118176, - [SMALL_STATE(2794)] = 118184, - [SMALL_STATE(2795)] = 118192, - [SMALL_STATE(2796)] = 118200, - [SMALL_STATE(2797)] = 118208, - [SMALL_STATE(2798)] = 118216, - [SMALL_STATE(2799)] = 118224, - [SMALL_STATE(2800)] = 118232, - [SMALL_STATE(2801)] = 118240, - [SMALL_STATE(2802)] = 118248, - [SMALL_STATE(2803)] = 118256, - [SMALL_STATE(2804)] = 118264, - [SMALL_STATE(2805)] = 118272, - [SMALL_STATE(2806)] = 118280, - [SMALL_STATE(2807)] = 118288, - [SMALL_STATE(2808)] = 118296, + [SMALL_STATE(234)] = 5361, + [SMALL_STATE(235)] = 5474, + [SMALL_STATE(236)] = 5587, + [SMALL_STATE(237)] = 5700, + [SMALL_STATE(238)] = 5813, + [SMALL_STATE(239)] = 5928, + [SMALL_STATE(240)] = 6041, + [SMALL_STATE(241)] = 6156, + [SMALL_STATE(242)] = 6269, + [SMALL_STATE(243)] = 6374, + [SMALL_STATE(244)] = 6487, + [SMALL_STATE(245)] = 6600, + [SMALL_STATE(246)] = 6715, + [SMALL_STATE(247)] = 6830, + [SMALL_STATE(248)] = 6943, + [SMALL_STATE(249)] = 7060, + [SMALL_STATE(250)] = 7171, + [SMALL_STATE(251)] = 7286, + [SMALL_STATE(252)] = 7391, + [SMALL_STATE(253)] = 7506, + [SMALL_STATE(254)] = 7619, + [SMALL_STATE(255)] = 7732, + [SMALL_STATE(256)] = 7847, + [SMALL_STATE(257)] = 7962, + [SMALL_STATE(258)] = 8075, + [SMALL_STATE(259)] = 8188, + [SMALL_STATE(260)] = 8303, + [SMALL_STATE(261)] = 8416, + [SMALL_STATE(262)] = 8529, + [SMALL_STATE(263)] = 8642, + [SMALL_STATE(264)] = 8755, + [SMALL_STATE(265)] = 8868, + [SMALL_STATE(266)] = 8981, + [SMALL_STATE(267)] = 9095, + [SMALL_STATE(268)] = 9207, + [SMALL_STATE(269)] = 9323, + [SMALL_STATE(270)] = 9435, + [SMALL_STATE(271)] = 9547, + [SMALL_STATE(272)] = 9659, + [SMALL_STATE(273)] = 9771, + [SMALL_STATE(274)] = 9883, + [SMALL_STATE(275)] = 9995, + [SMALL_STATE(276)] = 10109, + [SMALL_STATE(277)] = 10225, + [SMALL_STATE(278)] = 10337, + [SMALL_STATE(279)] = 10449, + [SMALL_STATE(280)] = 10565, + [SMALL_STATE(281)] = 10677, + [SMALL_STATE(282)] = 10789, + [SMALL_STATE(283)] = 10901, + [SMALL_STATE(284)] = 11013, + [SMALL_STATE(285)] = 11125, + [SMALL_STATE(286)] = 11237, + [SMALL_STATE(287)] = 11349, + [SMALL_STATE(288)] = 11461, + [SMALL_STATE(289)] = 11573, + [SMALL_STATE(290)] = 11685, + [SMALL_STATE(291)] = 11799, + [SMALL_STATE(292)] = 11911, + [SMALL_STATE(293)] = 12027, + [SMALL_STATE(294)] = 12139, + [SMALL_STATE(295)] = 12251, + [SMALL_STATE(296)] = 12363, + [SMALL_STATE(297)] = 12475, + [SMALL_STATE(298)] = 12589, + [SMALL_STATE(299)] = 12701, + [SMALL_STATE(300)] = 12815, + [SMALL_STATE(301)] = 12929, + [SMALL_STATE(302)] = 13041, + [SMALL_STATE(303)] = 13153, + [SMALL_STATE(304)] = 13269, + [SMALL_STATE(305)] = 13381, + [SMALL_STATE(306)] = 13493, + [SMALL_STATE(307)] = 13605, + [SMALL_STATE(308)] = 13717, + [SMALL_STATE(309)] = 13829, + [SMALL_STATE(310)] = 13945, + [SMALL_STATE(311)] = 14057, + [SMALL_STATE(312)] = 14169, + [SMALL_STATE(313)] = 14281, + [SMALL_STATE(314)] = 14393, + [SMALL_STATE(315)] = 14505, + [SMALL_STATE(316)] = 14617, + [SMALL_STATE(317)] = 14729, + [SMALL_STATE(318)] = 14841, + [SMALL_STATE(319)] = 14955, + [SMALL_STATE(320)] = 15069, + [SMALL_STATE(321)] = 15178, + [SMALL_STATE(322)] = 15287, + [SMALL_STATE(323)] = 15384, + [SMALL_STATE(324)] = 15493, + [SMALL_STATE(325)] = 15598, + [SMALL_STATE(326)] = 15707, + [SMALL_STATE(327)] = 15816, + [SMALL_STATE(328)] = 15925, + [SMALL_STATE(329)] = 16034, + [SMALL_STATE(330)] = 16143, + [SMALL_STATE(331)] = 16252, + [SMALL_STATE(332)] = 16361, + [SMALL_STATE(333)] = 16470, + [SMALL_STATE(334)] = 16579, + [SMALL_STATE(335)] = 16688, + [SMALL_STATE(336)] = 16797, + [SMALL_STATE(337)] = 16902, + [SMALL_STATE(338)] = 17011, + [SMALL_STATE(339)] = 17120, + [SMALL_STATE(340)] = 17229, + [SMALL_STATE(341)] = 17338, + [SMALL_STATE(342)] = 17447, + [SMALL_STATE(343)] = 17555, + [SMALL_STATE(344)] = 17661, + [SMALL_STATE(345)] = 17769, + [SMALL_STATE(346)] = 17877, + [SMALL_STATE(347)] = 17985, + [SMALL_STATE(348)] = 18093, + [SMALL_STATE(349)] = 18201, + [SMALL_STATE(350)] = 18309, + [SMALL_STATE(351)] = 18417, + [SMALL_STATE(352)] = 18523, + [SMALL_STATE(353)] = 18631, + [SMALL_STATE(354)] = 18739, + [SMALL_STATE(355)] = 18847, + [SMALL_STATE(356)] = 18955, + [SMALL_STATE(357)] = 19063, + [SMALL_STATE(358)] = 19171, + [SMALL_STATE(359)] = 19279, + [SMALL_STATE(360)] = 19387, + [SMALL_STATE(361)] = 19495, + [SMALL_STATE(362)] = 19603, + [SMALL_STATE(363)] = 19711, + [SMALL_STATE(364)] = 19817, + [SMALL_STATE(365)] = 19925, + [SMALL_STATE(366)] = 20032, + [SMALL_STATE(367)] = 20137, + [SMALL_STATE(368)] = 20244, + [SMALL_STATE(369)] = 20351, + [SMALL_STATE(370)] = 20458, + [SMALL_STATE(371)] = 20565, + [SMALL_STATE(372)] = 20670, + [SMALL_STATE(373)] = 20777, + [SMALL_STATE(374)] = 20882, + [SMALL_STATE(375)] = 20989, + [SMALL_STATE(376)] = 21096, + [SMALL_STATE(377)] = 21203, + [SMALL_STATE(378)] = 21310, + [SMALL_STATE(379)] = 21415, + [SMALL_STATE(380)] = 21522, + [SMALL_STATE(381)] = 21629, + [SMALL_STATE(382)] = 21736, + [SMALL_STATE(383)] = 21843, + [SMALL_STATE(384)] = 21950, + [SMALL_STATE(385)] = 22057, + [SMALL_STATE(386)] = 22164, + [SMALL_STATE(387)] = 22271, + [SMALL_STATE(388)] = 22378, + [SMALL_STATE(389)] = 22485, + [SMALL_STATE(390)] = 22592, + [SMALL_STATE(391)] = 22699, + [SMALL_STATE(392)] = 22806, + [SMALL_STATE(393)] = 22913, + [SMALL_STATE(394)] = 23020, + [SMALL_STATE(395)] = 23127, + [SMALL_STATE(396)] = 23234, + [SMALL_STATE(397)] = 23339, + [SMALL_STATE(398)] = 23444, + [SMALL_STATE(399)] = 23551, + [SMALL_STATE(400)] = 23658, + [SMALL_STATE(401)] = 23765, + [SMALL_STATE(402)] = 23859, + [SMALL_STATE(403)] = 23963, + [SMALL_STATE(404)] = 24065, + [SMALL_STATE(405)] = 24167, + [SMALL_STATE(406)] = 24269, + [SMALL_STATE(407)] = 24371, + [SMALL_STATE(408)] = 24473, + [SMALL_STATE(409)] = 24577, + [SMALL_STATE(410)] = 24679, + [SMALL_STATE(411)] = 24783, + [SMALL_STATE(412)] = 24887, + [SMALL_STATE(413)] = 24989, + [SMALL_STATE(414)] = 25091, + [SMALL_STATE(415)] = 25193, + [SMALL_STATE(416)] = 25289, + [SMALL_STATE(417)] = 25391, + [SMALL_STATE(418)] = 25493, + [SMALL_STATE(419)] = 25597, + [SMALL_STATE(420)] = 25699, + [SMALL_STATE(421)] = 25793, + [SMALL_STATE(422)] = 25895, + [SMALL_STATE(423)] = 25997, + [SMALL_STATE(424)] = 26099, + [SMALL_STATE(425)] = 26201, + [SMALL_STATE(426)] = 26303, + [SMALL_STATE(427)] = 26407, + [SMALL_STATE(428)] = 26509, + [SMALL_STATE(429)] = 26611, + [SMALL_STATE(430)] = 26713, + [SMALL_STATE(431)] = 26815, + [SMALL_STATE(432)] = 26919, + [SMALL_STATE(433)] = 27023, + [SMALL_STATE(434)] = 27125, + [SMALL_STATE(435)] = 27229, + [SMALL_STATE(436)] = 27331, + [SMALL_STATE(437)] = 27435, + [SMALL_STATE(438)] = 27539, + [SMALL_STATE(439)] = 27643, + [SMALL_STATE(440)] = 27747, + [SMALL_STATE(441)] = 27851, + [SMALL_STATE(442)] = 27955, + [SMALL_STATE(443)] = 28059, + [SMALL_STATE(444)] = 28161, + [SMALL_STATE(445)] = 28265, + [SMALL_STATE(446)] = 28369, + [SMALL_STATE(447)] = 28473, + [SMALL_STATE(448)] = 28575, + [SMALL_STATE(449)] = 28677, + [SMALL_STATE(450)] = 28779, + [SMALL_STATE(451)] = 28881, + [SMALL_STATE(452)] = 28956, + [SMALL_STATE(453)] = 29057, + [SMALL_STATE(454)] = 29158, + [SMALL_STATE(455)] = 29259, + [SMALL_STATE(456)] = 29360, + [SMALL_STATE(457)] = 29461, + [SMALL_STATE(458)] = 29562, + [SMALL_STATE(459)] = 29663, + [SMALL_STATE(460)] = 29764, + [SMALL_STATE(461)] = 29865, + [SMALL_STATE(462)] = 29966, + [SMALL_STATE(463)] = 30067, + [SMALL_STATE(464)] = 30168, + [SMALL_STATE(465)] = 30243, + [SMALL_STATE(466)] = 30320, + [SMALL_STATE(467)] = 30421, + [SMALL_STATE(468)] = 30522, + [SMALL_STATE(469)] = 30597, + [SMALL_STATE(470)] = 30698, + [SMALL_STATE(471)] = 30796, + [SMALL_STATE(472)] = 30894, + [SMALL_STATE(473)] = 30992, + [SMALL_STATE(474)] = 31090, + [SMALL_STATE(475)] = 31188, + [SMALL_STATE(476)] = 31286, + [SMALL_STATE(477)] = 31384, + [SMALL_STATE(478)] = 31482, + [SMALL_STATE(479)] = 31580, + [SMALL_STATE(480)] = 31678, + [SMALL_STATE(481)] = 31776, + [SMALL_STATE(482)] = 31874, + [SMALL_STATE(483)] = 31946, + [SMALL_STATE(484)] = 32044, + [SMALL_STATE(485)] = 32142, + [SMALL_STATE(486)] = 32240, + [SMALL_STATE(487)] = 32338, + [SMALL_STATE(488)] = 32436, + [SMALL_STATE(489)] = 32534, + [SMALL_STATE(490)] = 32632, + [SMALL_STATE(491)] = 32730, + [SMALL_STATE(492)] = 32828, + [SMALL_STATE(493)] = 32926, + [SMALL_STATE(494)] = 33024, + [SMALL_STATE(495)] = 33122, + [SMALL_STATE(496)] = 33220, + [SMALL_STATE(497)] = 33318, + [SMALL_STATE(498)] = 33416, + [SMALL_STATE(499)] = 33488, + [SMALL_STATE(500)] = 33586, + [SMALL_STATE(501)] = 33684, + [SMALL_STATE(502)] = 33782, + [SMALL_STATE(503)] = 33880, + [SMALL_STATE(504)] = 33978, + [SMALL_STATE(505)] = 34076, + [SMALL_STATE(506)] = 34174, + [SMALL_STATE(507)] = 34272, + [SMALL_STATE(508)] = 34370, + [SMALL_STATE(509)] = 34468, + [SMALL_STATE(510)] = 34566, + [SMALL_STATE(511)] = 34664, + [SMALL_STATE(512)] = 34762, + [SMALL_STATE(513)] = 34860, + [SMALL_STATE(514)] = 34958, + [SMALL_STATE(515)] = 35056, + [SMALL_STATE(516)] = 35154, + [SMALL_STATE(517)] = 35252, + [SMALL_STATE(518)] = 35350, + [SMALL_STATE(519)] = 35448, + [SMALL_STATE(520)] = 35546, + [SMALL_STATE(521)] = 35644, + [SMALL_STATE(522)] = 35742, + [SMALL_STATE(523)] = 35840, + [SMALL_STATE(524)] = 35938, + [SMALL_STATE(525)] = 36036, + [SMALL_STATE(526)] = 36134, + [SMALL_STATE(527)] = 36232, + [SMALL_STATE(528)] = 36330, + [SMALL_STATE(529)] = 36430, + [SMALL_STATE(530)] = 36528, + [SMALL_STATE(531)] = 36626, + [SMALL_STATE(532)] = 36724, + [SMALL_STATE(533)] = 36822, + [SMALL_STATE(534)] = 36894, + [SMALL_STATE(535)] = 36966, + [SMALL_STATE(536)] = 37038, + [SMALL_STATE(537)] = 37110, + [SMALL_STATE(538)] = 37208, + [SMALL_STATE(539)] = 37306, + [SMALL_STATE(540)] = 37404, + [SMALL_STATE(541)] = 37502, + [SMALL_STATE(542)] = 37600, + [SMALL_STATE(543)] = 37698, + [SMALL_STATE(544)] = 37796, + [SMALL_STATE(545)] = 37894, + [SMALL_STATE(546)] = 37992, + [SMALL_STATE(547)] = 38090, + [SMALL_STATE(548)] = 38188, + [SMALL_STATE(549)] = 38286, + [SMALL_STATE(550)] = 38384, + [SMALL_STATE(551)] = 38482, + [SMALL_STATE(552)] = 38580, + [SMALL_STATE(553)] = 38678, + [SMALL_STATE(554)] = 38776, + [SMALL_STATE(555)] = 38848, + [SMALL_STATE(556)] = 38946, + [SMALL_STATE(557)] = 39046, + [SMALL_STATE(558)] = 39118, + [SMALL_STATE(559)] = 39216, + [SMALL_STATE(560)] = 39314, + [SMALL_STATE(561)] = 39412, + [SMALL_STATE(562)] = 39510, + [SMALL_STATE(563)] = 39608, + [SMALL_STATE(564)] = 39706, + [SMALL_STATE(565)] = 39806, + [SMALL_STATE(566)] = 39904, + [SMALL_STATE(567)] = 40002, + [SMALL_STATE(568)] = 40100, + [SMALL_STATE(569)] = 40198, + [SMALL_STATE(570)] = 40296, + [SMALL_STATE(571)] = 40394, + [SMALL_STATE(572)] = 40492, + [SMALL_STATE(573)] = 40590, + [SMALL_STATE(574)] = 40690, + [SMALL_STATE(575)] = 40788, + [SMALL_STATE(576)] = 40886, + [SMALL_STATE(577)] = 40986, + [SMALL_STATE(578)] = 41084, + [SMALL_STATE(579)] = 41184, + [SMALL_STATE(580)] = 41282, + [SMALL_STATE(581)] = 41380, + [SMALL_STATE(582)] = 41478, + [SMALL_STATE(583)] = 41576, + [SMALL_STATE(584)] = 41674, + [SMALL_STATE(585)] = 41772, + [SMALL_STATE(586)] = 41870, + [SMALL_STATE(587)] = 41968, + [SMALL_STATE(588)] = 42066, + [SMALL_STATE(589)] = 42164, + [SMALL_STATE(590)] = 42262, + [SMALL_STATE(591)] = 42360, + [SMALL_STATE(592)] = 42458, + [SMALL_STATE(593)] = 42556, + [SMALL_STATE(594)] = 42654, + [SMALL_STATE(595)] = 42752, + [SMALL_STATE(596)] = 42850, + [SMALL_STATE(597)] = 42948, + [SMALL_STATE(598)] = 43046, + [SMALL_STATE(599)] = 43144, + [SMALL_STATE(600)] = 43242, + [SMALL_STATE(601)] = 43340, + [SMALL_STATE(602)] = 43438, + [SMALL_STATE(603)] = 43536, + [SMALL_STATE(604)] = 43634, + [SMALL_STATE(605)] = 43732, + [SMALL_STATE(606)] = 43832, + [SMALL_STATE(607)] = 43905, + [SMALL_STATE(608)] = 43973, + [SMALL_STATE(609)] = 44035, + [SMALL_STATE(610)] = 44103, + [SMALL_STATE(611)] = 44171, + [SMALL_STATE(612)] = 44239, + [SMALL_STATE(613)] = 44307, + [SMALL_STATE(614)] = 44375, + [SMALL_STATE(615)] = 44437, + [SMALL_STATE(616)] = 44499, + [SMALL_STATE(617)] = 44567, + [SMALL_STATE(618)] = 44635, + [SMALL_STATE(619)] = 44701, + [SMALL_STATE(620)] = 44769, + [SMALL_STATE(621)] = 44837, + [SMALL_STATE(622)] = 44903, + [SMALL_STATE(623)] = 44969, + [SMALL_STATE(624)] = 45031, + [SMALL_STATE(625)] = 45088, + [SMALL_STATE(626)] = 45145, + [SMALL_STATE(627)] = 45202, + [SMALL_STATE(628)] = 45263, + [SMALL_STATE(629)] = 45326, + [SMALL_STATE(630)] = 45383, + [SMALL_STATE(631)] = 45446, + [SMALL_STATE(632)] = 45509, + [SMALL_STATE(633)] = 45574, + [SMALL_STATE(634)] = 45631, + [SMALL_STATE(635)] = 45688, + [SMALL_STATE(636)] = 45745, + [SMALL_STATE(637)] = 45808, + [SMALL_STATE(638)] = 45869, + [SMALL_STATE(639)] = 45932, + [SMALL_STATE(640)] = 45993, + [SMALL_STATE(641)] = 46056, + [SMALL_STATE(642)] = 46119, + [SMALL_STATE(643)] = 46182, + [SMALL_STATE(644)] = 46245, + [SMALL_STATE(645)] = 46308, + [SMALL_STATE(646)] = 46364, + [SMALL_STATE(647)] = 46420, + [SMALL_STATE(648)] = 46476, + [SMALL_STATE(649)] = 46532, + [SMALL_STATE(650)] = 46588, + [SMALL_STATE(651)] = 46644, + [SMALL_STATE(652)] = 46700, + [SMALL_STATE(653)] = 46756, + [SMALL_STATE(654)] = 46812, + [SMALL_STATE(655)] = 46868, + [SMALL_STATE(656)] = 46924, + [SMALL_STATE(657)] = 46980, + [SMALL_STATE(658)] = 47036, + [SMALL_STATE(659)] = 47092, + [SMALL_STATE(660)] = 47148, + [SMALL_STATE(661)] = 47240, + [SMALL_STATE(662)] = 47296, + [SMALL_STATE(663)] = 47352, + [SMALL_STATE(664)] = 47408, + [SMALL_STATE(665)] = 47464, + [SMALL_STATE(666)] = 47520, + [SMALL_STATE(667)] = 47576, + [SMALL_STATE(668)] = 47632, + [SMALL_STATE(669)] = 47688, + [SMALL_STATE(670)] = 47744, + [SMALL_STATE(671)] = 47836, + [SMALL_STATE(672)] = 47892, + [SMALL_STATE(673)] = 47948, + [SMALL_STATE(674)] = 48004, + [SMALL_STATE(675)] = 48060, + [SMALL_STATE(676)] = 48116, + [SMALL_STATE(677)] = 48172, + [SMALL_STATE(678)] = 48228, + [SMALL_STATE(679)] = 48284, + [SMALL_STATE(680)] = 48340, + [SMALL_STATE(681)] = 48396, + [SMALL_STATE(682)] = 48452, + [SMALL_STATE(683)] = 48508, + [SMALL_STATE(684)] = 48564, + [SMALL_STATE(685)] = 48620, + [SMALL_STATE(686)] = 48676, + [SMALL_STATE(687)] = 48732, + [SMALL_STATE(688)] = 48788, + [SMALL_STATE(689)] = 48844, + [SMALL_STATE(690)] = 48900, + [SMALL_STATE(691)] = 48956, + [SMALL_STATE(692)] = 49012, + [SMALL_STATE(693)] = 49068, + [SMALL_STATE(694)] = 49124, + [SMALL_STATE(695)] = 49180, + [SMALL_STATE(696)] = 49236, + [SMALL_STATE(697)] = 49292, + [SMALL_STATE(698)] = 49347, + [SMALL_STATE(699)] = 49406, + [SMALL_STATE(700)] = 49461, + [SMALL_STATE(701)] = 49520, + [SMALL_STATE(702)] = 49579, + [SMALL_STATE(703)] = 49638, + [SMALL_STATE(704)] = 49693, + [SMALL_STATE(705)] = 49752, + [SMALL_STATE(706)] = 49807, + [SMALL_STATE(707)] = 49862, + [SMALL_STATE(708)] = 49921, + [SMALL_STATE(709)] = 49980, + [SMALL_STATE(710)] = 50039, + [SMALL_STATE(711)] = 50094, + [SMALL_STATE(712)] = 50153, + [SMALL_STATE(713)] = 50212, + [SMALL_STATE(714)] = 50271, + [SMALL_STATE(715)] = 50330, + [SMALL_STATE(716)] = 50389, + [SMALL_STATE(717)] = 50448, + [SMALL_STATE(718)] = 50507, + [SMALL_STATE(719)] = 50566, + [SMALL_STATE(720)] = 50620, + [SMALL_STATE(721)] = 50674, + [SMALL_STATE(722)] = 50728, + [SMALL_STATE(723)] = 50782, + [SMALL_STATE(724)] = 50835, + [SMALL_STATE(725)] = 50888, + [SMALL_STATE(726)] = 50941, + [SMALL_STATE(727)] = 50994, + [SMALL_STATE(728)] = 51047, + [SMALL_STATE(729)] = 51100, + [SMALL_STATE(730)] = 51153, + [SMALL_STATE(731)] = 51206, + [SMALL_STATE(732)] = 51259, + [SMALL_STATE(733)] = 51312, + [SMALL_STATE(734)] = 51365, + [SMALL_STATE(735)] = 51418, + [SMALL_STATE(736)] = 51471, + [SMALL_STATE(737)] = 51524, + [SMALL_STATE(738)] = 51577, + [SMALL_STATE(739)] = 51630, + [SMALL_STATE(740)] = 51683, + [SMALL_STATE(741)] = 51736, + [SMALL_STATE(742)] = 51789, + [SMALL_STATE(743)] = 51842, + [SMALL_STATE(744)] = 51895, + [SMALL_STATE(745)] = 51948, + [SMALL_STATE(746)] = 52001, + [SMALL_STATE(747)] = 52090, + [SMALL_STATE(748)] = 52143, + [SMALL_STATE(749)] = 52196, + [SMALL_STATE(750)] = 52249, + [SMALL_STATE(751)] = 52302, + [SMALL_STATE(752)] = 52355, + [SMALL_STATE(753)] = 52408, + [SMALL_STATE(754)] = 52461, + [SMALL_STATE(755)] = 52514, + [SMALL_STATE(756)] = 52567, + [SMALL_STATE(757)] = 52620, + [SMALL_STATE(758)] = 52673, + [SMALL_STATE(759)] = 52726, + [SMALL_STATE(760)] = 52779, + [SMALL_STATE(761)] = 52832, + [SMALL_STATE(762)] = 52885, + [SMALL_STATE(763)] = 52938, + [SMALL_STATE(764)] = 52991, + [SMALL_STATE(765)] = 53044, + [SMALL_STATE(766)] = 53097, + [SMALL_STATE(767)] = 53150, + [SMALL_STATE(768)] = 53203, + [SMALL_STATE(769)] = 53256, + [SMALL_STATE(770)] = 53309, + [SMALL_STATE(771)] = 53362, + [SMALL_STATE(772)] = 53451, + [SMALL_STATE(773)] = 53504, + [SMALL_STATE(774)] = 53557, + [SMALL_STATE(775)] = 53610, + [SMALL_STATE(776)] = 53663, + [SMALL_STATE(777)] = 53716, + [SMALL_STATE(778)] = 53769, + [SMALL_STATE(779)] = 53822, + [SMALL_STATE(780)] = 53875, + [SMALL_STATE(781)] = 53928, + [SMALL_STATE(782)] = 53981, + [SMALL_STATE(783)] = 54034, + [SMALL_STATE(784)] = 54087, + [SMALL_STATE(785)] = 54140, + [SMALL_STATE(786)] = 54193, + [SMALL_STATE(787)] = 54246, + [SMALL_STATE(788)] = 54299, + [SMALL_STATE(789)] = 54352, + [SMALL_STATE(790)] = 54405, + [SMALL_STATE(791)] = 54458, + [SMALL_STATE(792)] = 54511, + [SMALL_STATE(793)] = 54564, + [SMALL_STATE(794)] = 54617, + [SMALL_STATE(795)] = 54670, + [SMALL_STATE(796)] = 54723, + [SMALL_STATE(797)] = 54776, + [SMALL_STATE(798)] = 54829, + [SMALL_STATE(799)] = 54882, + [SMALL_STATE(800)] = 54971, + [SMALL_STATE(801)] = 55024, + [SMALL_STATE(802)] = 55113, + [SMALL_STATE(803)] = 55166, + [SMALL_STATE(804)] = 55219, + [SMALL_STATE(805)] = 55272, + [SMALL_STATE(806)] = 55325, + [SMALL_STATE(807)] = 55378, + [SMALL_STATE(808)] = 55467, + [SMALL_STATE(809)] = 55520, + [SMALL_STATE(810)] = 55573, + [SMALL_STATE(811)] = 55626, + [SMALL_STATE(812)] = 55679, + [SMALL_STATE(813)] = 55732, + [SMALL_STATE(814)] = 55785, + [SMALL_STATE(815)] = 55838, + [SMALL_STATE(816)] = 55891, + [SMALL_STATE(817)] = 55944, + [SMALL_STATE(818)] = 55997, + [SMALL_STATE(819)] = 56050, + [SMALL_STATE(820)] = 56103, + [SMALL_STATE(821)] = 56156, + [SMALL_STATE(822)] = 56209, + [SMALL_STATE(823)] = 56298, + [SMALL_STATE(824)] = 56351, + [SMALL_STATE(825)] = 56404, + [SMALL_STATE(826)] = 56457, + [SMALL_STATE(827)] = 56510, + [SMALL_STATE(828)] = 56563, + [SMALL_STATE(829)] = 56652, + [SMALL_STATE(830)] = 56705, + [SMALL_STATE(831)] = 56758, + [SMALL_STATE(832)] = 56811, + [SMALL_STATE(833)] = 56864, + [SMALL_STATE(834)] = 56917, + [SMALL_STATE(835)] = 56970, + [SMALL_STATE(836)] = 57023, + [SMALL_STATE(837)] = 57076, + [SMALL_STATE(838)] = 57129, + [SMALL_STATE(839)] = 57182, + [SMALL_STATE(840)] = 57235, + [SMALL_STATE(841)] = 57324, + [SMALL_STATE(842)] = 57413, + [SMALL_STATE(843)] = 57466, + [SMALL_STATE(844)] = 57519, + [SMALL_STATE(845)] = 57608, + [SMALL_STATE(846)] = 57661, + [SMALL_STATE(847)] = 57750, + [SMALL_STATE(848)] = 57839, + [SMALL_STATE(849)] = 57928, + [SMALL_STATE(850)] = 58017, + [SMALL_STATE(851)] = 58106, + [SMALL_STATE(852)] = 58195, + [SMALL_STATE(853)] = 58248, + [SMALL_STATE(854)] = 58334, + [SMALL_STATE(855)] = 58420, + [SMALL_STATE(856)] = 58506, + [SMALL_STATE(857)] = 58592, + [SMALL_STATE(858)] = 58678, + [SMALL_STATE(859)] = 58764, + [SMALL_STATE(860)] = 58842, + [SMALL_STATE(861)] = 58920, + [SMALL_STATE(862)] = 58998, + [SMALL_STATE(863)] = 59076, + [SMALL_STATE(864)] = 59154, + [SMALL_STATE(865)] = 59232, + [SMALL_STATE(866)] = 59310, + [SMALL_STATE(867)] = 59388, + [SMALL_STATE(868)] = 59474, + [SMALL_STATE(869)] = 59549, + [SMALL_STATE(870)] = 59628, + [SMALL_STATE(871)] = 59703, + [SMALL_STATE(872)] = 59778, + [SMALL_STATE(873)] = 59853, + [SMALL_STATE(874)] = 59928, + [SMALL_STATE(875)] = 60003, + [SMALL_STATE(876)] = 60078, + [SMALL_STATE(877)] = 60153, + [SMALL_STATE(878)] = 60228, + [SMALL_STATE(879)] = 60303, + [SMALL_STATE(880)] = 60382, + [SMALL_STATE(881)] = 60457, + [SMALL_STATE(882)] = 60532, + [SMALL_STATE(883)] = 60607, + [SMALL_STATE(884)] = 60682, + [SMALL_STATE(885)] = 60757, + [SMALL_STATE(886)] = 60832, + [SMALL_STATE(887)] = 60911, + [SMALL_STATE(888)] = 60986, + [SMALL_STATE(889)] = 61061, + [SMALL_STATE(890)] = 61136, + [SMALL_STATE(891)] = 61211, + [SMALL_STATE(892)] = 61286, + [SMALL_STATE(893)] = 61361, + [SMALL_STATE(894)] = 61436, + [SMALL_STATE(895)] = 61511, + [SMALL_STATE(896)] = 61586, + [SMALL_STATE(897)] = 61671, + [SMALL_STATE(898)] = 61750, + [SMALL_STATE(899)] = 61825, + [SMALL_STATE(900)] = 61900, + [SMALL_STATE(901)] = 61975, + [SMALL_STATE(902)] = 62050, + [SMALL_STATE(903)] = 62125, + [SMALL_STATE(904)] = 62204, + [SMALL_STATE(905)] = 62279, + [SMALL_STATE(906)] = 62354, + [SMALL_STATE(907)] = 62433, + [SMALL_STATE(908)] = 62508, + [SMALL_STATE(909)] = 62583, + [SMALL_STATE(910)] = 62658, + [SMALL_STATE(911)] = 62733, + [SMALL_STATE(912)] = 62808, + [SMALL_STATE(913)] = 62883, + [SMALL_STATE(914)] = 62958, + [SMALL_STATE(915)] = 63033, + [SMALL_STATE(916)] = 63112, + [SMALL_STATE(917)] = 63187, + [SMALL_STATE(918)] = 63262, + [SMALL_STATE(919)] = 63341, + [SMALL_STATE(920)] = 63416, + [SMALL_STATE(921)] = 63491, + [SMALL_STATE(922)] = 63566, + [SMALL_STATE(923)] = 63641, + [SMALL_STATE(924)] = 63720, + [SMALL_STATE(925)] = 63795, + [SMALL_STATE(926)] = 63870, + [SMALL_STATE(927)] = 63945, + [SMALL_STATE(928)] = 64020, + [SMALL_STATE(929)] = 64095, + [SMALL_STATE(930)] = 64170, + [SMALL_STATE(931)] = 64245, + [SMALL_STATE(932)] = 64320, + [SMALL_STATE(933)] = 64399, + [SMALL_STATE(934)] = 64474, + [SMALL_STATE(935)] = 64553, + [SMALL_STATE(936)] = 64632, + [SMALL_STATE(937)] = 64711, + [SMALL_STATE(938)] = 64796, + [SMALL_STATE(939)] = 64871, + [SMALL_STATE(940)] = 64946, + [SMALL_STATE(941)] = 65021, + [SMALL_STATE(942)] = 65096, + [SMALL_STATE(943)] = 65171, + [SMALL_STATE(944)] = 65246, + [SMALL_STATE(945)] = 65321, + [SMALL_STATE(946)] = 65396, + [SMALL_STATE(947)] = 65471, + [SMALL_STATE(948)] = 65556, + [SMALL_STATE(949)] = 65631, + [SMALL_STATE(950)] = 65706, + [SMALL_STATE(951)] = 65781, + [SMALL_STATE(952)] = 65856, + [SMALL_STATE(953)] = 65935, + [SMALL_STATE(954)] = 66014, + [SMALL_STATE(955)] = 66093, + [SMALL_STATE(956)] = 66168, + [SMALL_STATE(957)] = 66243, + [SMALL_STATE(958)] = 66318, + [SMALL_STATE(959)] = 66393, + [SMALL_STATE(960)] = 66472, + [SMALL_STATE(961)] = 66524, + [SMALL_STATE(962)] = 66606, + [SMALL_STATE(963)] = 66658, + [SMALL_STATE(964)] = 66710, + [SMALL_STATE(965)] = 66794, + [SMALL_STATE(966)] = 66878, + [SMALL_STATE(967)] = 66929, + [SMALL_STATE(968)] = 66980, + [SMALL_STATE(969)] = 67037, + [SMALL_STATE(970)] = 67088, + [SMALL_STATE(971)] = 67139, + [SMALL_STATE(972)] = 67196, + [SMALL_STATE(973)] = 67247, + [SMALL_STATE(974)] = 67298, + [SMALL_STATE(975)] = 67355, + [SMALL_STATE(976)] = 67418, + [SMALL_STATE(977)] = 67489, + [SMALL_STATE(978)] = 67546, + [SMALL_STATE(979)] = 67597, + [SMALL_STATE(980)] = 67662, + [SMALL_STATE(981)] = 67731, + [SMALL_STATE(982)] = 67798, + [SMALL_STATE(983)] = 67881, + [SMALL_STATE(984)] = 67962, + [SMALL_STATE(985)] = 68023, + [SMALL_STATE(986)] = 68074, + [SMALL_STATE(987)] = 68125, + [SMALL_STATE(988)] = 68195, + [SMALL_STATE(989)] = 68245, + [SMALL_STATE(990)] = 68301, + [SMALL_STATE(991)] = 68357, + [SMALL_STATE(992)] = 68407, + [SMALL_STATE(993)] = 68455, + [SMALL_STATE(994)] = 68511, + [SMALL_STATE(995)] = 68567, + [SMALL_STATE(996)] = 68633, + [SMALL_STATE(997)] = 68689, + [SMALL_STATE(998)] = 68737, + [SMALL_STATE(999)] = 68787, + [SMALL_STATE(1000)] = 68835, + [SMALL_STATE(1001)] = 68891, + [SMALL_STATE(1002)] = 68937, + [SMALL_STATE(1003)] = 68993, + [SMALL_STATE(1004)] = 69055, + [SMALL_STATE(1005)] = 69125, + [SMALL_STATE(1006)] = 69181, + [SMALL_STATE(1007)] = 69241, + [SMALL_STATE(1008)] = 69287, + [SMALL_STATE(1009)] = 69343, + [SMALL_STATE(1010)] = 69405, + [SMALL_STATE(1011)] = 69475, + [SMALL_STATE(1012)] = 69537, + [SMALL_STATE(1013)] = 69597, + [SMALL_STATE(1014)] = 69647, + [SMALL_STATE(1015)] = 69715, + [SMALL_STATE(1016)] = 69779, + [SMALL_STATE(1017)] = 69845, + [SMALL_STATE(1018)] = 69909, + [SMALL_STATE(1019)] = 69955, + [SMALL_STATE(1020)] = 70001, + [SMALL_STATE(1021)] = 70047, + [SMALL_STATE(1022)] = 70107, + [SMALL_STATE(1023)] = 70187, + [SMALL_STATE(1024)] = 70243, + [SMALL_STATE(1025)] = 70293, + [SMALL_STATE(1026)] = 70339, + [SMALL_STATE(1027)] = 70385, + [SMALL_STATE(1028)] = 70431, + [SMALL_STATE(1029)] = 70481, + [SMALL_STATE(1030)] = 70561, + [SMALL_STATE(1031)] = 70641, + [SMALL_STATE(1032)] = 70709, + [SMALL_STATE(1033)] = 70775, + [SMALL_STATE(1034)] = 70843, + [SMALL_STATE(1035)] = 70907, + [SMALL_STATE(1036)] = 70953, + [SMALL_STATE(1037)] = 71005, + [SMALL_STATE(1038)] = 71057, + [SMALL_STATE(1039)] = 71113, + [SMALL_STATE(1040)] = 71169, + [SMALL_STATE(1041)] = 71218, + [SMALL_STATE(1042)] = 71285, + [SMALL_STATE(1043)] = 71332, + [SMALL_STATE(1044)] = 71397, + [SMALL_STATE(1045)] = 71442, + [SMALL_STATE(1046)] = 71487, + [SMALL_STATE(1047)] = 71536, + [SMALL_STATE(1048)] = 71585, + [SMALL_STATE(1049)] = 71634, + [SMALL_STATE(1050)] = 71697, + [SMALL_STATE(1051)] = 71744, + [SMALL_STATE(1052)] = 71795, + [SMALL_STATE(1053)] = 71840, + [SMALL_STATE(1054)] = 71889, + [SMALL_STATE(1055)] = 71940, + [SMALL_STATE(1056)] = 71985, + [SMALL_STATE(1057)] = 72034, + [SMALL_STATE(1058)] = 72083, + [SMALL_STATE(1059)] = 72152, + [SMALL_STATE(1060)] = 72201, + [SMALL_STATE(1061)] = 72256, + [SMALL_STATE(1062)] = 72311, + [SMALL_STATE(1063)] = 72366, + [SMALL_STATE(1064)] = 72411, + [SMALL_STATE(1065)] = 72470, + [SMALL_STATE(1066)] = 72515, + [SMALL_STATE(1067)] = 72560, + [SMALL_STATE(1068)] = 72605, + [SMALL_STATE(1069)] = 72656, + [SMALL_STATE(1070)] = 72701, + [SMALL_STATE(1071)] = 72748, + [SMALL_STATE(1072)] = 72795, + [SMALL_STATE(1073)] = 72844, + [SMALL_STATE(1074)] = 72907, + [SMALL_STATE(1075)] = 72956, + [SMALL_STATE(1076)] = 73001, + [SMALL_STATE(1077)] = 73054, + [SMALL_STATE(1078)] = 73103, + [SMALL_STATE(1079)] = 73148, + [SMALL_STATE(1080)] = 73197, + [SMALL_STATE(1081)] = 73242, + [SMALL_STATE(1082)] = 73289, + [SMALL_STATE(1083)] = 73334, + [SMALL_STATE(1084)] = 73379, + [SMALL_STATE(1085)] = 73424, + [SMALL_STATE(1086)] = 73479, + [SMALL_STATE(1087)] = 73524, + [SMALL_STATE(1088)] = 73573, + [SMALL_STATE(1089)] = 73638, + [SMALL_STATE(1090)] = 73689, + [SMALL_STATE(1091)] = 73740, + [SMALL_STATE(1092)] = 73795, + [SMALL_STATE(1093)] = 73840, + [SMALL_STATE(1094)] = 73885, + [SMALL_STATE(1095)] = 73940, + [SMALL_STATE(1096)] = 73989, + [SMALL_STATE(1097)] = 74036, + [SMALL_STATE(1098)] = 74081, + [SMALL_STATE(1099)] = 74126, + [SMALL_STATE(1100)] = 74171, + [SMALL_STATE(1101)] = 74216, + [SMALL_STATE(1102)] = 74271, + [SMALL_STATE(1103)] = 74316, + [SMALL_STATE(1104)] = 74361, + [SMALL_STATE(1105)] = 74422, + [SMALL_STATE(1106)] = 74467, + [SMALL_STATE(1107)] = 74512, + [SMALL_STATE(1108)] = 74557, + [SMALL_STATE(1109)] = 74602, + [SMALL_STATE(1110)] = 74663, + [SMALL_STATE(1111)] = 74732, + [SMALL_STATE(1112)] = 74787, + [SMALL_STATE(1113)] = 74838, + [SMALL_STATE(1114)] = 74883, + [SMALL_STATE(1115)] = 74928, + [SMALL_STATE(1116)] = 74977, + [SMALL_STATE(1117)] = 75022, + [SMALL_STATE(1118)] = 75089, + [SMALL_STATE(1119)] = 75134, + [SMALL_STATE(1120)] = 75181, + [SMALL_STATE(1121)] = 75228, + [SMALL_STATE(1122)] = 75273, + [SMALL_STATE(1123)] = 75320, + [SMALL_STATE(1124)] = 75371, + [SMALL_STATE(1125)] = 75416, + [SMALL_STATE(1126)] = 75461, + [SMALL_STATE(1127)] = 75506, + [SMALL_STATE(1128)] = 75565, + [SMALL_STATE(1129)] = 75610, + [SMALL_STATE(1130)] = 75655, + [SMALL_STATE(1131)] = 75700, + [SMALL_STATE(1132)] = 75758, + [SMALL_STATE(1133)] = 75802, + [SMALL_STATE(1134)] = 75850, + [SMALL_STATE(1135)] = 75898, + [SMALL_STATE(1136)] = 75942, + [SMALL_STATE(1137)] = 75986, + [SMALL_STATE(1138)] = 76034, + [SMALL_STATE(1139)] = 76078, + [SMALL_STATE(1140)] = 76126, + [SMALL_STATE(1141)] = 76170, + [SMALL_STATE(1142)] = 76216, + [SMALL_STATE(1143)] = 76260, + [SMALL_STATE(1144)] = 76304, + [SMALL_STATE(1145)] = 76352, + [SMALL_STATE(1146)] = 76396, + [SMALL_STATE(1147)] = 76440, + [SMALL_STATE(1148)] = 76484, + [SMALL_STATE(1149)] = 76528, + [SMALL_STATE(1150)] = 76572, + [SMALL_STATE(1151)] = 76618, + [SMALL_STATE(1152)] = 76662, + [SMALL_STATE(1153)] = 76708, + [SMALL_STATE(1154)] = 76752, + [SMALL_STATE(1155)] = 76798, + [SMALL_STATE(1156)] = 76844, + [SMALL_STATE(1157)] = 76888, + [SMALL_STATE(1158)] = 76932, + [SMALL_STATE(1159)] = 76976, + [SMALL_STATE(1160)] = 77020, + [SMALL_STATE(1161)] = 77064, + [SMALL_STATE(1162)] = 77108, + [SMALL_STATE(1163)] = 77152, + [SMALL_STATE(1164)] = 77200, + [SMALL_STATE(1165)] = 77250, + [SMALL_STATE(1166)] = 77298, + [SMALL_STATE(1167)] = 77346, + [SMALL_STATE(1168)] = 77390, + [SMALL_STATE(1169)] = 77440, + [SMALL_STATE(1170)] = 77484, + [SMALL_STATE(1171)] = 77532, + [SMALL_STATE(1172)] = 77576, + [SMALL_STATE(1173)] = 77624, + [SMALL_STATE(1174)] = 77672, + [SMALL_STATE(1175)] = 77718, + [SMALL_STATE(1176)] = 77762, + [SMALL_STATE(1177)] = 77806, + [SMALL_STATE(1178)] = 77850, + [SMALL_STATE(1179)] = 77894, + [SMALL_STATE(1180)] = 77938, + [SMALL_STATE(1181)] = 77982, + [SMALL_STATE(1182)] = 78026, + [SMALL_STATE(1183)] = 78070, + [SMALL_STATE(1184)] = 78114, + [SMALL_STATE(1185)] = 78158, + [SMALL_STATE(1186)] = 78202, + [SMALL_STATE(1187)] = 78246, + [SMALL_STATE(1188)] = 78290, + [SMALL_STATE(1189)] = 78334, + [SMALL_STATE(1190)] = 78378, + [SMALL_STATE(1191)] = 78422, + [SMALL_STATE(1192)] = 78466, + [SMALL_STATE(1193)] = 78510, + [SMALL_STATE(1194)] = 78554, + [SMALL_STATE(1195)] = 78598, + [SMALL_STATE(1196)] = 78644, + [SMALL_STATE(1197)] = 78690, + [SMALL_STATE(1198)] = 78734, + [SMALL_STATE(1199)] = 78782, + [SMALL_STATE(1200)] = 78826, + [SMALL_STATE(1201)] = 78870, + [SMALL_STATE(1202)] = 78916, + [SMALL_STATE(1203)] = 78970, + [SMALL_STATE(1204)] = 79018, + [SMALL_STATE(1205)] = 79072, + [SMALL_STATE(1206)] = 79116, + [SMALL_STATE(1207)] = 79160, + [SMALL_STATE(1208)] = 79208, + [SMALL_STATE(1209)] = 79252, + [SMALL_STATE(1210)] = 79296, + [SMALL_STATE(1211)] = 79340, + [SMALL_STATE(1212)] = 79384, + [SMALL_STATE(1213)] = 79428, + [SMALL_STATE(1214)] = 79472, + [SMALL_STATE(1215)] = 79516, + [SMALL_STATE(1216)] = 79560, + [SMALL_STATE(1217)] = 79604, + [SMALL_STATE(1218)] = 79658, + [SMALL_STATE(1219)] = 79718, + [SMALL_STATE(1220)] = 79786, + [SMALL_STATE(1221)] = 79840, + [SMALL_STATE(1222)] = 79898, + [SMALL_STATE(1223)] = 79964, + [SMALL_STATE(1224)] = 80028, + [SMALL_STATE(1225)] = 80090, + [SMALL_STATE(1226)] = 80134, + [SMALL_STATE(1227)] = 80178, + [SMALL_STATE(1228)] = 80222, + [SMALL_STATE(1229)] = 80266, + [SMALL_STATE(1230)] = 80310, + [SMALL_STATE(1231)] = 80354, + [SMALL_STATE(1232)] = 80398, + [SMALL_STATE(1233)] = 80442, + [SMALL_STATE(1234)] = 80486, + [SMALL_STATE(1235)] = 80530, + [SMALL_STATE(1236)] = 80574, + [SMALL_STATE(1237)] = 80622, + [SMALL_STATE(1238)] = 80670, + [SMALL_STATE(1239)] = 80714, + [SMALL_STATE(1240)] = 80758, + [SMALL_STATE(1241)] = 80806, + [SMALL_STATE(1242)] = 80850, + [SMALL_STATE(1243)] = 80904, + [SMALL_STATE(1244)] = 80948, + [SMALL_STATE(1245)] = 80996, + [SMALL_STATE(1246)] = 81044, + [SMALL_STATE(1247)] = 81088, + [SMALL_STATE(1248)] = 81134, + [SMALL_STATE(1249)] = 81188, + [SMALL_STATE(1250)] = 81234, + [SMALL_STATE(1251)] = 81280, + [SMALL_STATE(1252)] = 81324, + [SMALL_STATE(1253)] = 81368, + [SMALL_STATE(1254)] = 81412, + [SMALL_STATE(1255)] = 81456, + [SMALL_STATE(1256)] = 81500, + [SMALL_STATE(1257)] = 81544, + [SMALL_STATE(1258)] = 81588, + [SMALL_STATE(1259)] = 81632, + [SMALL_STATE(1260)] = 81676, + [SMALL_STATE(1261)] = 81720, + [SMALL_STATE(1262)] = 81764, + [SMALL_STATE(1263)] = 81808, + [SMALL_STATE(1264)] = 81852, + [SMALL_STATE(1265)] = 81896, + [SMALL_STATE(1266)] = 81940, + [SMALL_STATE(1267)] = 81984, + [SMALL_STATE(1268)] = 82028, + [SMALL_STATE(1269)] = 82072, + [SMALL_STATE(1270)] = 82126, + [SMALL_STATE(1271)] = 82186, + [SMALL_STATE(1272)] = 82254, + [SMALL_STATE(1273)] = 82308, + [SMALL_STATE(1274)] = 82352, + [SMALL_STATE(1275)] = 82418, + [SMALL_STATE(1276)] = 82482, + [SMALL_STATE(1277)] = 82544, + [SMALL_STATE(1278)] = 82588, + [SMALL_STATE(1279)] = 82632, + [SMALL_STATE(1280)] = 82676, + [SMALL_STATE(1281)] = 82719, + [SMALL_STATE(1282)] = 82766, + [SMALL_STATE(1283)] = 82813, + [SMALL_STATE(1284)] = 82856, + [SMALL_STATE(1285)] = 82899, + [SMALL_STATE(1286)] = 82942, + [SMALL_STATE(1287)] = 82985, + [SMALL_STATE(1288)] = 83028, + [SMALL_STATE(1289)] = 83071, + [SMALL_STATE(1290)] = 83116, + [SMALL_STATE(1291)] = 83159, + [SMALL_STATE(1292)] = 83204, + [SMALL_STATE(1293)] = 83247, + [SMALL_STATE(1294)] = 83290, + [SMALL_STATE(1295)] = 83333, + [SMALL_STATE(1296)] = 83380, + [SMALL_STATE(1297)] = 83423, + [SMALL_STATE(1298)] = 83468, + [SMALL_STATE(1299)] = 83513, + [SMALL_STATE(1300)] = 83558, + [SMALL_STATE(1301)] = 83601, + [SMALL_STATE(1302)] = 83644, + [SMALL_STATE(1303)] = 83687, + [SMALL_STATE(1304)] = 83732, + [SMALL_STATE(1305)] = 83779, + [SMALL_STATE(1306)] = 83822, + [SMALL_STATE(1307)] = 83865, + [SMALL_STATE(1308)] = 83916, + [SMALL_STATE(1309)] = 83959, + [SMALL_STATE(1310)] = 84002, + [SMALL_STATE(1311)] = 84045, + [SMALL_STATE(1312)] = 84088, + [SMALL_STATE(1313)] = 84131, + [SMALL_STATE(1314)] = 84174, + [SMALL_STATE(1315)] = 84217, + [SMALL_STATE(1316)] = 84260, + [SMALL_STATE(1317)] = 84303, + [SMALL_STATE(1318)] = 84346, + [SMALL_STATE(1319)] = 84389, + [SMALL_STATE(1320)] = 84436, + [SMALL_STATE(1321)] = 84479, + [SMALL_STATE(1322)] = 84522, + [SMALL_STATE(1323)] = 84569, + [SMALL_STATE(1324)] = 84612, + [SMALL_STATE(1325)] = 84655, + [SMALL_STATE(1326)] = 84700, + [SMALL_STATE(1327)] = 84743, + [SMALL_STATE(1328)] = 84786, + [SMALL_STATE(1329)] = 84829, + [SMALL_STATE(1330)] = 84878, + [SMALL_STATE(1331)] = 84923, + [SMALL_STATE(1332)] = 84968, + [SMALL_STATE(1333)] = 85011, + [SMALL_STATE(1334)] = 85060, + [SMALL_STATE(1335)] = 85103, + [SMALL_STATE(1336)] = 85146, + [SMALL_STATE(1337)] = 85189, + [SMALL_STATE(1338)] = 85232, + [SMALL_STATE(1339)] = 85277, + [SMALL_STATE(1340)] = 85320, + [SMALL_STATE(1341)] = 85363, + [SMALL_STATE(1342)] = 85406, + [SMALL_STATE(1343)] = 85449, + [SMALL_STATE(1344)] = 85492, + [SMALL_STATE(1345)] = 85535, + [SMALL_STATE(1346)] = 85578, + [SMALL_STATE(1347)] = 85623, + [SMALL_STATE(1348)] = 85668, + [SMALL_STATE(1349)] = 85713, + [SMALL_STATE(1350)] = 85756, + [SMALL_STATE(1351)] = 85803, + [SMALL_STATE(1352)] = 85850, + [SMALL_STATE(1353)] = 85895, + [SMALL_STATE(1354)] = 85940, + [SMALL_STATE(1355)] = 85985, + [SMALL_STATE(1356)] = 86028, + [SMALL_STATE(1357)] = 86071, + [SMALL_STATE(1358)] = 86114, + [SMALL_STATE(1359)] = 86157, + [SMALL_STATE(1360)] = 86200, + [SMALL_STATE(1361)] = 86245, + [SMALL_STATE(1362)] = 86290, + [SMALL_STATE(1363)] = 86333, + [SMALL_STATE(1364)] = 86376, + [SMALL_STATE(1365)] = 86419, + [SMALL_STATE(1366)] = 86462, + [SMALL_STATE(1367)] = 86507, + [SMALL_STATE(1368)] = 86550, + [SMALL_STATE(1369)] = 86593, + [SMALL_STATE(1370)] = 86636, + [SMALL_STATE(1371)] = 86679, + [SMALL_STATE(1372)] = 86722, + [SMALL_STATE(1373)] = 86765, + [SMALL_STATE(1374)] = 86808, + [SMALL_STATE(1375)] = 86851, + [SMALL_STATE(1376)] = 86894, + [SMALL_STATE(1377)] = 86937, + [SMALL_STATE(1378)] = 86982, + [SMALL_STATE(1379)] = 87025, + [SMALL_STATE(1380)] = 87070, + [SMALL_STATE(1381)] = 87113, + [SMALL_STATE(1382)] = 87160, + [SMALL_STATE(1383)] = 87203, + [SMALL_STATE(1384)] = 87245, + [SMALL_STATE(1385)] = 87287, + [SMALL_STATE(1386)] = 87329, + [SMALL_STATE(1387)] = 87375, + [SMALL_STATE(1388)] = 87421, + [SMALL_STATE(1389)] = 87463, + [SMALL_STATE(1390)] = 87505, + [SMALL_STATE(1391)] = 87549, + [SMALL_STATE(1392)] = 87591, + [SMALL_STATE(1393)] = 87635, + [SMALL_STATE(1394)] = 87677, + [SMALL_STATE(1395)] = 87719, + [SMALL_STATE(1396)] = 87761, + [SMALL_STATE(1397)] = 87803, + [SMALL_STATE(1398)] = 87845, + [SMALL_STATE(1399)] = 87887, + [SMALL_STATE(1400)] = 87929, + [SMALL_STATE(1401)] = 87971, + [SMALL_STATE(1402)] = 88015, + [SMALL_STATE(1403)] = 88057, + [SMALL_STATE(1404)] = 88099, + [SMALL_STATE(1405)] = 88141, + [SMALL_STATE(1406)] = 88185, + [SMALL_STATE(1407)] = 88229, + [SMALL_STATE(1408)] = 88271, + [SMALL_STATE(1409)] = 88313, + [SMALL_STATE(1410)] = 88355, + [SMALL_STATE(1411)] = 88401, + [SMALL_STATE(1412)] = 88443, + [SMALL_STATE(1413)] = 88485, + [SMALL_STATE(1414)] = 88527, + [SMALL_STATE(1415)] = 88569, + [SMALL_STATE(1416)] = 88611, + [SMALL_STATE(1417)] = 88657, + [SMALL_STATE(1418)] = 88699, + [SMALL_STATE(1419)] = 88741, + [SMALL_STATE(1420)] = 88789, + [SMALL_STATE(1421)] = 88831, + [SMALL_STATE(1422)] = 88875, + [SMALL_STATE(1423)] = 88919, + [SMALL_STATE(1424)] = 88963, + [SMALL_STATE(1425)] = 89007, + [SMALL_STATE(1426)] = 89053, + [SMALL_STATE(1427)] = 89095, + [SMALL_STATE(1428)] = 89137, + [SMALL_STATE(1429)] = 89179, + [SMALL_STATE(1430)] = 89221, + [SMALL_STATE(1431)] = 89263, + [SMALL_STATE(1432)] = 89309, + [SMALL_STATE(1433)] = 89351, + [SMALL_STATE(1434)] = 89393, + [SMALL_STATE(1435)] = 89435, + [SMALL_STATE(1436)] = 89477, + [SMALL_STATE(1437)] = 89519, + [SMALL_STATE(1438)] = 89561, + [SMALL_STATE(1439)] = 89603, + [SMALL_STATE(1440)] = 89645, + [SMALL_STATE(1441)] = 89687, + [SMALL_STATE(1442)] = 89729, + [SMALL_STATE(1443)] = 89771, + [SMALL_STATE(1444)] = 89813, + [SMALL_STATE(1445)] = 89855, + [SMALL_STATE(1446)] = 89897, + [SMALL_STATE(1447)] = 89939, + [SMALL_STATE(1448)] = 89981, + [SMALL_STATE(1449)] = 90023, + [SMALL_STATE(1450)] = 90065, + [SMALL_STATE(1451)] = 90107, + [SMALL_STATE(1452)] = 90149, + [SMALL_STATE(1453)] = 90191, + [SMALL_STATE(1454)] = 90233, + [SMALL_STATE(1455)] = 90275, + [SMALL_STATE(1456)] = 90317, + [SMALL_STATE(1457)] = 90359, + [SMALL_STATE(1458)] = 90401, + [SMALL_STATE(1459)] = 90443, + [SMALL_STATE(1460)] = 90485, + [SMALL_STATE(1461)] = 90527, + [SMALL_STATE(1462)] = 90569, + [SMALL_STATE(1463)] = 90611, + [SMALL_STATE(1464)] = 90653, + [SMALL_STATE(1465)] = 90695, + [SMALL_STATE(1466)] = 90738, + [SMALL_STATE(1467)] = 90781, + [SMALL_STATE(1468)] = 90822, + [SMALL_STATE(1469)] = 90865, + [SMALL_STATE(1470)] = 90908, + [SMALL_STATE(1471)] = 90949, + [SMALL_STATE(1472)] = 90992, + [SMALL_STATE(1473)] = 91033, + [SMALL_STATE(1474)] = 91076, + [SMALL_STATE(1475)] = 91117, + [SMALL_STATE(1476)] = 91160, + [SMALL_STATE(1477)] = 91201, + [SMALL_STATE(1478)] = 91242, + [SMALL_STATE(1479)] = 91285, + [SMALL_STATE(1480)] = 91326, + [SMALL_STATE(1481)] = 91367, + [SMALL_STATE(1482)] = 91416, + [SMALL_STATE(1483)] = 91457, + [SMALL_STATE(1484)] = 91498, + [SMALL_STATE(1485)] = 91541, + [SMALL_STATE(1486)] = 91617, + [SMALL_STATE(1487)] = 91693, + [SMALL_STATE(1488)] = 91763, + [SMALL_STATE(1489)] = 91833, + [SMALL_STATE(1490)] = 91903, + [SMALL_STATE(1491)] = 91973, + [SMALL_STATE(1492)] = 92043, + [SMALL_STATE(1493)] = 92113, + [SMALL_STATE(1494)] = 92183, + [SMALL_STATE(1495)] = 92253, + [SMALL_STATE(1496)] = 92323, + [SMALL_STATE(1497)] = 92393, + [SMALL_STATE(1498)] = 92463, + [SMALL_STATE(1499)] = 92533, + [SMALL_STATE(1500)] = 92603, + [SMALL_STATE(1501)] = 92673, + [SMALL_STATE(1502)] = 92743, + [SMALL_STATE(1503)] = 92813, + [SMALL_STATE(1504)] = 92883, + [SMALL_STATE(1505)] = 92953, + [SMALL_STATE(1506)] = 93023, + [SMALL_STATE(1507)] = 93093, + [SMALL_STATE(1508)] = 93163, + [SMALL_STATE(1509)] = 93233, + [SMALL_STATE(1510)] = 93303, + [SMALL_STATE(1511)] = 93373, + [SMALL_STATE(1512)] = 93443, + [SMALL_STATE(1513)] = 93513, + [SMALL_STATE(1514)] = 93583, + [SMALL_STATE(1515)] = 93653, + [SMALL_STATE(1516)] = 93723, + [SMALL_STATE(1517)] = 93793, + [SMALL_STATE(1518)] = 93863, + [SMALL_STATE(1519)] = 93933, + [SMALL_STATE(1520)] = 94003, + [SMALL_STATE(1521)] = 94073, + [SMALL_STATE(1522)] = 94143, + [SMALL_STATE(1523)] = 94213, + [SMALL_STATE(1524)] = 94280, + [SMALL_STATE(1525)] = 94347, + [SMALL_STATE(1526)] = 94414, + [SMALL_STATE(1527)] = 94481, + [SMALL_STATE(1528)] = 94548, + [SMALL_STATE(1529)] = 94614, + [SMALL_STATE(1530)] = 94680, + [SMALL_STATE(1531)] = 94746, + [SMALL_STATE(1532)] = 94812, + [SMALL_STATE(1533)] = 94878, + [SMALL_STATE(1534)] = 94944, + [SMALL_STATE(1535)] = 95010, + [SMALL_STATE(1536)] = 95076, + [SMALL_STATE(1537)] = 95142, + [SMALL_STATE(1538)] = 95208, + [SMALL_STATE(1539)] = 95274, + [SMALL_STATE(1540)] = 95340, + [SMALL_STATE(1541)] = 95406, + [SMALL_STATE(1542)] = 95472, + [SMALL_STATE(1543)] = 95538, + [SMALL_STATE(1544)] = 95604, + [SMALL_STATE(1545)] = 95670, + [SMALL_STATE(1546)] = 95736, + [SMALL_STATE(1547)] = 95802, + [SMALL_STATE(1548)] = 95868, + [SMALL_STATE(1549)] = 95931, + [SMALL_STATE(1550)] = 95989, + [SMALL_STATE(1551)] = 96035, + [SMALL_STATE(1552)] = 96093, + [SMALL_STATE(1553)] = 96151, + [SMALL_STATE(1554)] = 96209, + [SMALL_STATE(1555)] = 96267, + [SMALL_STATE(1556)] = 96325, + [SMALL_STATE(1557)] = 96371, + [SMALL_STATE(1558)] = 96429, + [SMALL_STATE(1559)] = 96487, + [SMALL_STATE(1560)] = 96532, + [SMALL_STATE(1561)] = 96577, + [SMALL_STATE(1562)] = 96621, + [SMALL_STATE(1563)] = 96665, + [SMALL_STATE(1564)] = 96708, + [SMALL_STATE(1565)] = 96751, + [SMALL_STATE(1566)] = 96794, + [SMALL_STATE(1567)] = 96835, + [SMALL_STATE(1568)] = 96878, + [SMALL_STATE(1569)] = 96919, + [SMALL_STATE(1570)] = 96951, + [SMALL_STATE(1571)] = 96993, + [SMALL_STATE(1572)] = 97025, + [SMALL_STATE(1573)] = 97067, + [SMALL_STATE(1574)] = 97097, + [SMALL_STATE(1575)] = 97129, + [SMALL_STATE(1576)] = 97159, + [SMALL_STATE(1577)] = 97191, + [SMALL_STATE(1578)] = 97223, + [SMALL_STATE(1579)] = 97255, + [SMALL_STATE(1580)] = 97296, + [SMALL_STATE(1581)] = 97337, + [SMALL_STATE(1582)] = 97367, + [SMALL_STATE(1583)] = 97397, + [SMALL_STATE(1584)] = 97444, + [SMALL_STATE(1585)] = 97473, + [SMALL_STATE(1586)] = 97502, + [SMALL_STATE(1587)] = 97531, + [SMALL_STATE(1588)] = 97560, + [SMALL_STATE(1589)] = 97589, + [SMALL_STATE(1590)] = 97618, + [SMALL_STATE(1591)] = 97647, + [SMALL_STATE(1592)] = 97672, + [SMALL_STATE(1593)] = 97697, + [SMALL_STATE(1594)] = 97722, + [SMALL_STATE(1595)] = 97751, + [SMALL_STATE(1596)] = 97780, + [SMALL_STATE(1597)] = 97805, + [SMALL_STATE(1598)] = 97834, + [SMALL_STATE(1599)] = 97863, + [SMALL_STATE(1600)] = 97910, + [SMALL_STATE(1601)] = 97939, + [SMALL_STATE(1602)] = 97968, + [SMALL_STATE(1603)] = 97997, + [SMALL_STATE(1604)] = 98044, + [SMALL_STATE(1605)] = 98073, + [SMALL_STATE(1606)] = 98102, + [SMALL_STATE(1607)] = 98149, + [SMALL_STATE(1608)] = 98196, + [SMALL_STATE(1609)] = 98243, + [SMALL_STATE(1610)] = 98272, + [SMALL_STATE(1611)] = 98319, + [SMALL_STATE(1612)] = 98366, + [SMALL_STATE(1613)] = 98413, + [SMALL_STATE(1614)] = 98460, + [SMALL_STATE(1615)] = 98489, + [SMALL_STATE(1616)] = 98517, + [SMALL_STATE(1617)] = 98549, + [SMALL_STATE(1618)] = 98579, + [SMALL_STATE(1619)] = 98603, + [SMALL_STATE(1620)] = 98627, + [SMALL_STATE(1621)] = 98659, + [SMALL_STATE(1622)] = 98683, + [SMALL_STATE(1623)] = 98707, + [SMALL_STATE(1624)] = 98735, + [SMALL_STATE(1625)] = 98761, + [SMALL_STATE(1626)] = 98800, + [SMALL_STATE(1627)] = 98827, + [SMALL_STATE(1628)] = 98852, + [SMALL_STATE(1629)] = 98879, + [SMALL_STATE(1630)] = 98906, + [SMALL_STATE(1631)] = 98929, + [SMALL_STATE(1632)] = 98948, + [SMALL_STATE(1633)] = 98967, + [SMALL_STATE(1634)] = 99008, + [SMALL_STATE(1635)] = 99049, + [SMALL_STATE(1636)] = 99090, + [SMALL_STATE(1637)] = 99111, + [SMALL_STATE(1638)] = 99152, + [SMALL_STATE(1639)] = 99193, + [SMALL_STATE(1640)] = 99234, + [SMALL_STATE(1641)] = 99253, + [SMALL_STATE(1642)] = 99294, + [SMALL_STATE(1643)] = 99335, + [SMALL_STATE(1644)] = 99365, + [SMALL_STATE(1645)] = 99391, + [SMALL_STATE(1646)] = 99429, + [SMALL_STATE(1647)] = 99459, + [SMALL_STATE(1648)] = 99489, + [SMALL_STATE(1649)] = 99527, + [SMALL_STATE(1650)] = 99565, + [SMALL_STATE(1651)] = 99595, + [SMALL_STATE(1652)] = 99625, + [SMALL_STATE(1653)] = 99655, + [SMALL_STATE(1654)] = 99693, + [SMALL_STATE(1655)] = 99731, + [SMALL_STATE(1656)] = 99761, + [SMALL_STATE(1657)] = 99791, + [SMALL_STATE(1658)] = 99829, + [SMALL_STATE(1659)] = 99867, + [SMALL_STATE(1660)] = 99905, + [SMALL_STATE(1661)] = 99925, + [SMALL_STATE(1662)] = 99955, + [SMALL_STATE(1663)] = 99993, + [SMALL_STATE(1664)] = 100031, + [SMALL_STATE(1665)] = 100061, + [SMALL_STATE(1666)] = 100099, + [SMALL_STATE(1667)] = 100129, + [SMALL_STATE(1668)] = 100167, + [SMALL_STATE(1669)] = 100205, + [SMALL_STATE(1670)] = 100243, + [SMALL_STATE(1671)] = 100263, + [SMALL_STATE(1672)] = 100293, + [SMALL_STATE(1673)] = 100323, + [SMALL_STATE(1674)] = 100355, + [SMALL_STATE(1675)] = 100393, + [SMALL_STATE(1676)] = 100423, + [SMALL_STATE(1677)] = 100461, + [SMALL_STATE(1678)] = 100499, + [SMALL_STATE(1679)] = 100525, + [SMALL_STATE(1680)] = 100563, + [SMALL_STATE(1681)] = 100601, + [SMALL_STATE(1682)] = 100639, + [SMALL_STATE(1683)] = 100669, + [SMALL_STATE(1684)] = 100707, + [SMALL_STATE(1685)] = 100745, + [SMALL_STATE(1686)] = 100775, + [SMALL_STATE(1687)] = 100813, + [SMALL_STATE(1688)] = 100843, + [SMALL_STATE(1689)] = 100869, + [SMALL_STATE(1690)] = 100907, + [SMALL_STATE(1691)] = 100945, + [SMALL_STATE(1692)] = 100969, + [SMALL_STATE(1693)] = 100999, + [SMALL_STATE(1694)] = 101023, + [SMALL_STATE(1695)] = 101043, + [SMALL_STATE(1696)] = 101065, + [SMALL_STATE(1697)] = 101095, + [SMALL_STATE(1698)] = 101126, + [SMALL_STATE(1699)] = 101157, + [SMALL_STATE(1700)] = 101182, + [SMALL_STATE(1701)] = 101213, + [SMALL_STATE(1702)] = 101244, + [SMALL_STATE(1703)] = 101267, + [SMALL_STATE(1704)] = 101288, + [SMALL_STATE(1705)] = 101305, + [SMALL_STATE(1706)] = 101324, + [SMALL_STATE(1707)] = 101349, + [SMALL_STATE(1708)] = 101380, + [SMALL_STATE(1709)] = 101405, + [SMALL_STATE(1710)] = 101430, + [SMALL_STATE(1711)] = 101461, + [SMALL_STATE(1712)] = 101492, + [SMALL_STATE(1713)] = 101523, + [SMALL_STATE(1714)] = 101554, + [SMALL_STATE(1715)] = 101571, + [SMALL_STATE(1716)] = 101602, + [SMALL_STATE(1717)] = 101631, + [SMALL_STATE(1718)] = 101660, + [SMALL_STATE(1719)] = 101691, + [SMALL_STATE(1720)] = 101722, + [SMALL_STATE(1721)] = 101753, + [SMALL_STATE(1722)] = 101770, + [SMALL_STATE(1723)] = 101801, + [SMALL_STATE(1724)] = 101832, + [SMALL_STATE(1725)] = 101852, + [SMALL_STATE(1726)] = 101872, + [SMALL_STATE(1727)] = 101888, + [SMALL_STATE(1728)] = 101906, + [SMALL_STATE(1729)] = 101930, + [SMALL_STATE(1730)] = 101952, + [SMALL_STATE(1731)] = 101976, + [SMALL_STATE(1732)] = 102000, + [SMALL_STATE(1733)] = 102016, + [SMALL_STATE(1734)] = 102032, + [SMALL_STATE(1735)] = 102056, + [SMALL_STATE(1736)] = 102084, + [SMALL_STATE(1737)] = 102112, + [SMALL_STATE(1738)] = 102136, + [SMALL_STATE(1739)] = 102164, + [SMALL_STATE(1740)] = 102192, + [SMALL_STATE(1741)] = 102212, + [SMALL_STATE(1742)] = 102230, + [SMALL_STATE(1743)] = 102254, + [SMALL_STATE(1744)] = 102278, + [SMALL_STATE(1745)] = 102296, + [SMALL_STATE(1746)] = 102320, + [SMALL_STATE(1747)] = 102338, + [SMALL_STATE(1748)] = 102362, + [SMALL_STATE(1749)] = 102386, + [SMALL_STATE(1750)] = 102414, + [SMALL_STATE(1751)] = 102438, + [SMALL_STATE(1752)] = 102466, + [SMALL_STATE(1753)] = 102486, + [SMALL_STATE(1754)] = 102508, + [SMALL_STATE(1755)] = 102524, + [SMALL_STATE(1756)] = 102540, + [SMALL_STATE(1757)] = 102564, + [SMALL_STATE(1758)] = 102592, + [SMALL_STATE(1759)] = 102610, + [SMALL_STATE(1760)] = 102638, + [SMALL_STATE(1761)] = 102658, + [SMALL_STATE(1762)] = 102688, + [SMALL_STATE(1763)] = 102704, + [SMALL_STATE(1764)] = 102726, + [SMALL_STATE(1765)] = 102748, + [SMALL_STATE(1766)] = 102768, + [SMALL_STATE(1767)] = 102790, + [SMALL_STATE(1768)] = 102813, + [SMALL_STATE(1769)] = 102828, + [SMALL_STATE(1770)] = 102845, + [SMALL_STATE(1771)] = 102872, + [SMALL_STATE(1772)] = 102895, + [SMALL_STATE(1773)] = 102920, + [SMALL_STATE(1774)] = 102949, + [SMALL_STATE(1775)] = 102970, + [SMALL_STATE(1776)] = 102989, + [SMALL_STATE(1777)] = 103012, + [SMALL_STATE(1778)] = 103035, + [SMALL_STATE(1779)] = 103064, + [SMALL_STATE(1780)] = 103085, + [SMALL_STATE(1781)] = 103114, + [SMALL_STATE(1782)] = 103135, + [SMALL_STATE(1783)] = 103164, + [SMALL_STATE(1784)] = 103183, + [SMALL_STATE(1785)] = 103208, + [SMALL_STATE(1786)] = 103229, + [SMALL_STATE(1787)] = 103250, + [SMALL_STATE(1788)] = 103277, + [SMALL_STATE(1789)] = 103298, + [SMALL_STATE(1790)] = 103323, + [SMALL_STATE(1791)] = 103352, + [SMALL_STATE(1792)] = 103377, + [SMALL_STATE(1793)] = 103406, + [SMALL_STATE(1794)] = 103423, + [SMALL_STATE(1795)] = 103450, + [SMALL_STATE(1796)] = 103471, + [SMALL_STATE(1797)] = 103498, + [SMALL_STATE(1798)] = 103525, + [SMALL_STATE(1799)] = 103552, + [SMALL_STATE(1800)] = 103575, + [SMALL_STATE(1801)] = 103596, + [SMALL_STATE(1802)] = 103621, + [SMALL_STATE(1803)] = 103646, + [SMALL_STATE(1804)] = 103669, + [SMALL_STATE(1805)] = 103698, + [SMALL_STATE(1806)] = 103721, + [SMALL_STATE(1807)] = 103744, + [SMALL_STATE(1808)] = 103769, + [SMALL_STATE(1809)] = 103790, + [SMALL_STATE(1810)] = 103811, + [SMALL_STATE(1811)] = 103838, + [SMALL_STATE(1812)] = 103859, + [SMALL_STATE(1813)] = 103884, + [SMALL_STATE(1814)] = 103905, + [SMALL_STATE(1815)] = 103934, + [SMALL_STATE(1816)] = 103961, + [SMALL_STATE(1817)] = 103982, + [SMALL_STATE(1818)] = 104011, + [SMALL_STATE(1819)] = 104040, + [SMALL_STATE(1820)] = 104061, + [SMALL_STATE(1821)] = 104078, + [SMALL_STATE(1822)] = 104100, + [SMALL_STATE(1823)] = 104114, + [SMALL_STATE(1824)] = 104136, + [SMALL_STATE(1825)] = 104158, + [SMALL_STATE(1826)] = 104180, + [SMALL_STATE(1827)] = 104200, + [SMALL_STATE(1828)] = 104218, + [SMALL_STATE(1829)] = 104232, + [SMALL_STATE(1830)] = 104248, + [SMALL_STATE(1831)] = 104268, + [SMALL_STATE(1832)] = 104290, + [SMALL_STATE(1833)] = 104312, + [SMALL_STATE(1834)] = 104334, + [SMALL_STATE(1835)] = 104358, + [SMALL_STATE(1836)] = 104382, + [SMALL_STATE(1837)] = 104400, + [SMALL_STATE(1838)] = 104418, + [SMALL_STATE(1839)] = 104442, + [SMALL_STATE(1840)] = 104466, + [SMALL_STATE(1841)] = 104484, + [SMALL_STATE(1842)] = 104510, + [SMALL_STATE(1843)] = 104526, + [SMALL_STATE(1844)] = 104552, + [SMALL_STATE(1845)] = 104570, + [SMALL_STATE(1846)] = 104588, + [SMALL_STATE(1847)] = 104614, + [SMALL_STATE(1848)] = 104640, + [SMALL_STATE(1849)] = 104664, + [SMALL_STATE(1850)] = 104682, + [SMALL_STATE(1851)] = 104698, + [SMALL_STATE(1852)] = 104720, + [SMALL_STATE(1853)] = 104746, + [SMALL_STATE(1854)] = 104772, + [SMALL_STATE(1855)] = 104790, + [SMALL_STATE(1856)] = 104812, + [SMALL_STATE(1857)] = 104838, + [SMALL_STATE(1858)] = 104862, + [SMALL_STATE(1859)] = 104884, + [SMALL_STATE(1860)] = 104904, + [SMALL_STATE(1861)] = 104926, + [SMALL_STATE(1862)] = 104952, + [SMALL_STATE(1863)] = 104970, + [SMALL_STATE(1864)] = 104996, + [SMALL_STATE(1865)] = 105022, + [SMALL_STATE(1866)] = 105048, + [SMALL_STATE(1867)] = 105066, + [SMALL_STATE(1868)] = 105090, + [SMALL_STATE(1869)] = 105108, + [SMALL_STATE(1870)] = 105134, + [SMALL_STATE(1871)] = 105160, + [SMALL_STATE(1872)] = 105186, + [SMALL_STATE(1873)] = 105206, + [SMALL_STATE(1874)] = 105228, + [SMALL_STATE(1875)] = 105254, + [SMALL_STATE(1876)] = 105272, + [SMALL_STATE(1877)] = 105298, + [SMALL_STATE(1878)] = 105324, + [SMALL_STATE(1879)] = 105350, + [SMALL_STATE(1880)] = 105364, + [SMALL_STATE(1881)] = 105386, + [SMALL_STATE(1882)] = 105408, + [SMALL_STATE(1883)] = 105426, + [SMALL_STATE(1884)] = 105450, + [SMALL_STATE(1885)] = 105467, + [SMALL_STATE(1886)] = 105488, + [SMALL_STATE(1887)] = 105505, + [SMALL_STATE(1888)] = 105528, + [SMALL_STATE(1889)] = 105541, + [SMALL_STATE(1890)] = 105554, + [SMALL_STATE(1891)] = 105575, + [SMALL_STATE(1892)] = 105596, + [SMALL_STATE(1893)] = 105617, + [SMALL_STATE(1894)] = 105638, + [SMALL_STATE(1895)] = 105659, + [SMALL_STATE(1896)] = 105680, + [SMALL_STATE(1897)] = 105701, + [SMALL_STATE(1898)] = 105718, + [SMALL_STATE(1899)] = 105735, + [SMALL_STATE(1900)] = 105752, + [SMALL_STATE(1901)] = 105769, + [SMALL_STATE(1902)] = 105786, + [SMALL_STATE(1903)] = 105807, + [SMALL_STATE(1904)] = 105828, + [SMALL_STATE(1905)] = 105849, + [SMALL_STATE(1906)] = 105870, + [SMALL_STATE(1907)] = 105885, + [SMALL_STATE(1908)] = 105902, + [SMALL_STATE(1909)] = 105919, + [SMALL_STATE(1910)] = 105940, + [SMALL_STATE(1911)] = 105959, + [SMALL_STATE(1912)] = 105980, + [SMALL_STATE(1913)] = 106001, + [SMALL_STATE(1914)] = 106024, + [SMALL_STATE(1915)] = 106041, + [SMALL_STATE(1916)] = 106054, + [SMALL_STATE(1917)] = 106075, + [SMALL_STATE(1918)] = 106096, + [SMALL_STATE(1919)] = 106113, + [SMALL_STATE(1920)] = 106134, + [SMALL_STATE(1921)] = 106155, + [SMALL_STATE(1922)] = 106168, + [SMALL_STATE(1923)] = 106189, + [SMALL_STATE(1924)] = 106210, + [SMALL_STATE(1925)] = 106233, + [SMALL_STATE(1926)] = 106254, + [SMALL_STATE(1927)] = 106267, + [SMALL_STATE(1928)] = 106288, + [SMALL_STATE(1929)] = 106305, + [SMALL_STATE(1930)] = 106322, + [SMALL_STATE(1931)] = 106337, + [SMALL_STATE(1932)] = 106354, + [SMALL_STATE(1933)] = 106371, + [SMALL_STATE(1934)] = 106388, + [SMALL_STATE(1935)] = 106401, + [SMALL_STATE(1936)] = 106422, + [SMALL_STATE(1937)] = 106435, + [SMALL_STATE(1938)] = 106448, + [SMALL_STATE(1939)] = 106465, + [SMALL_STATE(1940)] = 106482, + [SMALL_STATE(1941)] = 106499, + [SMALL_STATE(1942)] = 106514, + [SMALL_STATE(1943)] = 106531, + [SMALL_STATE(1944)] = 106548, + [SMALL_STATE(1945)] = 106565, + [SMALL_STATE(1946)] = 106586, + [SMALL_STATE(1947)] = 106603, + [SMALL_STATE(1948)] = 106620, + [SMALL_STATE(1949)] = 106641, + [SMALL_STATE(1950)] = 106658, + [SMALL_STATE(1951)] = 106679, + [SMALL_STATE(1952)] = 106696, + [SMALL_STATE(1953)] = 106711, + [SMALL_STATE(1954)] = 106728, + [SMALL_STATE(1955)] = 106745, + [SMALL_STATE(1956)] = 106762, + [SMALL_STATE(1957)] = 106779, + [SMALL_STATE(1958)] = 106796, + [SMALL_STATE(1959)] = 106819, + [SMALL_STATE(1960)] = 106834, + [SMALL_STATE(1961)] = 106851, + [SMALL_STATE(1962)] = 106864, + [SMALL_STATE(1963)] = 106885, + [SMALL_STATE(1964)] = 106902, + [SMALL_STATE(1965)] = 106917, + [SMALL_STATE(1966)] = 106938, + [SMALL_STATE(1967)] = 106959, + [SMALL_STATE(1968)] = 106976, + [SMALL_STATE(1969)] = 106997, + [SMALL_STATE(1970)] = 107010, + [SMALL_STATE(1971)] = 107025, + [SMALL_STATE(1972)] = 107048, + [SMALL_STATE(1973)] = 107071, + [SMALL_STATE(1974)] = 107088, + [SMALL_STATE(1975)] = 107109, + [SMALL_STATE(1976)] = 107130, + [SMALL_STATE(1977)] = 107147, + [SMALL_STATE(1978)] = 107168, + [SMALL_STATE(1979)] = 107191, + [SMALL_STATE(1980)] = 107206, + [SMALL_STATE(1981)] = 107227, + [SMALL_STATE(1982)] = 107240, + [SMALL_STATE(1983)] = 107263, + [SMALL_STATE(1984)] = 107276, + [SMALL_STATE(1985)] = 107288, + [SMALL_STATE(1986)] = 107300, + [SMALL_STATE(1987)] = 107314, + [SMALL_STATE(1988)] = 107330, + [SMALL_STATE(1989)] = 107342, + [SMALL_STATE(1990)] = 107358, + [SMALL_STATE(1991)] = 107378, + [SMALL_STATE(1992)] = 107398, + [SMALL_STATE(1993)] = 107416, + [SMALL_STATE(1994)] = 107436, + [SMALL_STATE(1995)] = 107448, + [SMALL_STATE(1996)] = 107466, + [SMALL_STATE(1997)] = 107478, + [SMALL_STATE(1998)] = 107498, + [SMALL_STATE(1999)] = 107510, + [SMALL_STATE(2000)] = 107522, + [SMALL_STATE(2001)] = 107534, + [SMALL_STATE(2002)] = 107552, + [SMALL_STATE(2003)] = 107564, + [SMALL_STATE(2004)] = 107576, + [SMALL_STATE(2005)] = 107588, + [SMALL_STATE(2006)] = 107608, + [SMALL_STATE(2007)] = 107622, + [SMALL_STATE(2008)] = 107638, + [SMALL_STATE(2009)] = 107654, + [SMALL_STATE(2010)] = 107672, + [SMALL_STATE(2011)] = 107692, + [SMALL_STATE(2012)] = 107712, + [SMALL_STATE(2013)] = 107724, + [SMALL_STATE(2014)] = 107744, + [SMALL_STATE(2015)] = 107756, + [SMALL_STATE(2016)] = 107772, + [SMALL_STATE(2017)] = 107790, + [SMALL_STATE(2018)] = 107802, + [SMALL_STATE(2019)] = 107820, + [SMALL_STATE(2020)] = 107832, + [SMALL_STATE(2021)] = 107844, + [SMALL_STATE(2022)] = 107860, + [SMALL_STATE(2023)] = 107872, + [SMALL_STATE(2024)] = 107886, + [SMALL_STATE(2025)] = 107906, + [SMALL_STATE(2026)] = 107922, + [SMALL_STATE(2027)] = 107934, + [SMALL_STATE(2028)] = 107948, + [SMALL_STATE(2029)] = 107968, + [SMALL_STATE(2030)] = 107982, + [SMALL_STATE(2031)] = 107998, + [SMALL_STATE(2032)] = 108018, + [SMALL_STATE(2033)] = 108036, + [SMALL_STATE(2034)] = 108048, + [SMALL_STATE(2035)] = 108060, + [SMALL_STATE(2036)] = 108076, + [SMALL_STATE(2037)] = 108088, + [SMALL_STATE(2038)] = 108104, + [SMALL_STATE(2039)] = 108116, + [SMALL_STATE(2040)] = 108136, + [SMALL_STATE(2041)] = 108154, + [SMALL_STATE(2042)] = 108174, + [SMALL_STATE(2043)] = 108186, + [SMALL_STATE(2044)] = 108198, + [SMALL_STATE(2045)] = 108210, + [SMALL_STATE(2046)] = 108226, + [SMALL_STATE(2047)] = 108240, + [SMALL_STATE(2048)] = 108256, + [SMALL_STATE(2049)] = 108268, + [SMALL_STATE(2050)] = 108284, + [SMALL_STATE(2051)] = 108304, + [SMALL_STATE(2052)] = 108316, + [SMALL_STATE(2053)] = 108328, + [SMALL_STATE(2054)] = 108340, + [SMALL_STATE(2055)] = 108360, + [SMALL_STATE(2056)] = 108380, + [SMALL_STATE(2057)] = 108400, + [SMALL_STATE(2058)] = 108412, + [SMALL_STATE(2059)] = 108424, + [SMALL_STATE(2060)] = 108436, + [SMALL_STATE(2061)] = 108448, + [SMALL_STATE(2062)] = 108468, + [SMALL_STATE(2063)] = 108486, + [SMALL_STATE(2064)] = 108498, + [SMALL_STATE(2065)] = 108516, + [SMALL_STATE(2066)] = 108536, + [SMALL_STATE(2067)] = 108548, + [SMALL_STATE(2068)] = 108568, + [SMALL_STATE(2069)] = 108588, + [SMALL_STATE(2070)] = 108608, + [SMALL_STATE(2071)] = 108620, + [SMALL_STATE(2072)] = 108636, + [SMALL_STATE(2073)] = 108648, + [SMALL_STATE(2074)] = 108666, + [SMALL_STATE(2075)] = 108686, + [SMALL_STATE(2076)] = 108698, + [SMALL_STATE(2077)] = 108718, + [SMALL_STATE(2078)] = 108738, + [SMALL_STATE(2079)] = 108750, + [SMALL_STATE(2080)] = 108762, + [SMALL_STATE(2081)] = 108774, + [SMALL_STATE(2082)] = 108786, + [SMALL_STATE(2083)] = 108798, + [SMALL_STATE(2084)] = 108810, + [SMALL_STATE(2085)] = 108822, + [SMALL_STATE(2086)] = 108842, + [SMALL_STATE(2087)] = 108854, + [SMALL_STATE(2088)] = 108866, + [SMALL_STATE(2089)] = 108878, + [SMALL_STATE(2090)] = 108890, + [SMALL_STATE(2091)] = 108910, + [SMALL_STATE(2092)] = 108930, + [SMALL_STATE(2093)] = 108942, + [SMALL_STATE(2094)] = 108954, + [SMALL_STATE(2095)] = 108970, + [SMALL_STATE(2096)] = 108982, + [SMALL_STATE(2097)] = 108993, + [SMALL_STATE(2098)] = 109004, + [SMALL_STATE(2099)] = 109015, + [SMALL_STATE(2100)] = 109032, + [SMALL_STATE(2101)] = 109047, + [SMALL_STATE(2102)] = 109058, + [SMALL_STATE(2103)] = 109069, + [SMALL_STATE(2104)] = 109080, + [SMALL_STATE(2105)] = 109091, + [SMALL_STATE(2106)] = 109102, + [SMALL_STATE(2107)] = 109113, + [SMALL_STATE(2108)] = 109124, + [SMALL_STATE(2109)] = 109135, + [SMALL_STATE(2110)] = 109146, + [SMALL_STATE(2111)] = 109161, + [SMALL_STATE(2112)] = 109172, + [SMALL_STATE(2113)] = 109183, + [SMALL_STATE(2114)] = 109194, + [SMALL_STATE(2115)] = 109205, + [SMALL_STATE(2116)] = 109216, + [SMALL_STATE(2117)] = 109231, + [SMALL_STATE(2118)] = 109246, + [SMALL_STATE(2119)] = 109261, + [SMALL_STATE(2120)] = 109278, + [SMALL_STATE(2121)] = 109295, + [SMALL_STATE(2122)] = 109306, + [SMALL_STATE(2123)] = 109317, + [SMALL_STATE(2124)] = 109328, + [SMALL_STATE(2125)] = 109339, + [SMALL_STATE(2126)] = 109350, + [SMALL_STATE(2127)] = 109361, + [SMALL_STATE(2128)] = 109372, + [SMALL_STATE(2129)] = 109383, + [SMALL_STATE(2130)] = 109400, + [SMALL_STATE(2131)] = 109417, + [SMALL_STATE(2132)] = 109434, + [SMALL_STATE(2133)] = 109445, + [SMALL_STATE(2134)] = 109460, + [SMALL_STATE(2135)] = 109471, + [SMALL_STATE(2136)] = 109482, + [SMALL_STATE(2137)] = 109499, + [SMALL_STATE(2138)] = 109510, + [SMALL_STATE(2139)] = 109521, + [SMALL_STATE(2140)] = 109532, + [SMALL_STATE(2141)] = 109543, + [SMALL_STATE(2142)] = 109554, + [SMALL_STATE(2143)] = 109565, + [SMALL_STATE(2144)] = 109576, + [SMALL_STATE(2145)] = 109587, + [SMALL_STATE(2146)] = 109598, + [SMALL_STATE(2147)] = 109609, + [SMALL_STATE(2148)] = 109620, + [SMALL_STATE(2149)] = 109631, + [SMALL_STATE(2150)] = 109642, + [SMALL_STATE(2151)] = 109653, + [SMALL_STATE(2152)] = 109664, + [SMALL_STATE(2153)] = 109675, + [SMALL_STATE(2154)] = 109690, + [SMALL_STATE(2155)] = 109707, + [SMALL_STATE(2156)] = 109722, + [SMALL_STATE(2157)] = 109739, + [SMALL_STATE(2158)] = 109756, + [SMALL_STATE(2159)] = 109773, + [SMALL_STATE(2160)] = 109788, + [SMALL_STATE(2161)] = 109803, + [SMALL_STATE(2162)] = 109814, + [SMALL_STATE(2163)] = 109829, + [SMALL_STATE(2164)] = 109840, + [SMALL_STATE(2165)] = 109857, + [SMALL_STATE(2166)] = 109874, + [SMALL_STATE(2167)] = 109887, + [SMALL_STATE(2168)] = 109898, + [SMALL_STATE(2169)] = 109909, + [SMALL_STATE(2170)] = 109920, + [SMALL_STATE(2171)] = 109931, + [SMALL_STATE(2172)] = 109948, + [SMALL_STATE(2173)] = 109959, + [SMALL_STATE(2174)] = 109970, + [SMALL_STATE(2175)] = 109985, + [SMALL_STATE(2176)] = 110000, + [SMALL_STATE(2177)] = 110011, + [SMALL_STATE(2178)] = 110022, + [SMALL_STATE(2179)] = 110035, + [SMALL_STATE(2180)] = 110050, + [SMALL_STATE(2181)] = 110061, + [SMALL_STATE(2182)] = 110076, + [SMALL_STATE(2183)] = 110087, + [SMALL_STATE(2184)] = 110102, + [SMALL_STATE(2185)] = 110113, + [SMALL_STATE(2186)] = 110130, + [SMALL_STATE(2187)] = 110141, + [SMALL_STATE(2188)] = 110158, + [SMALL_STATE(2189)] = 110169, + [SMALL_STATE(2190)] = 110186, + [SMALL_STATE(2191)] = 110203, + [SMALL_STATE(2192)] = 110214, + [SMALL_STATE(2193)] = 110225, + [SMALL_STATE(2194)] = 110236, + [SMALL_STATE(2195)] = 110247, + [SMALL_STATE(2196)] = 110258, + [SMALL_STATE(2197)] = 110269, + [SMALL_STATE(2198)] = 110284, + [SMALL_STATE(2199)] = 110295, + [SMALL_STATE(2200)] = 110306, + [SMALL_STATE(2201)] = 110317, + [SMALL_STATE(2202)] = 110328, + [SMALL_STATE(2203)] = 110339, + [SMALL_STATE(2204)] = 110350, + [SMALL_STATE(2205)] = 110367, + [SMALL_STATE(2206)] = 110384, + [SMALL_STATE(2207)] = 110401, + [SMALL_STATE(2208)] = 110412, + [SMALL_STATE(2209)] = 110429, + [SMALL_STATE(2210)] = 110440, + [SMALL_STATE(2211)] = 110451, + [SMALL_STATE(2212)] = 110464, + [SMALL_STATE(2213)] = 110481, + [SMALL_STATE(2214)] = 110492, + [SMALL_STATE(2215)] = 110509, + [SMALL_STATE(2216)] = 110526, + [SMALL_STATE(2217)] = 110541, + [SMALL_STATE(2218)] = 110558, + [SMALL_STATE(2219)] = 110575, + [SMALL_STATE(2220)] = 110592, + [SMALL_STATE(2221)] = 110603, + [SMALL_STATE(2222)] = 110620, + [SMALL_STATE(2223)] = 110631, + [SMALL_STATE(2224)] = 110648, + [SMALL_STATE(2225)] = 110659, + [SMALL_STATE(2226)] = 110670, + [SMALL_STATE(2227)] = 110685, + [SMALL_STATE(2228)] = 110696, + [SMALL_STATE(2229)] = 110713, + [SMALL_STATE(2230)] = 110728, + [SMALL_STATE(2231)] = 110739, + [SMALL_STATE(2232)] = 110754, + [SMALL_STATE(2233)] = 110771, + [SMALL_STATE(2234)] = 110785, + [SMALL_STATE(2235)] = 110799, + [SMALL_STATE(2236)] = 110813, + [SMALL_STATE(2237)] = 110827, + [SMALL_STATE(2238)] = 110841, + [SMALL_STATE(2239)] = 110855, + [SMALL_STATE(2240)] = 110869, + [SMALL_STATE(2241)] = 110883, + [SMALL_STATE(2242)] = 110897, + [SMALL_STATE(2243)] = 110911, + [SMALL_STATE(2244)] = 110925, + [SMALL_STATE(2245)] = 110939, + [SMALL_STATE(2246)] = 110953, + [SMALL_STATE(2247)] = 110967, + [SMALL_STATE(2248)] = 110981, + [SMALL_STATE(2249)] = 110993, + [SMALL_STATE(2250)] = 111007, + [SMALL_STATE(2251)] = 111021, + [SMALL_STATE(2252)] = 111033, + [SMALL_STATE(2253)] = 111047, + [SMALL_STATE(2254)] = 111061, + [SMALL_STATE(2255)] = 111075, + [SMALL_STATE(2256)] = 111089, + [SMALL_STATE(2257)] = 111103, + [SMALL_STATE(2258)] = 111117, + [SMALL_STATE(2259)] = 111131, + [SMALL_STATE(2260)] = 111143, + [SMALL_STATE(2261)] = 111157, + [SMALL_STATE(2262)] = 111171, + [SMALL_STATE(2263)] = 111185, + [SMALL_STATE(2264)] = 111197, + [SMALL_STATE(2265)] = 111209, + [SMALL_STATE(2266)] = 111223, + [SMALL_STATE(2267)] = 111237, + [SMALL_STATE(2268)] = 111251, + [SMALL_STATE(2269)] = 111265, + [SMALL_STATE(2270)] = 111279, + [SMALL_STATE(2271)] = 111293, + [SMALL_STATE(2272)] = 111303, + [SMALL_STATE(2273)] = 111317, + [SMALL_STATE(2274)] = 111331, + [SMALL_STATE(2275)] = 111345, + [SMALL_STATE(2276)] = 111359, + [SMALL_STATE(2277)] = 111369, + [SMALL_STATE(2278)] = 111383, + [SMALL_STATE(2279)] = 111397, + [SMALL_STATE(2280)] = 111411, + [SMALL_STATE(2281)] = 111425, + [SMALL_STATE(2282)] = 111439, + [SMALL_STATE(2283)] = 111453, + [SMALL_STATE(2284)] = 111467, + [SMALL_STATE(2285)] = 111481, + [SMALL_STATE(2286)] = 111495, + [SMALL_STATE(2287)] = 111509, + [SMALL_STATE(2288)] = 111523, + [SMALL_STATE(2289)] = 111537, + [SMALL_STATE(2290)] = 111551, + [SMALL_STATE(2291)] = 111565, + [SMALL_STATE(2292)] = 111579, + [SMALL_STATE(2293)] = 111593, + [SMALL_STATE(2294)] = 111607, + [SMALL_STATE(2295)] = 111621, + [SMALL_STATE(2296)] = 111635, + [SMALL_STATE(2297)] = 111649, + [SMALL_STATE(2298)] = 111663, + [SMALL_STATE(2299)] = 111675, + [SMALL_STATE(2300)] = 111689, + [SMALL_STATE(2301)] = 111703, + [SMALL_STATE(2302)] = 111715, + [SMALL_STATE(2303)] = 111729, + [SMALL_STATE(2304)] = 111743, + [SMALL_STATE(2305)] = 111757, + [SMALL_STATE(2306)] = 111771, + [SMALL_STATE(2307)] = 111785, + [SMALL_STATE(2308)] = 111795, + [SMALL_STATE(2309)] = 111805, + [SMALL_STATE(2310)] = 111819, + [SMALL_STATE(2311)] = 111833, + [SMALL_STATE(2312)] = 111847, + [SMALL_STATE(2313)] = 111861, + [SMALL_STATE(2314)] = 111875, + [SMALL_STATE(2315)] = 111889, + [SMALL_STATE(2316)] = 111903, + [SMALL_STATE(2317)] = 111917, + [SMALL_STATE(2318)] = 111931, + [SMALL_STATE(2319)] = 111945, + [SMALL_STATE(2320)] = 111959, + [SMALL_STATE(2321)] = 111973, + [SMALL_STATE(2322)] = 111987, + [SMALL_STATE(2323)] = 112001, + [SMALL_STATE(2324)] = 112015, + [SMALL_STATE(2325)] = 112029, + [SMALL_STATE(2326)] = 112041, + [SMALL_STATE(2327)] = 112055, + [SMALL_STATE(2328)] = 112067, + [SMALL_STATE(2329)] = 112081, + [SMALL_STATE(2330)] = 112095, + [SMALL_STATE(2331)] = 112109, + [SMALL_STATE(2332)] = 112123, + [SMALL_STATE(2333)] = 112137, + [SMALL_STATE(2334)] = 112149, + [SMALL_STATE(2335)] = 112161, + [SMALL_STATE(2336)] = 112175, + [SMALL_STATE(2337)] = 112187, + [SMALL_STATE(2338)] = 112199, + [SMALL_STATE(2339)] = 112213, + [SMALL_STATE(2340)] = 112227, + [SMALL_STATE(2341)] = 112241, + [SMALL_STATE(2342)] = 112255, + [SMALL_STATE(2343)] = 112269, + [SMALL_STATE(2344)] = 112283, + [SMALL_STATE(2345)] = 112297, + [SMALL_STATE(2346)] = 112311, + [SMALL_STATE(2347)] = 112325, + [SMALL_STATE(2348)] = 112339, + [SMALL_STATE(2349)] = 112353, + [SMALL_STATE(2350)] = 112367, + [SMALL_STATE(2351)] = 112381, + [SMALL_STATE(2352)] = 112395, + [SMALL_STATE(2353)] = 112409, + [SMALL_STATE(2354)] = 112423, + [SMALL_STATE(2355)] = 112437, + [SMALL_STATE(2356)] = 112449, + [SMALL_STATE(2357)] = 112459, + [SMALL_STATE(2358)] = 112473, + [SMALL_STATE(2359)] = 112485, + [SMALL_STATE(2360)] = 112499, + [SMALL_STATE(2361)] = 112513, + [SMALL_STATE(2362)] = 112527, + [SMALL_STATE(2363)] = 112541, + [SMALL_STATE(2364)] = 112555, + [SMALL_STATE(2365)] = 112569, + [SMALL_STATE(2366)] = 112583, + [SMALL_STATE(2367)] = 112597, + [SMALL_STATE(2368)] = 112607, + [SMALL_STATE(2369)] = 112621, + [SMALL_STATE(2370)] = 112635, + [SMALL_STATE(2371)] = 112649, + [SMALL_STATE(2372)] = 112663, + [SMALL_STATE(2373)] = 112677, + [SMALL_STATE(2374)] = 112691, + [SMALL_STATE(2375)] = 112705, + [SMALL_STATE(2376)] = 112719, + [SMALL_STATE(2377)] = 112733, + [SMALL_STATE(2378)] = 112747, + [SMALL_STATE(2379)] = 112761, + [SMALL_STATE(2380)] = 112775, + [SMALL_STATE(2381)] = 112789, + [SMALL_STATE(2382)] = 112803, + [SMALL_STATE(2383)] = 112817, + [SMALL_STATE(2384)] = 112831, + [SMALL_STATE(2385)] = 112843, + [SMALL_STATE(2386)] = 112857, + [SMALL_STATE(2387)] = 112871, + [SMALL_STATE(2388)] = 112885, + [SMALL_STATE(2389)] = 112899, + [SMALL_STATE(2390)] = 112913, + [SMALL_STATE(2391)] = 112927, + [SMALL_STATE(2392)] = 112941, + [SMALL_STATE(2393)] = 112955, + [SMALL_STATE(2394)] = 112967, + [SMALL_STATE(2395)] = 112981, + [SMALL_STATE(2396)] = 112995, + [SMALL_STATE(2397)] = 113005, + [SMALL_STATE(2398)] = 113019, + [SMALL_STATE(2399)] = 113033, + [SMALL_STATE(2400)] = 113047, + [SMALL_STATE(2401)] = 113057, + [SMALL_STATE(2402)] = 113071, + [SMALL_STATE(2403)] = 113081, + [SMALL_STATE(2404)] = 113095, + [SMALL_STATE(2405)] = 113109, + [SMALL_STATE(2406)] = 113123, + [SMALL_STATE(2407)] = 113137, + [SMALL_STATE(2408)] = 113149, + [SMALL_STATE(2409)] = 113163, + [SMALL_STATE(2410)] = 113177, + [SMALL_STATE(2411)] = 113191, + [SMALL_STATE(2412)] = 113205, + [SMALL_STATE(2413)] = 113219, + [SMALL_STATE(2414)] = 113233, + [SMALL_STATE(2415)] = 113247, + [SMALL_STATE(2416)] = 113259, + [SMALL_STATE(2417)] = 113273, + [SMALL_STATE(2418)] = 113285, + [SMALL_STATE(2419)] = 113295, + [SMALL_STATE(2420)] = 113309, + [SMALL_STATE(2421)] = 113323, + [SMALL_STATE(2422)] = 113337, + [SMALL_STATE(2423)] = 113351, + [SMALL_STATE(2424)] = 113365, + [SMALL_STATE(2425)] = 113379, + [SMALL_STATE(2426)] = 113389, + [SMALL_STATE(2427)] = 113403, + [SMALL_STATE(2428)] = 113417, + [SMALL_STATE(2429)] = 113431, + [SMALL_STATE(2430)] = 113445, + [SMALL_STATE(2431)] = 113459, + [SMALL_STATE(2432)] = 113473, + [SMALL_STATE(2433)] = 113487, + [SMALL_STATE(2434)] = 113501, + [SMALL_STATE(2435)] = 113515, + [SMALL_STATE(2436)] = 113529, + [SMALL_STATE(2437)] = 113543, + [SMALL_STATE(2438)] = 113553, + [SMALL_STATE(2439)] = 113567, + [SMALL_STATE(2440)] = 113581, + [SMALL_STATE(2441)] = 113595, + [SMALL_STATE(2442)] = 113609, + [SMALL_STATE(2443)] = 113623, + [SMALL_STATE(2444)] = 113637, + [SMALL_STATE(2445)] = 113651, + [SMALL_STATE(2446)] = 113665, + [SMALL_STATE(2447)] = 113679, + [SMALL_STATE(2448)] = 113693, + [SMALL_STATE(2449)] = 113707, + [SMALL_STATE(2450)] = 113721, + [SMALL_STATE(2451)] = 113735, + [SMALL_STATE(2452)] = 113749, + [SMALL_STATE(2453)] = 113763, + [SMALL_STATE(2454)] = 113777, + [SMALL_STATE(2455)] = 113787, + [SMALL_STATE(2456)] = 113801, + [SMALL_STATE(2457)] = 113815, + [SMALL_STATE(2458)] = 113829, + [SMALL_STATE(2459)] = 113843, + [SMALL_STATE(2460)] = 113857, + [SMALL_STATE(2461)] = 113871, + [SMALL_STATE(2462)] = 113885, + [SMALL_STATE(2463)] = 113899, + [SMALL_STATE(2464)] = 113913, + [SMALL_STATE(2465)] = 113927, + [SMALL_STATE(2466)] = 113941, + [SMALL_STATE(2467)] = 113955, + [SMALL_STATE(2468)] = 113969, + [SMALL_STATE(2469)] = 113983, + [SMALL_STATE(2470)] = 113997, + [SMALL_STATE(2471)] = 114011, + [SMALL_STATE(2472)] = 114025, + [SMALL_STATE(2473)] = 114037, + [SMALL_STATE(2474)] = 114051, + [SMALL_STATE(2475)] = 114065, + [SMALL_STATE(2476)] = 114079, + [SMALL_STATE(2477)] = 114091, + [SMALL_STATE(2478)] = 114105, + [SMALL_STATE(2479)] = 114119, + [SMALL_STATE(2480)] = 114131, + [SMALL_STATE(2481)] = 114145, + [SMALL_STATE(2482)] = 114159, + [SMALL_STATE(2483)] = 114173, + [SMALL_STATE(2484)] = 114187, + [SMALL_STATE(2485)] = 114197, + [SMALL_STATE(2486)] = 114211, + [SMALL_STATE(2487)] = 114223, + [SMALL_STATE(2488)] = 114237, + [SMALL_STATE(2489)] = 114251, + [SMALL_STATE(2490)] = 114265, + [SMALL_STATE(2491)] = 114279, + [SMALL_STATE(2492)] = 114293, + [SMALL_STATE(2493)] = 114307, + [SMALL_STATE(2494)] = 114321, + [SMALL_STATE(2495)] = 114335, + [SMALL_STATE(2496)] = 114349, + [SMALL_STATE(2497)] = 114358, + [SMALL_STATE(2498)] = 114367, + [SMALL_STATE(2499)] = 114376, + [SMALL_STATE(2500)] = 114387, + [SMALL_STATE(2501)] = 114398, + [SMALL_STATE(2502)] = 114407, + [SMALL_STATE(2503)] = 114416, + [SMALL_STATE(2504)] = 114425, + [SMALL_STATE(2505)] = 114434, + [SMALL_STATE(2506)] = 114443, + [SMALL_STATE(2507)] = 114452, + [SMALL_STATE(2508)] = 114463, + [SMALL_STATE(2509)] = 114472, + [SMALL_STATE(2510)] = 114481, + [SMALL_STATE(2511)] = 114492, + [SMALL_STATE(2512)] = 114503, + [SMALL_STATE(2513)] = 114512, + [SMALL_STATE(2514)] = 114521, + [SMALL_STATE(2515)] = 114532, + [SMALL_STATE(2516)] = 114541, + [SMALL_STATE(2517)] = 114550, + [SMALL_STATE(2518)] = 114559, + [SMALL_STATE(2519)] = 114570, + [SMALL_STATE(2520)] = 114581, + [SMALL_STATE(2521)] = 114592, + [SMALL_STATE(2522)] = 114601, + [SMALL_STATE(2523)] = 114610, + [SMALL_STATE(2524)] = 114619, + [SMALL_STATE(2525)] = 114628, + [SMALL_STATE(2526)] = 114639, + [SMALL_STATE(2527)] = 114648, + [SMALL_STATE(2528)] = 114657, + [SMALL_STATE(2529)] = 114666, + [SMALL_STATE(2530)] = 114675, + [SMALL_STATE(2531)] = 114684, + [SMALL_STATE(2532)] = 114693, + [SMALL_STATE(2533)] = 114702, + [SMALL_STATE(2534)] = 114711, + [SMALL_STATE(2535)] = 114720, + [SMALL_STATE(2536)] = 114729, + [SMALL_STATE(2537)] = 114738, + [SMALL_STATE(2538)] = 114749, + [SMALL_STATE(2539)] = 114758, + [SMALL_STATE(2540)] = 114767, + [SMALL_STATE(2541)] = 114778, + [SMALL_STATE(2542)] = 114787, + [SMALL_STATE(2543)] = 114798, + [SMALL_STATE(2544)] = 114809, + [SMALL_STATE(2545)] = 114818, + [SMALL_STATE(2546)] = 114827, + [SMALL_STATE(2547)] = 114836, + [SMALL_STATE(2548)] = 114845, + [SMALL_STATE(2549)] = 114854, + [SMALL_STATE(2550)] = 114863, + [SMALL_STATE(2551)] = 114872, + [SMALL_STATE(2552)] = 114881, + [SMALL_STATE(2553)] = 114890, + [SMALL_STATE(2554)] = 114899, + [SMALL_STATE(2555)] = 114908, + [SMALL_STATE(2556)] = 114917, + [SMALL_STATE(2557)] = 114928, + [SMALL_STATE(2558)] = 114937, + [SMALL_STATE(2559)] = 114948, + [SMALL_STATE(2560)] = 114959, + [SMALL_STATE(2561)] = 114968, + [SMALL_STATE(2562)] = 114979, + [SMALL_STATE(2563)] = 114990, + [SMALL_STATE(2564)] = 115001, + [SMALL_STATE(2565)] = 115012, + [SMALL_STATE(2566)] = 115021, + [SMALL_STATE(2567)] = 115030, + [SMALL_STATE(2568)] = 115039, + [SMALL_STATE(2569)] = 115048, + [SMALL_STATE(2570)] = 115057, + [SMALL_STATE(2571)] = 115066, + [SMALL_STATE(2572)] = 115075, + [SMALL_STATE(2573)] = 115084, + [SMALL_STATE(2574)] = 115093, + [SMALL_STATE(2575)] = 115102, + [SMALL_STATE(2576)] = 115111, + [SMALL_STATE(2577)] = 115120, + [SMALL_STATE(2578)] = 115129, + [SMALL_STATE(2579)] = 115138, + [SMALL_STATE(2580)] = 115147, + [SMALL_STATE(2581)] = 115156, + [SMALL_STATE(2582)] = 115165, + [SMALL_STATE(2583)] = 115174, + [SMALL_STATE(2584)] = 115183, + [SMALL_STATE(2585)] = 115192, + [SMALL_STATE(2586)] = 115201, + [SMALL_STATE(2587)] = 115210, + [SMALL_STATE(2588)] = 115219, + [SMALL_STATE(2589)] = 115228, + [SMALL_STATE(2590)] = 115237, + [SMALL_STATE(2591)] = 115246, + [SMALL_STATE(2592)] = 115254, + [SMALL_STATE(2593)] = 115262, + [SMALL_STATE(2594)] = 115270, + [SMALL_STATE(2595)] = 115278, + [SMALL_STATE(2596)] = 115286, + [SMALL_STATE(2597)] = 115294, + [SMALL_STATE(2598)] = 115302, + [SMALL_STATE(2599)] = 115310, + [SMALL_STATE(2600)] = 115318, + [SMALL_STATE(2601)] = 115326, + [SMALL_STATE(2602)] = 115334, + [SMALL_STATE(2603)] = 115342, + [SMALL_STATE(2604)] = 115350, + [SMALL_STATE(2605)] = 115358, + [SMALL_STATE(2606)] = 115366, + [SMALL_STATE(2607)] = 115374, + [SMALL_STATE(2608)] = 115382, + [SMALL_STATE(2609)] = 115390, + [SMALL_STATE(2610)] = 115398, + [SMALL_STATE(2611)] = 115406, + [SMALL_STATE(2612)] = 115414, + [SMALL_STATE(2613)] = 115422, + [SMALL_STATE(2614)] = 115430, + [SMALL_STATE(2615)] = 115438, + [SMALL_STATE(2616)] = 115446, + [SMALL_STATE(2617)] = 115454, + [SMALL_STATE(2618)] = 115462, + [SMALL_STATE(2619)] = 115470, + [SMALL_STATE(2620)] = 115478, + [SMALL_STATE(2621)] = 115486, + [SMALL_STATE(2622)] = 115494, + [SMALL_STATE(2623)] = 115502, + [SMALL_STATE(2624)] = 115510, + [SMALL_STATE(2625)] = 115518, + [SMALL_STATE(2626)] = 115526, + [SMALL_STATE(2627)] = 115534, + [SMALL_STATE(2628)] = 115542, + [SMALL_STATE(2629)] = 115550, + [SMALL_STATE(2630)] = 115558, + [SMALL_STATE(2631)] = 115566, + [SMALL_STATE(2632)] = 115574, + [SMALL_STATE(2633)] = 115582, + [SMALL_STATE(2634)] = 115590, + [SMALL_STATE(2635)] = 115598, + [SMALL_STATE(2636)] = 115606, + [SMALL_STATE(2637)] = 115614, + [SMALL_STATE(2638)] = 115622, + [SMALL_STATE(2639)] = 115630, + [SMALL_STATE(2640)] = 115638, + [SMALL_STATE(2641)] = 115646, + [SMALL_STATE(2642)] = 115654, + [SMALL_STATE(2643)] = 115662, + [SMALL_STATE(2644)] = 115670, + [SMALL_STATE(2645)] = 115678, + [SMALL_STATE(2646)] = 115686, + [SMALL_STATE(2647)] = 115694, + [SMALL_STATE(2648)] = 115702, + [SMALL_STATE(2649)] = 115710, + [SMALL_STATE(2650)] = 115718, + [SMALL_STATE(2651)] = 115726, + [SMALL_STATE(2652)] = 115734, + [SMALL_STATE(2653)] = 115742, + [SMALL_STATE(2654)] = 115750, + [SMALL_STATE(2655)] = 115758, + [SMALL_STATE(2656)] = 115766, + [SMALL_STATE(2657)] = 115774, + [SMALL_STATE(2658)] = 115782, + [SMALL_STATE(2659)] = 115790, + [SMALL_STATE(2660)] = 115798, + [SMALL_STATE(2661)] = 115806, + [SMALL_STATE(2662)] = 115814, + [SMALL_STATE(2663)] = 115822, + [SMALL_STATE(2664)] = 115830, + [SMALL_STATE(2665)] = 115838, + [SMALL_STATE(2666)] = 115846, + [SMALL_STATE(2667)] = 115854, + [SMALL_STATE(2668)] = 115862, + [SMALL_STATE(2669)] = 115870, + [SMALL_STATE(2670)] = 115878, + [SMALL_STATE(2671)] = 115886, + [SMALL_STATE(2672)] = 115894, + [SMALL_STATE(2673)] = 115902, + [SMALL_STATE(2674)] = 115910, + [SMALL_STATE(2675)] = 115918, + [SMALL_STATE(2676)] = 115926, + [SMALL_STATE(2677)] = 115934, + [SMALL_STATE(2678)] = 115942, + [SMALL_STATE(2679)] = 115950, + [SMALL_STATE(2680)] = 115958, + [SMALL_STATE(2681)] = 115966, + [SMALL_STATE(2682)] = 115974, + [SMALL_STATE(2683)] = 115982, + [SMALL_STATE(2684)] = 115990, + [SMALL_STATE(2685)] = 115998, + [SMALL_STATE(2686)] = 116006, + [SMALL_STATE(2687)] = 116014, + [SMALL_STATE(2688)] = 116022, + [SMALL_STATE(2689)] = 116030, + [SMALL_STATE(2690)] = 116038, + [SMALL_STATE(2691)] = 116046, + [SMALL_STATE(2692)] = 116054, + [SMALL_STATE(2693)] = 116062, + [SMALL_STATE(2694)] = 116070, + [SMALL_STATE(2695)] = 116078, + [SMALL_STATE(2696)] = 116086, + [SMALL_STATE(2697)] = 116094, + [SMALL_STATE(2698)] = 116102, + [SMALL_STATE(2699)] = 116110, + [SMALL_STATE(2700)] = 116118, + [SMALL_STATE(2701)] = 116126, + [SMALL_STATE(2702)] = 116134, + [SMALL_STATE(2703)] = 116142, + [SMALL_STATE(2704)] = 116150, + [SMALL_STATE(2705)] = 116158, + [SMALL_STATE(2706)] = 116166, + [SMALL_STATE(2707)] = 116174, + [SMALL_STATE(2708)] = 116182, + [SMALL_STATE(2709)] = 116190, + [SMALL_STATE(2710)] = 116198, + [SMALL_STATE(2711)] = 116206, + [SMALL_STATE(2712)] = 116214, + [SMALL_STATE(2713)] = 116222, + [SMALL_STATE(2714)] = 116230, + [SMALL_STATE(2715)] = 116238, + [SMALL_STATE(2716)] = 116246, + [SMALL_STATE(2717)] = 116254, + [SMALL_STATE(2718)] = 116262, + [SMALL_STATE(2719)] = 116270, + [SMALL_STATE(2720)] = 116278, + [SMALL_STATE(2721)] = 116286, + [SMALL_STATE(2722)] = 116294, + [SMALL_STATE(2723)] = 116302, + [SMALL_STATE(2724)] = 116310, + [SMALL_STATE(2725)] = 116318, + [SMALL_STATE(2726)] = 116326, + [SMALL_STATE(2727)] = 116334, + [SMALL_STATE(2728)] = 116342, + [SMALL_STATE(2729)] = 116350, + [SMALL_STATE(2730)] = 116358, + [SMALL_STATE(2731)] = 116366, + [SMALL_STATE(2732)] = 116374, + [SMALL_STATE(2733)] = 116382, + [SMALL_STATE(2734)] = 116390, + [SMALL_STATE(2735)] = 116398, + [SMALL_STATE(2736)] = 116406, + [SMALL_STATE(2737)] = 116414, + [SMALL_STATE(2738)] = 116422, + [SMALL_STATE(2739)] = 116430, + [SMALL_STATE(2740)] = 116438, + [SMALL_STATE(2741)] = 116446, + [SMALL_STATE(2742)] = 116454, + [SMALL_STATE(2743)] = 116462, + [SMALL_STATE(2744)] = 116470, + [SMALL_STATE(2745)] = 116478, + [SMALL_STATE(2746)] = 116486, + [SMALL_STATE(2747)] = 116494, + [SMALL_STATE(2748)] = 116502, + [SMALL_STATE(2749)] = 116510, + [SMALL_STATE(2750)] = 116518, + [SMALL_STATE(2751)] = 116526, + [SMALL_STATE(2752)] = 116534, + [SMALL_STATE(2753)] = 116542, + [SMALL_STATE(2754)] = 116550, + [SMALL_STATE(2755)] = 116558, + [SMALL_STATE(2756)] = 116566, + [SMALL_STATE(2757)] = 116574, + [SMALL_STATE(2758)] = 116582, + [SMALL_STATE(2759)] = 116590, + [SMALL_STATE(2760)] = 116598, + [SMALL_STATE(2761)] = 116606, + [SMALL_STATE(2762)] = 116614, + [SMALL_STATE(2763)] = 116622, + [SMALL_STATE(2764)] = 116630, + [SMALL_STATE(2765)] = 116638, + [SMALL_STATE(2766)] = 116646, + [SMALL_STATE(2767)] = 116654, + [SMALL_STATE(2768)] = 116662, + [SMALL_STATE(2769)] = 116670, + [SMALL_STATE(2770)] = 116678, + [SMALL_STATE(2771)] = 116686, + [SMALL_STATE(2772)] = 116694, + [SMALL_STATE(2773)] = 116702, + [SMALL_STATE(2774)] = 116710, + [SMALL_STATE(2775)] = 116718, + [SMALL_STATE(2776)] = 116726, + [SMALL_STATE(2777)] = 116734, + [SMALL_STATE(2778)] = 116742, + [SMALL_STATE(2779)] = 116750, + [SMALL_STATE(2780)] = 116758, + [SMALL_STATE(2781)] = 116766, + [SMALL_STATE(2782)] = 116774, + [SMALL_STATE(2783)] = 116782, + [SMALL_STATE(2784)] = 116790, + [SMALL_STATE(2785)] = 116798, + [SMALL_STATE(2786)] = 116806, + [SMALL_STATE(2787)] = 116814, + [SMALL_STATE(2788)] = 116822, + [SMALL_STATE(2789)] = 116830, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127567,2441 +126354,2435 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2797), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1867), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2528), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2548), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2573), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2737), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2722), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(518), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2669), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2661), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(296), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(318), [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(947), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(918), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2741), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2612), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(917), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(544), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(880), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(555), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(294), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(308), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(307), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(913), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(308), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(931), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(563), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(297), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(879), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(298), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(888), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(568), [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(896), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(903), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 44), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 44), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 48), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 48), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 101), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 101), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 100), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 100), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 112), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 112), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 62), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 62), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 42), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 42), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(571), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 37), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 37), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(605), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(606), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(594), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 49), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 49), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 23), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 23), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 49), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 49), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 129), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 129), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 117), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 117), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 137), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 137), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 56), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 56), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 62), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 62), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 45), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 45), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 67), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 67), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 60), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 60), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(541), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 87), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 87), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 39), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 39), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 61), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 61), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(603), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 77), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 77), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 77), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 77), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 85), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 85), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 85), SHIFT_REPEAT(604), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 85), SHIFT_REPEAT(503), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 54), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 54), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 25), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 25), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 54), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 54), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 107), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 107), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 119), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 119), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 106), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 106), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 94), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 94), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 131), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 131), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 132), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 132), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 141), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 141), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 58), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 58), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 45), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 45), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 61), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 61), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 105), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 105), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 44), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 44), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 66), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 66), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 39), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 39), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 67), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 67), [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 42), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 42), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 37), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 113), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 113), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 53), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 41), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 41), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 42), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 42), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 62), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 62), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 39), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 39), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 60), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 60), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 62), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 62), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 108), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 108), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 115), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 115), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 118), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 118), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 119), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 119), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 126), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 126), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 127), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 127), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 54), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 54), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 42), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 42), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 136), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 136), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 43), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 43), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 45), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 45), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 59), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 59), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 117), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 117), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 92), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 92), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 45), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 45), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 67), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 67), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 63), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 63), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 64), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 64), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 65), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 65), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 18), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 18), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 43), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 43), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 68), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 68), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition_scope, 3, 0, 69), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition_scope, 3, 0, 69), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition_scope, 3, 0, 70), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition_scope, 3, 0, 70), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition_scope, 3, 0, 71), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition_scope, 3, 0, 71), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 84), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 84), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 86), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 86), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 89), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 89), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 90), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 90), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 91), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 91), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 93), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 93), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 94), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 94), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 45), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 45), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 4, 0, 46), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 4, 0, 46), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition_scope, 4, 0, 95), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition_scope, 4, 0, 95), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition_scope, 4, 0, 96), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition_scope, 4, 0, 96), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition_scope, 4, 0, 97), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition_scope, 4, 0, 97), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 59), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 59), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 102), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 102), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 104), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 104), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 62), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 62), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 67), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 67), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 5, 0, 68), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 5, 0, 68), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 5, 0, 108), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 5, 0, 108), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 5, 0, 109), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 5, 0, 109), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition_scope, 5, 0, 110), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition_scope, 5, 0, 110), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 118), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 118), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 6, 0, 120), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 6, 0, 120), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 6, 0, 121), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 6, 0, 121), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 6, 0, 122), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 6, 0, 122), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 6, 0, 123), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 6, 0, 123), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 130), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 130), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 7, 0, 133), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 7, 0, 133), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 7, 0, 134), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 7, 0, 134), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 7, 0, 135), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 7, 0, 135), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 7, 0, 136), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 7, 0, 136), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 8, 0, 142), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 8, 0, 142), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 8, 0, 143), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 8, 0, 143), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 8, 0, 144), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 8, 0, 144), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_scope, 9, 0, 148), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_scope, 9, 0, 148), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 41), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 41), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 46), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 46), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition_scope, 2, 0, 49), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition_scope, 2, 0, 49), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 21), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 24), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 33), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 33), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 34), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 34), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 34), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 33), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 33), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 33), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 33), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 34), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(965), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(2728), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(862), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(965), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(897), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(865), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(897), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(957), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(866), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(957), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(904), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(869), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(904), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(954), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(864), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(954), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(932), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(863), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(932), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(945), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(867), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(945), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(876), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(868), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), SHIFT_REPEAT(876), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(532), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 17), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 48), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(338), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 21), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(486), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 22), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(498), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(540), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2745), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(506), - [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(552), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(490), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 46), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 18), SHIFT(577), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), - [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(548), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 38), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 18), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 44), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 51), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 51), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 23), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 23), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 36), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 36), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 36), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 36), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 36), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 36), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 36), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 36), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 35), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 35), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 35), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 35), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 35), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 35), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(922), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(2636), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(859), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(922), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(900), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(863), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(900), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(878), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(861), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(878), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(929), + [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(864), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(929), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(908), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(866), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(908), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(871), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(860), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(871), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(943), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(862), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(943), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(894), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(865), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(894), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 19), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), + [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(489), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 52), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 24), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 23), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(334), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(483), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 24), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 23), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(601), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 10), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 10), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(520), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(495), + [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(506), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 29), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 50), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(595), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), + [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(513), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 72), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 76), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 51), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2666), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), + [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), + [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 47), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter, 4, 0, 73), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 98), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter, 3, 0, 20), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 99), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 99), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 100), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 48), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 75), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 20), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 111), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 112), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 36), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 109), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 26), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 26), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 19), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 18), - [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 47), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 26), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 26), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 17), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 110), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 122), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 48), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 44), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 110), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 122), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 35), SHIFT_REPEAT(562), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 28), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 28), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 56), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 56), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 57), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 57), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 79), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 79), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 28), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 28), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 38), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 80), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 80), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 81), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 81), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1555), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), + [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 48), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 19), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 52), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1553), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 113), + [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2054), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 126), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 113), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 124), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 124), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 126), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter, 2, 0, 18), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter, 1, 0, 4), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 85), SHIFT_REPEAT(1525), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 85), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 114), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 88), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2179), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 30), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 30), SHIFT_REPEAT(2328), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 27), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2256), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1532), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 46), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), SHIFT_REPEAT(1557), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(432), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1662), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1533), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), SHIFT_REPEAT(2400), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(364), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 29), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 50), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(484), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 110), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 133), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 134), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 33), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 135), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 111), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 33), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 124), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 125), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 30), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 31), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 53), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 138), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 139), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 140), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 141), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 21), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 37), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 37), SHIFT_REPEAT(502), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 1, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 1, 0, 10), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 55), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 55), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 42), SHIFT_REPEAT(525), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 42), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 31), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 78), SHIFT_REPEAT(418), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 78), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 50), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 30), SHIFT_REPEAT(2299), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 125), SHIFT_REPEAT(1548), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 125), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 139), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 140), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 35), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 22), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 74), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 23), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 115), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 149), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 53), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 32), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 33), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 34), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 35), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 113), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 145), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 146), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 137), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 147), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 58), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 138), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 127), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 82), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 128), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 129), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 83), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4937] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4895] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), }; enum ts_external_scanner_symbol_identifiers { @@ -130089,12 +128870,12 @@ static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_comment] = true, }, [10] = { + [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, }, [11] = { - [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, @@ -130109,10 +128890,10 @@ static const bool ts_external_scanner_states[20][EXTERNAL_TOKEN_COUNT] = { }, [14] = { [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, }, [15] = { [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, }, [16] = { [ts_external_token__string_content] = true, @@ -130154,7 +128935,7 @@ void tree_sitter_python_external_scanner_deserialize(void *, const char *, unsig TS_PUBLIC const TSLanguage *tree_sitter_python(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -130162,6 +128943,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -130172,11 +128954,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, @@ -130190,6 +128975,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_python(void) { tree_sitter_python_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "python", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 6, + }, }; return &language; } diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599b..858107de 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,11 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -79,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -93,7 +105,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -109,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,15 +141,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -145,7 +165,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); }