diff --git a/python/downgrades/5af903da088e3746aa283700a43a779302453523/old.dbscheme b/python/downgrades/5af903da088e3746aa283700a43a779302453523/old.dbscheme new file mode 100644 index 000000000000..5af903da088e --- /dev/null +++ b/python/downgrades/5af903da088e3746aa283700a43a779302453523/old.dbscheme @@ -0,0 +1,1236 @@ +/* + * This dbscheme is auto-generated by 'semmle/dbscheme_gen.py'. + * WARNING: Any modifications to this file will be lost. + * Relations can be changed by modifying master.py or + * by adding rules to dbscheme.template + */ + +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2020-07-02 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/*- DEPRECATED: External defects and metrics -*/ + +externalDefects( + unique int id : @externalDefect, + varchar(900) queryPath : string ref, + int location : @location ref, + varchar(900) message : string ref, + float severity : float ref +); + +externalMetrics( + unique int id : @externalMetric, + varchar(900) queryPath : string ref, + int location : @location ref, + float value : float ref +); + +/*- External data -*/ + +/** + * External data, loaded from CSV files during snapshot creation. See + * [Tutorial: Incorporating external data](https://help.semmle.com/wiki/display/SD/Tutorial%3A+Incorporating+external+data) + * for more information. + */ +externalData( + int id : @externalDataElement, + string path : string ref, + int column: int ref, + string value : string ref +); + +/*- DEPRECATED: Snapshot date -*/ + +snapshotDate(unique date snapshotDate : date ref); + +/*- Source location prefix -*/ + +/** + * The source location of the snapshot. + */ +sourceLocationPrefix(string prefix : string ref); + +/*- DEPRECATED: Duplicate code -*/ + +duplicateCode( + unique int id : @duplication, + string relativePath : string ref, + int equivClass : int ref +); + +similarCode( + unique int id : @similarity, + string relativePath : string ref, + int equivClass : int ref +); + +@duplication_or_similarity = @duplication | @similarity + +tokens( + int id : @duplication_or_similarity ref, + int offset : int ref, + int beginLine : int ref, + int beginColumn : int ref, + int endLine : int ref, + int endColumn : int ref +); + +/*- DEPRECATED: Version control data -*/ + +svnentries( + unique int id : @svnentry, + string revision : string ref, + string author : string ref, + date revisionDate : date ref, + int changeSize : int ref +) + +svnaffectedfiles( + int id : @svnentry ref, + int file : @file ref, + string action : string ref +) + +svnentrymsg( + unique int id : @svnentry ref, + string message : string ref +) + +svnchurn( + int commit : @svnentry ref, + int file : @file ref, + int addedLines : int ref, + int deletedLines : int ref +) + +/*- Lines of code -*/ + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref +); + +/*- Files and folders -*/ + +/** + * The location of an element. + * The location spans column `startcolumn` of line `startline` to + * column `endcolumn` of line `endline` in file `file`. + * For more information, see + * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/). + */ +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref +); + +files( + unique int id: @file, + string name: string ref +); + +folders( + unique int id: @folder, + string name: string ref +); + +@container = @file | @folder + +containerparent( + int parent: @container ref, + unique int child: @container ref +); + +/*- XML Files -*/ + +xmlEncoding( + unique int id: @file ref, + string encoding: string ref +); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref +); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref +); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref +); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref +); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref +); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref +); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref +); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref +); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/*- YAML -*/ + +#keyset[parent, idx] +yaml (unique int id: @yaml_node, + int kind: int ref, + int parent: @yaml_node_parent ref, + int idx: int ref, + string tag: string ref, + string tostring: string ref); + +case @yaml_node.kind of + 0 = @yaml_scalar_node +| 1 = @yaml_mapping_node +| 2 = @yaml_sequence_node +| 3 = @yaml_alias_node +; + +@yaml_collection_node = @yaml_mapping_node | @yaml_sequence_node; + +@yaml_node_parent = @yaml_collection_node | @file; + +yaml_anchors (unique int node: @yaml_node ref, + string anchor: string ref); + +yaml_aliases (unique int alias: @yaml_alias_node ref, + string target: string ref); + +yaml_scalars (unique int scalar: @yaml_scalar_node ref, + int style: int ref, + string value: string ref); + +yaml_errors (unique int id: @yaml_error, + string message: string ref); + +yaml_locations(unique int locatable: @yaml_locatable ref, + int location: @location_default ref); + +@yaml_locatable = @yaml_node | @yaml_error; + +/*- Python dbscheme -*/ + +/* + * Line metrics + */ +py_codelines(int id : @py_scope ref, + int count : int ref); + +py_commentlines(int id : @py_scope ref, + int count : int ref); + +py_docstringlines(int id : @py_scope ref, + int count : int ref); + +py_alllines(int id : @py_scope ref, + int count : int ref); + +/**************************** + Python dbscheme +****************************/ + +@sourceline = @file | @py_Module | @xmllocatable; + +@location = @location_ast | @location_default ; + +locations_ast(unique int id: @location_ast, + int module: @py_Module ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +file_contents(unique int file: @file ref, string contents: string ref); + +py_module_path(int module: @py_Module ref, int file: @container ref); + +variable(unique int id : @py_variable, + int scope : @py_scope ref, + varchar(1) name : string ref); + +py_line_lengths(unique int id : @py_line, + int file: @py_Module ref, + int line : int ref, + int length : int ref); + +py_extracted_version(int module : @py_Module ref, + varchar(1) version : string ref); + +/* AUTO GENERATED PART STARTS HERE */ + + +/* AnnAssign.location = 0, location */ +/* AnnAssign.value = 1, expr */ +/* AnnAssign.annotation = 2, expr */ +/* AnnAssign.target = 3, expr */ + +/* Assert.location = 0, location */ +/* Assert.test = 1, expr */ +/* Assert.msg = 2, expr */ + +/* Assign.location = 0, location */ +/* Assign.value = 1, expr */ +/* Assign.targets = 2, expr_list */ + +/* AssignExpr.location = 0, location */ +/* AssignExpr.parenthesised = 1, bool */ +/* AssignExpr.value = 2, expr */ +/* AssignExpr.target = 3, expr */ + +/* Attribute.location = 0, location */ +/* Attribute.parenthesised = 1, bool */ +/* Attribute.value = 2, expr */ +/* Attribute.attr = 3, str */ +/* Attribute.ctx = 4, expr_context */ + +/* AugAssign.location = 0, location */ +/* AugAssign.operation = 1, BinOp */ + +/* Await.location = 0, location */ +/* Await.parenthesised = 1, bool */ +/* Await.value = 2, expr */ + +/* BinaryExpr.location = 0, location */ +/* BinaryExpr.parenthesised = 1, bool */ +/* BinaryExpr.left = 2, expr */ +/* BinaryExpr.op = 3, operator */ +/* BinaryExpr.right = 4, expr */ +/* BinaryExpr = AugAssign */ + +/* BoolExpr.location = 0, location */ +/* BoolExpr.parenthesised = 1, bool */ +/* BoolExpr.op = 2, boolop */ +/* BoolExpr.values = 3, expr_list */ + +/* Break.location = 0, location */ + +/* Bytes.location = 0, location */ +/* Bytes.parenthesised = 1, bool */ +/* Bytes.s = 2, bytes */ +/* Bytes.prefix = 3, bytes */ +/* Bytes.implicitly_concatenated_parts = 4, StringPart_list */ + +/* Call.location = 0, location */ +/* Call.parenthesised = 1, bool */ +/* Call.func = 2, expr */ +/* Call.positional_args = 3, expr_list */ +/* Call.named_args = 4, dict_item_list */ + +/* Case.location = 0, location */ +/* Case.pattern = 1, pattern */ +/* Case.guard = 2, expr */ +/* Case.body = 3, stmt_list */ + +/* Class.name = 0, str */ +/* Class.body = 1, stmt_list */ +/* Class = ClassExpr */ + +/* ClassExpr.location = 0, location */ +/* ClassExpr.parenthesised = 1, bool */ +/* ClassExpr.name = 2, str */ +/* ClassExpr.bases = 3, expr_list */ +/* ClassExpr.keywords = 4, dict_item_list */ +/* ClassExpr.inner_scope = 5, Class */ +/* ClassExpr.type_parameters = 6, type_parameter_list */ + +/* Compare.location = 0, location */ +/* Compare.parenthesised = 1, bool */ +/* Compare.left = 2, expr */ +/* Compare.ops = 3, cmpop_list */ +/* Compare.comparators = 4, expr_list */ + +/* Continue.location = 0, location */ + +/* Delete.location = 0, location */ +/* Delete.targets = 1, expr_list */ + +/* Dict.location = 0, location */ +/* Dict.parenthesised = 1, bool */ +/* Dict.items = 2, dict_item_list */ + +/* DictComp.location = 0, location */ +/* DictComp.parenthesised = 1, bool */ +/* DictComp.function = 2, Function */ +/* DictComp.iterable = 3, expr */ + +/* DictUnpacking.location = 0, location */ +/* DictUnpacking.value = 1, expr */ + +/* Ellipsis.location = 0, location */ +/* Ellipsis.parenthesised = 1, bool */ + +/* ExceptGroupStmt.location = 0, location */ +/* ExceptGroupStmt.type = 1, expr */ +/* ExceptGroupStmt.name = 2, expr */ +/* ExceptGroupStmt.body = 3, stmt_list */ + +/* ExceptStmt.location = 0, location */ +/* ExceptStmt.type = 1, expr */ +/* ExceptStmt.name = 2, expr */ +/* ExceptStmt.body = 3, stmt_list */ + +/* Exec.location = 0, location */ +/* Exec.body = 1, expr */ +/* Exec.globals = 2, expr */ +/* Exec.locals = 3, expr */ + +/* ExprStmt.location = 0, location */ +/* ExprStmt.value = 1, expr */ + +/* Filter.location = 0, location */ +/* Filter.parenthesised = 1, bool */ +/* Filter.value = 2, expr */ +/* Filter.filter = 3, expr */ + +/* For.location = 0, location */ +/* For.target = 1, expr */ +/* For.iter = 2, expr */ +/* For.body = 3, stmt_list */ +/* For.orelse = 4, stmt_list */ +/* For.is_async = 5, bool */ + +/* FormattedValue.location = 0, location */ +/* FormattedValue.parenthesised = 1, bool */ +/* FormattedValue.value = 2, expr */ +/* FormattedValue.conversion = 3, str */ +/* FormattedValue.format_spec = 4, JoinedStr */ + +/* Function.name = 0, str */ +/* Function.args = 1, parameter_list */ +/* Function.vararg = 2, expr */ +/* Function.kwonlyargs = 3, expr_list */ +/* Function.kwarg = 4, expr */ +/* Function.body = 5, stmt_list */ +/* Function.is_async = 6, bool */ +/* Function.type_parameters = 7, type_parameter_list */ +/* Function = FunctionParent */ + +/* FunctionExpr.location = 0, location */ +/* FunctionExpr.parenthesised = 1, bool */ +/* FunctionExpr.name = 2, str */ +/* FunctionExpr.args = 3, arguments */ +/* FunctionExpr.returns = 4, expr */ +/* FunctionExpr.inner_scope = 5, Function */ + +/* GeneratorExp.location = 0, location */ +/* GeneratorExp.parenthesised = 1, bool */ +/* GeneratorExp.function = 2, Function */ +/* GeneratorExp.iterable = 3, expr */ + +/* Global.location = 0, location */ +/* Global.names = 1, str_list */ + +/* Guard.location = 0, location */ +/* Guard.parenthesised = 1, bool */ +/* Guard.test = 2, expr */ + +/* If.location = 0, location */ +/* If.test = 1, expr */ +/* If.body = 2, stmt_list */ +/* If.orelse = 3, stmt_list */ + +/* IfExp.location = 0, location */ +/* IfExp.parenthesised = 1, bool */ +/* IfExp.test = 2, expr */ +/* IfExp.body = 3, expr */ +/* IfExp.orelse = 4, expr */ + +/* Import.location = 0, location */ +/* Import.names = 1, alias_list */ + +/* ImportExpr.location = 0, location */ +/* ImportExpr.parenthesised = 1, bool */ +/* ImportExpr.level = 2, int */ +/* ImportExpr.name = 3, str */ +/* ImportExpr.top = 4, bool */ + +/* ImportStar.location = 0, location */ +/* ImportStar.module = 1, expr */ + +/* ImportMember.location = 0, location */ +/* ImportMember.parenthesised = 1, bool */ +/* ImportMember.module = 2, expr */ +/* ImportMember.name = 3, str */ + +/* Fstring.location = 0, location */ +/* Fstring.parenthesised = 1, bool */ +/* Fstring.values = 2, expr_list */ +/* Fstring = FormattedValue */ + +/* KeyValuePair.location = 0, location */ +/* KeyValuePair.value = 1, expr */ +/* KeyValuePair.key = 2, expr */ + +/* Lambda.location = 0, location */ +/* Lambda.parenthesised = 1, bool */ +/* Lambda.args = 2, arguments */ +/* Lambda.inner_scope = 3, Function */ + +/* List.location = 0, location */ +/* List.parenthesised = 1, bool */ +/* List.elts = 2, expr_list */ +/* List.ctx = 3, expr_context */ + +/* ListComp.location = 0, location */ +/* ListComp.parenthesised = 1, bool */ +/* ListComp.function = 2, Function */ +/* ListComp.iterable = 3, expr */ +/* ListComp.generators = 4, comprehension_list */ +/* ListComp.elt = 5, expr */ + +/* MatchStmt.location = 0, location */ +/* MatchStmt.subject = 1, expr */ +/* MatchStmt.cases = 2, stmt_list */ + +/* MatchAsPattern.location = 0, location */ +/* MatchAsPattern.parenthesised = 1, bool */ +/* MatchAsPattern.pattern = 2, pattern */ +/* MatchAsPattern.alias = 3, expr */ + +/* MatchCapturePattern.location = 0, location */ +/* MatchCapturePattern.parenthesised = 1, bool */ +/* MatchCapturePattern.variable = 2, expr */ + +/* MatchClassPattern.location = 0, location */ +/* MatchClassPattern.parenthesised = 1, bool */ +/* MatchClassPattern.class = 2, expr */ +/* MatchClassPattern.class_name = 3, expr */ +/* MatchClassPattern.positional = 4, pattern_list */ +/* MatchClassPattern.keyword = 5, pattern_list */ + +/* MatchDoubleStarPattern.location = 0, location */ +/* MatchDoubleStarPattern.parenthesised = 1, bool */ +/* MatchDoubleStarPattern.target = 2, pattern */ + +/* MatchKeyValuePattern.location = 0, location */ +/* MatchKeyValuePattern.parenthesised = 1, bool */ +/* MatchKeyValuePattern.key = 2, pattern */ +/* MatchKeyValuePattern.value = 3, pattern */ + +/* MatchKeywordPattern.location = 0, location */ +/* MatchKeywordPattern.parenthesised = 1, bool */ +/* MatchKeywordPattern.attribute = 2, expr */ +/* MatchKeywordPattern.value = 3, pattern */ + +/* MatchLiteralPattern.location = 0, location */ +/* MatchLiteralPattern.parenthesised = 1, bool */ +/* MatchLiteralPattern.literal = 2, expr */ + +/* MatchMappingPattern.location = 0, location */ +/* MatchMappingPattern.parenthesised = 1, bool */ +/* MatchMappingPattern.mappings = 2, pattern_list */ + +/* MatchOrPattern.location = 0, location */ +/* MatchOrPattern.parenthesised = 1, bool */ +/* MatchOrPattern.patterns = 2, pattern_list */ + +/* MatchSequencePattern.location = 0, location */ +/* MatchSequencePattern.parenthesised = 1, bool */ +/* MatchSequencePattern.patterns = 2, pattern_list */ + +/* MatchStarPattern.location = 0, location */ +/* MatchStarPattern.parenthesised = 1, bool */ +/* MatchStarPattern.target = 2, pattern */ + +/* MatchValuePattern.location = 0, location */ +/* MatchValuePattern.parenthesised = 1, bool */ +/* MatchValuePattern.value = 2, expr */ + +/* MatchWildcardPattern.location = 0, location */ +/* MatchWildcardPattern.parenthesised = 1, bool */ + +/* Module.name = 0, str */ +/* Module.hash = 1, str */ +/* Module.body = 2, stmt_list */ +/* Module.kind = 3, str */ + +/* Name.location = 0, location */ +/* Name.parenthesised = 1, bool */ +/* Name.variable = 2, variable */ +/* Name.ctx = 3, expr_context */ +/* Name = ParameterList */ + +/* Nonlocal.location = 0, location */ +/* Nonlocal.names = 1, str_list */ + +/* Num.location = 0, location */ +/* Num.parenthesised = 1, bool */ +/* Num.n = 2, number */ +/* Num.text = 3, number */ + +/* ParamSpec.location = 0, location */ +/* ParamSpec.name = 1, expr */ +/* ParamSpec.default = 2, expr */ + +/* Pass.location = 0, location */ + +/* PlaceHolder.location = 0, location */ +/* PlaceHolder.parenthesised = 1, bool */ +/* PlaceHolder.variable = 2, variable */ +/* PlaceHolder.ctx = 3, expr_context */ + +/* Print.location = 0, location */ +/* Print.dest = 1, expr */ +/* Print.values = 2, expr_list */ +/* Print.nl = 3, bool */ + +/* Raise.location = 0, location */ +/* Raise.exc = 1, expr */ +/* Raise.cause = 2, expr */ +/* Raise.type = 3, expr */ +/* Raise.inst = 4, expr */ +/* Raise.tback = 5, expr */ + +/* Repr.location = 0, location */ +/* Repr.parenthesised = 1, bool */ +/* Repr.value = 2, expr */ + +/* Return.location = 0, location */ +/* Return.value = 1, expr */ + +/* Set.location = 0, location */ +/* Set.parenthesised = 1, bool */ +/* Set.elts = 2, expr_list */ + +/* SetComp.location = 0, location */ +/* SetComp.parenthesised = 1, bool */ +/* SetComp.function = 2, Function */ +/* SetComp.iterable = 3, expr */ + +/* Slice.location = 0, location */ +/* Slice.parenthesised = 1, bool */ +/* Slice.start = 2, expr */ +/* Slice.stop = 3, expr */ +/* Slice.step = 4, expr */ + +/* SpecialOperation.location = 0, location */ +/* SpecialOperation.parenthesised = 1, bool */ +/* SpecialOperation.name = 2, str */ +/* SpecialOperation.arguments = 3, expr_list */ + +/* Starred.location = 0, location */ +/* Starred.parenthesised = 1, bool */ +/* Starred.value = 2, expr */ +/* Starred.ctx = 3, expr_context */ + +/* Str.location = 0, location */ +/* Str.parenthesised = 1, bool */ +/* Str.s = 2, str */ +/* Str.prefix = 3, str */ +/* Str.implicitly_concatenated_parts = 4, StringPart_list */ + +/* StringPart.text = 0, str */ +/* StringPart.location = 1, location */ +/* StringPart = StringPartList */ +/* StringPartList = BytesOrStr */ + +/* Subscript.location = 0, location */ +/* Subscript.parenthesised = 1, bool */ +/* Subscript.value = 2, expr */ +/* Subscript.index = 3, expr */ +/* Subscript.ctx = 4, expr_context */ + +/* TemplateDottedNotation.location = 0, location */ +/* TemplateDottedNotation.parenthesised = 1, bool */ +/* TemplateDottedNotation.value = 2, expr */ +/* TemplateDottedNotation.attr = 3, str */ +/* TemplateDottedNotation.ctx = 4, expr_context */ + +/* TemplateWrite.location = 0, location */ +/* TemplateWrite.value = 1, expr */ + +/* Try.location = 0, location */ +/* Try.body = 1, stmt_list */ +/* Try.orelse = 2, stmt_list */ +/* Try.handlers = 3, stmt_list */ +/* Try.finalbody = 4, stmt_list */ + +/* Tuple.location = 0, location */ +/* Tuple.parenthesised = 1, bool */ +/* Tuple.elts = 2, expr_list */ +/* Tuple.ctx = 3, expr_context */ +/* Tuple = ParameterList */ + +/* TypeAlias.location = 0, location */ +/* TypeAlias.name = 1, expr */ +/* TypeAlias.type_parameters = 2, type_parameter_list */ +/* TypeAlias.value = 3, expr */ + +/* TypeVar.location = 0, location */ +/* TypeVar.name = 1, expr */ +/* TypeVar.bound = 2, expr */ +/* TypeVar.default = 3, expr */ + +/* TypeVarTuple.location = 0, location */ +/* TypeVarTuple.name = 1, expr */ +/* TypeVarTuple.default = 2, expr */ + +/* UnaryExpr.location = 0, location */ +/* UnaryExpr.parenthesised = 1, bool */ +/* UnaryExpr.op = 2, unaryop */ +/* UnaryExpr.operand = 3, expr */ + +/* While.location = 0, location */ +/* While.test = 1, expr */ +/* While.body = 2, stmt_list */ +/* While.orelse = 3, stmt_list */ + +/* With.location = 0, location */ +/* With.context_expr = 1, expr */ +/* With.optional_vars = 2, expr */ +/* With.body = 3, stmt_list */ +/* With.is_async = 4, bool */ + +/* Yield.location = 0, location */ +/* Yield.parenthesised = 1, bool */ +/* Yield.value = 2, expr */ + +/* YieldFrom.location = 0, location */ +/* YieldFrom.parenthesised = 1, bool */ +/* YieldFrom.value = 2, expr */ + +/* Alias.value = 0, expr */ +/* Alias.asname = 1, expr */ +/* Alias = AliasList */ +/* AliasList = Import */ + +/* Arguments.kw_defaults = 0, expr_list */ +/* Arguments.defaults = 1, expr_list */ +/* Arguments.annotations = 2, expr_list */ +/* Arguments.varargannotation = 3, expr */ +/* Arguments.kwargannotation = 4, expr */ +/* Arguments.kw_annotations = 5, expr_list */ +/* Arguments = ArgumentsParent */ +/* boolean = BoolParent */ +/* Boolop = BoolExpr */ +/* string = Bytes */ +/* Cmpop = CmpopList */ +/* CmpopList = Compare */ + +/* Comprehension.location = 0, location */ +/* Comprehension.iter = 1, expr */ +/* Comprehension.target = 2, expr */ +/* Comprehension.ifs = 3, expr_list */ +/* Comprehension = ComprehensionList */ +/* ComprehensionList = ListComp */ +/* DictItem = DictItemList */ +/* DictItemList = DictItemListParent */ + +/* Expr.location = 0, location */ +/* Expr.parenthesised = 1, bool */ +/* Expr = ExprParent */ +/* ExprContext = ExprContextParent */ +/* ExprList = ExprListParent */ +/* int = ImportExpr */ + +/* Keyword.location = 0, location */ +/* Keyword.value = 1, expr */ +/* Keyword.arg = 2, str */ +/* Location = LocationParent */ +/* string = Num */ +/* Operator = BinaryExpr */ +/* ParameterList = Function */ + +/* Pattern.location = 0, location */ +/* Pattern.parenthesised = 1, bool */ +/* Pattern = PatternParent */ +/* PatternList = PatternListParent */ + +/* Stmt.location = 0, location */ +/* Stmt = StmtList */ +/* StmtList = StmtListParent */ +/* string = StrParent */ +/* StringList = StrListParent */ + +/* TypeParameter.location = 0, location */ +/* TypeParameter = TypeParameterList */ +/* TypeParameterList = TypeParameterListParent */ +/* Unaryop = UnaryExpr */ +/* Variable = VariableParent */ +py_Classes(unique int id : @py_Class, + unique int parent : @py_ClassExpr ref); + +py_Functions(unique int id : @py_Function, + unique int parent : @py_Function_parent ref); + +py_Modules(unique int id : @py_Module); + +py_StringParts(unique int id : @py_StringPart, + int parent : @py_StringPart_list ref, + int idx : int ref); + +py_StringPart_lists(unique int id : @py_StringPart_list, + unique int parent : @py_Bytes_or_Str ref); + +py_aliases(unique int id : @py_alias, + int parent : @py_alias_list ref, + int idx : int ref); + +py_alias_lists(unique int id : @py_alias_list, + unique int parent : @py_Import ref); + +py_arguments(unique int id : @py_arguments, + unique int parent : @py_arguments_parent ref); + +py_bools(int parent : @py_bool_parent ref, + int idx : int ref); + +py_boolops(unique int id : @py_boolop, + int kind: int ref, + unique int parent : @py_BoolExpr ref); + +py_bytes(varchar(1) id : string ref, + int parent : @py_Bytes ref, + int idx : int ref); + +py_cmpops(unique int id : @py_cmpop, + int kind: int ref, + int parent : @py_cmpop_list ref, + int idx : int ref); + +py_cmpop_lists(unique int id : @py_cmpop_list, + unique int parent : @py_Compare ref); + +py_comprehensions(unique int id : @py_comprehension, + int parent : @py_comprehension_list ref, + int idx : int ref); + +py_comprehension_lists(unique int id : @py_comprehension_list, + unique int parent : @py_ListComp ref); + +py_dict_items(unique int id : @py_dict_item, + int kind: int ref, + int parent : @py_dict_item_list ref, + int idx : int ref); + +py_dict_item_lists(unique int id : @py_dict_item_list, + unique int parent : @py_dict_item_list_parent ref); + +py_exprs(unique int id : @py_expr, + int kind: int ref, + int parent : @py_expr_parent ref, + int idx : int ref); + +py_expr_contexts(unique int id : @py_expr_context, + int kind: int ref, + unique int parent : @py_expr_context_parent ref); + +py_expr_lists(unique int id : @py_expr_list, + int parent : @py_expr_list_parent ref, + int idx : int ref); + +py_ints(int id : int ref, + unique int parent : @py_ImportExpr ref); + +py_locations(unique int id : @location ref, + unique int parent : @py_location_parent ref); + +py_numbers(varchar(1) id : string ref, + int parent : @py_Num ref, + int idx : int ref); + +py_operators(unique int id : @py_operator, + int kind: int ref, + unique int parent : @py_BinaryExpr ref); + +py_parameter_lists(unique int id : @py_parameter_list, + unique int parent : @py_Function ref); + +py_patterns(unique int id : @py_pattern, + int kind: int ref, + int parent : @py_pattern_parent ref, + int idx : int ref); + +py_pattern_lists(unique int id : @py_pattern_list, + int parent : @py_pattern_list_parent ref, + int idx : int ref); + +py_stmts(unique int id : @py_stmt, + int kind: int ref, + int parent : @py_stmt_list ref, + int idx : int ref); + +py_stmt_lists(unique int id : @py_stmt_list, + int parent : @py_stmt_list_parent ref, + int idx : int ref); + +py_strs(varchar(1) id : string ref, + int parent : @py_str_parent ref, + int idx : int ref); + +py_str_lists(unique int id : @py_str_list, + unique int parent : @py_str_list_parent ref); + +py_type_parameters(unique int id : @py_type_parameter, + int kind: int ref, + int parent : @py_type_parameter_list ref, + int idx : int ref); + +py_type_parameter_lists(unique int id : @py_type_parameter_list, + unique int parent : @py_type_parameter_list_parent ref); + +py_unaryops(unique int id : @py_unaryop, + int kind: int ref, + unique int parent : @py_UnaryExpr ref); + +py_variables(int id : @py_variable ref, + unique int parent : @py_variable_parent ref); + +case @py_boolop.kind of + 0 = @py_And +| 1 = @py_Or; + +case @py_cmpop.kind of + 0 = @py_Eq +| 1 = @py_Gt +| 2 = @py_GtE +| 3 = @py_In +| 4 = @py_Is +| 5 = @py_IsNot +| 6 = @py_Lt +| 7 = @py_LtE +| 8 = @py_NotEq +| 9 = @py_NotIn; + +case @py_dict_item.kind of + 0 = @py_DictUnpacking +| 1 = @py_KeyValuePair +| 2 = @py_keyword; + +case @py_expr.kind of + 0 = @py_Attribute +| 1 = @py_BinaryExpr +| 2 = @py_BoolExpr +| 3 = @py_Bytes +| 4 = @py_Call +| 5 = @py_ClassExpr +| 6 = @py_Compare +| 7 = @py_Dict +| 8 = @py_DictComp +| 9 = @py_Ellipsis +| 10 = @py_FunctionExpr +| 11 = @py_GeneratorExp +| 12 = @py_IfExp +| 13 = @py_ImportExpr +| 14 = @py_ImportMember +| 15 = @py_Lambda +| 16 = @py_List +| 17 = @py_ListComp +| 18 = @py_Guard +| 19 = @py_Name +| 20 = @py_Num +| 21 = @py_Repr +| 22 = @py_Set +| 23 = @py_SetComp +| 24 = @py_Slice +| 25 = @py_Starred +| 26 = @py_Str +| 27 = @py_Subscript +| 28 = @py_Tuple +| 29 = @py_UnaryExpr +| 30 = @py_Yield +| 31 = @py_YieldFrom +| 32 = @py_TemplateDottedNotation +| 33 = @py_Filter +| 34 = @py_PlaceHolder +| 35 = @py_Await +| 36 = @py_Fstring +| 37 = @py_FormattedValue +| 38 = @py_AssignExpr +| 39 = @py_SpecialOperation; + +case @py_expr_context.kind of + 0 = @py_AugLoad +| 1 = @py_AugStore +| 2 = @py_Del +| 3 = @py_Load +| 4 = @py_Param +| 5 = @py_Store; + +case @py_operator.kind of + 0 = @py_Add +| 1 = @py_BitAnd +| 2 = @py_BitOr +| 3 = @py_BitXor +| 4 = @py_Div +| 5 = @py_FloorDiv +| 6 = @py_LShift +| 7 = @py_Mod +| 8 = @py_Mult +| 9 = @py_Pow +| 10 = @py_RShift +| 11 = @py_Sub +| 12 = @py_MatMult; + +case @py_pattern.kind of + 0 = @py_MatchAsPattern +| 1 = @py_MatchOrPattern +| 2 = @py_MatchLiteralPattern +| 3 = @py_MatchCapturePattern +| 4 = @py_MatchWildcardPattern +| 5 = @py_MatchValuePattern +| 6 = @py_MatchSequencePattern +| 7 = @py_MatchStarPattern +| 8 = @py_MatchMappingPattern +| 9 = @py_MatchDoubleStarPattern +| 10 = @py_MatchKeyValuePattern +| 11 = @py_MatchClassPattern +| 12 = @py_MatchKeywordPattern; + +case @py_stmt.kind of + 0 = @py_Assert +| 1 = @py_Assign +| 2 = @py_AugAssign +| 3 = @py_Break +| 4 = @py_Continue +| 5 = @py_Delete +| 6 = @py_ExceptStmt +| 7 = @py_ExceptGroupStmt +| 8 = @py_Exec +| 9 = @py_Expr_stmt +| 10 = @py_For +| 11 = @py_Global +| 12 = @py_If +| 13 = @py_Import +| 14 = @py_ImportStar +| 15 = @py_MatchStmt +| 16 = @py_Case +| 17 = @py_Nonlocal +| 18 = @py_Pass +| 19 = @py_Print +| 20 = @py_Raise +| 21 = @py_Return +| 22 = @py_Try +| 23 = @py_While +| 24 = @py_With +| 25 = @py_TemplateWrite +| 26 = @py_AnnAssign +| 27 = @py_TypeAlias; + +case @py_type_parameter.kind of + 0 = @py_ParamSpec +| 1 = @py_TypeVar +| 2 = @py_TypeVarTuple; + +case @py_unaryop.kind of + 0 = @py_Invert +| 1 = @py_Not +| 2 = @py_UAdd +| 3 = @py_USub; + +@py_Bytes_or_Str = @py_Bytes | @py_Str; + +@py_Function_parent = @py_DictComp | @py_FunctionExpr | @py_GeneratorExp | @py_Lambda | @py_ListComp | @py_SetComp; + +@py_arguments_parent = @py_FunctionExpr | @py_Lambda; + +@py_ast_node = @py_Class | @py_Function | @py_Module | @py_StringPart | @py_comprehension | @py_dict_item | @py_expr | @py_pattern | @py_stmt | @py_type_parameter; + +@py_bool_parent = @py_For | @py_Function | @py_Print | @py_With | @py_expr | @py_pattern; + +@py_dict_item_list_parent = @py_Call | @py_ClassExpr | @py_Dict; + +@py_expr_context_parent = @py_Attribute | @py_List | @py_Name | @py_PlaceHolder | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_Tuple; + +@py_expr_list_parent = @py_Assign | @py_BoolExpr | @py_Call | @py_ClassExpr | @py_Compare | @py_Delete | @py_Fstring | @py_Function | @py_List | @py_Print | @py_Set | @py_SpecialOperation | @py_Tuple | @py_arguments | @py_comprehension; + +@py_expr_or_stmt = @py_expr | @py_stmt; + +@py_expr_parent = @py_AnnAssign | @py_Assert | @py_Assign | @py_AssignExpr | @py_Attribute | @py_AugAssign | @py_Await | @py_BinaryExpr | @py_Call | @py_Case | @py_Compare | @py_DictComp | @py_DictUnpacking | @py_ExceptGroupStmt | @py_ExceptStmt | @py_Exec | @py_Expr_stmt | @py_Filter | @py_For | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_GeneratorExp | @py_Guard | @py_If | @py_IfExp | @py_ImportMember | @py_ImportStar | @py_KeyValuePair | @py_ListComp | @py_MatchAsPattern | @py_MatchCapturePattern | @py_MatchClassPattern | @py_MatchKeywordPattern | @py_MatchLiteralPattern | @py_MatchStmt | @py_MatchValuePattern | @py_ParamSpec | @py_Print | @py_Raise | @py_Repr | @py_Return | @py_SetComp | @py_Slice | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_TemplateWrite | @py_TypeAlias | @py_TypeVar | @py_TypeVarTuple | @py_UnaryExpr | @py_While | @py_With | @py_Yield | @py_YieldFrom | @py_alias | @py_arguments | @py_comprehension | @py_expr_list | @py_keyword | @py_parameter_list; + +@py_location_parent = @py_DictUnpacking | @py_KeyValuePair | @py_StringPart | @py_comprehension | @py_expr | @py_keyword | @py_pattern | @py_stmt | @py_type_parameter; + +@py_parameter = @py_Name | @py_Tuple; + +@py_pattern_list_parent = @py_MatchClassPattern | @py_MatchMappingPattern | @py_MatchOrPattern | @py_MatchSequencePattern; + +@py_pattern_parent = @py_Case | @py_MatchAsPattern | @py_MatchDoubleStarPattern | @py_MatchKeyValuePattern | @py_MatchKeywordPattern | @py_MatchStarPattern | @py_pattern_list; + +@py_scope = @py_Class | @py_Function | @py_Module; + +@py_stmt_list_parent = @py_Case | @py_Class | @py_ExceptGroupStmt | @py_ExceptStmt | @py_For | @py_Function | @py_If | @py_MatchStmt | @py_Module | @py_Try | @py_While | @py_With; + +@py_str_list_parent = @py_Global | @py_Nonlocal; + +@py_str_parent = @py_Attribute | @py_Class | @py_ClassExpr | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_ImportExpr | @py_ImportMember | @py_Module | @py_SpecialOperation | @py_Str | @py_StringPart | @py_TemplateDottedNotation | @py_keyword | @py_str_list; + +@py_type_parameter_list_parent = @py_ClassExpr | @py_Function | @py_TypeAlias; + +@py_variable_parent = @py_Name | @py_PlaceHolder; + + +/* + * End of auto-generated part + */ + + + +/* Map relative names to absolute names for imports */ +py_absolute_names(int module : @py_Module ref, + varchar(1) relname : string ref, + varchar(1) absname : string ref); + +py_exports(int id : @py_Module ref, + varchar(1) name : string ref); + +/* Successor information */ +py_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_true_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_exception_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_false_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_flow_bb_node(unique int flownode : @py_flow_node, + int realnode : @py_ast_node ref, + int basicblock : @py_flow_node ref, + int index : int ref); + +py_scope_flow(int flow : @py_flow_node ref, + int scope : @py_scope ref, + int kind : int ref); + +py_idoms(unique int node : @py_flow_node ref, + int immediate_dominator : @py_flow_node ref); + +py_ssa_phi(int phi : @py_ssa_var ref, + int arg: @py_ssa_var ref); + +py_ssa_var(unique int id : @py_ssa_var, + int var : @py_variable ref); + +py_ssa_use(int node: @py_flow_node ref, + int var : @py_ssa_var ref); + +py_ssa_defn(unique int id : @py_ssa_var ref, + int node: @py_flow_node ref); + +@py_base_var = @py_variable | @py_ssa_var; + +py_scopes(unique int node : @py_expr_or_stmt ref, + int scope : @py_scope ref); + +py_scope_location(unique int id : @location ref, + unique int scope : @py_scope ref); + +py_flags_versioned(varchar(1) name : string ref, + varchar(1) value : string ref, + varchar(1) version : string ref); + +py_syntax_error_versioned(unique int id : @location ref, + varchar(1) message : string ref, + varchar(1) version : string ref); + +py_comments(unique int id : @py_comment, + varchar(1) text : string ref, + unique int location : @location ref); + +/* Type information support */ + +py_cobjects(unique int obj : @py_cobject); + +py_cobjecttypes(unique int obj : @py_cobject ref, + int typeof : @py_cobject ref); + +py_cobjectnames(unique int obj : @py_cobject ref, + varchar(1) name : string ref); + +/* Kind should be 0 for introspection, > 0 from source, as follows: + 1 from C extension source + */ +py_cobject_sources(int obj : @py_cobject ref, + int kind : int ref); + +py_cmembers_versioned(int object : @py_cobject ref, + varchar(1) name : string ref, + int member : @py_cobject ref, + varchar(1) version : string ref); + +py_citems(int object : @py_cobject ref, + int index : int ref, + int member : @py_cobject ref); + +ext_argtype(int funcid : @py_object ref, + int arg : int ref, + int typeid : @py_object ref); + +ext_rettype(int funcid : @py_object ref, + int typeid : @py_object ref); + +ext_proptype(int propid : @py_object ref, + int typeid : @py_object ref); + +ext_argreturn(int funcid : @py_object ref, + int arg : int ref); + +py_special_objects(unique int obj : @py_cobject ref, + unique varchar(1) name : string ref); + +py_decorated_object(int object : @py_object ref, + int level: int ref); + +@py_object = @py_cobject | @py_flow_node; + +@py_source_element = @py_ast_node | @container; diff --git a/python/downgrades/5af903da088e3746aa283700a43a779302453523/py_exprs.ql b/python/downgrades/5af903da088e3746aa283700a43a779302453523/py_exprs.ql new file mode 100644 index 000000000000..567ceec31caa --- /dev/null +++ b/python/downgrades/5af903da088e3746aa283700a43a779302453523/py_exprs.ql @@ -0,0 +1,42 @@ +// We must wrap the DB types, as these cannot appear in argument lists +class TypeParameter_ extends @py_type_parameter { + string toString() { result = "TypeParameter" } +} + +class Expr_ extends @py_expr { + string toString() { result = "Expr" } +} + +class ExprParent_ extends @py_expr_parent { + string toString() { result = "ExprParent" } +} + +class TypeVar_ extends @py_TypeVar, TypeParameter_ { + override string toString() { result = "TypeVar" } +} + +class TypeVarTuple_ extends @py_TypeVarTuple, TypeParameter_ { + override string toString() { result = "TypeVarTuple" } +} + +class ParamSpec_ extends @py_ParamSpec, TypeParameter_ { + override string toString() { result = "ParamSpec" } +} + +// From the dbscheme: +// py_exprs(unique int id : @py_expr, +// int kind: int ref, +// int parent : @py_expr_parent ref, +// int idx : int ref); +query predicate py_exprs_without_type_parameter_defaults( + Expr_ id, int kind, ExprParent_ parent, int idx +) { + py_exprs(id, kind, parent, idx) and + // From the dbscheme + // /* ParamSpec.default = 2, expr */ + // /* TypeVar.default = 3, expr */ + // /* TypeVarTuple.default = 2, expr */ + (parent instanceof ParamSpec_ implies idx != 2) and + (parent instanceof TypeVar_ implies idx != 3) and + (parent instanceof TypeVarTuple_ implies idx != 2) +} diff --git a/python/downgrades/5af903da088e3746aa283700a43a779302453523/semmlecode.python.dbscheme b/python/downgrades/5af903da088e3746aa283700a43a779302453523/semmlecode.python.dbscheme new file mode 100644 index 000000000000..728c6d65e61d --- /dev/null +++ b/python/downgrades/5af903da088e3746aa283700a43a779302453523/semmlecode.python.dbscheme @@ -0,0 +1,1233 @@ +/* + * This dbscheme is auto-generated by 'semmle/dbscheme_gen.py'. + * WARNING: Any modifications to this file will be lost. + * Relations can be changed by modifying master.py or + * by adding rules to dbscheme.template + */ + +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2020-07-02 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/*- DEPRECATED: External defects and metrics -*/ + +externalDefects( + unique int id : @externalDefect, + varchar(900) queryPath : string ref, + int location : @location ref, + varchar(900) message : string ref, + float severity : float ref +); + +externalMetrics( + unique int id : @externalMetric, + varchar(900) queryPath : string ref, + int location : @location ref, + float value : float ref +); + +/*- External data -*/ + +/** + * External data, loaded from CSV files during snapshot creation. See + * [Tutorial: Incorporating external data](https://help.semmle.com/wiki/display/SD/Tutorial%3A+Incorporating+external+data) + * for more information. + */ +externalData( + int id : @externalDataElement, + string path : string ref, + int column: int ref, + string value : string ref +); + +/*- DEPRECATED: Snapshot date -*/ + +snapshotDate(unique date snapshotDate : date ref); + +/*- Source location prefix -*/ + +/** + * The source location of the snapshot. + */ +sourceLocationPrefix(string prefix : string ref); + +/*- DEPRECATED: Duplicate code -*/ + +duplicateCode( + unique int id : @duplication, + string relativePath : string ref, + int equivClass : int ref +); + +similarCode( + unique int id : @similarity, + string relativePath : string ref, + int equivClass : int ref +); + +@duplication_or_similarity = @duplication | @similarity + +tokens( + int id : @duplication_or_similarity ref, + int offset : int ref, + int beginLine : int ref, + int beginColumn : int ref, + int endLine : int ref, + int endColumn : int ref +); + +/*- DEPRECATED: Version control data -*/ + +svnentries( + unique int id : @svnentry, + string revision : string ref, + string author : string ref, + date revisionDate : date ref, + int changeSize : int ref +) + +svnaffectedfiles( + int id : @svnentry ref, + int file : @file ref, + string action : string ref +) + +svnentrymsg( + unique int id : @svnentry ref, + string message : string ref +) + +svnchurn( + int commit : @svnentry ref, + int file : @file ref, + int addedLines : int ref, + int deletedLines : int ref +) + +/*- Lines of code -*/ + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref +); + +/*- Files and folders -*/ + +/** + * The location of an element. + * The location spans column `startcolumn` of line `startline` to + * column `endcolumn` of line `endline` in file `file`. + * For more information, see + * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/). + */ +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref +); + +files( + unique int id: @file, + string name: string ref +); + +folders( + unique int id: @folder, + string name: string ref +); + +@container = @file | @folder + +containerparent( + int parent: @container ref, + unique int child: @container ref +); + +/*- XML Files -*/ + +xmlEncoding( + unique int id: @file ref, + string encoding: string ref +); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref +); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref +); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref +); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref +); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref +); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref +); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref +); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref +); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/*- YAML -*/ + +#keyset[parent, idx] +yaml (unique int id: @yaml_node, + int kind: int ref, + int parent: @yaml_node_parent ref, + int idx: int ref, + string tag: string ref, + string tostring: string ref); + +case @yaml_node.kind of + 0 = @yaml_scalar_node +| 1 = @yaml_mapping_node +| 2 = @yaml_sequence_node +| 3 = @yaml_alias_node +; + +@yaml_collection_node = @yaml_mapping_node | @yaml_sequence_node; + +@yaml_node_parent = @yaml_collection_node | @file; + +yaml_anchors (unique int node: @yaml_node ref, + string anchor: string ref); + +yaml_aliases (unique int alias: @yaml_alias_node ref, + string target: string ref); + +yaml_scalars (unique int scalar: @yaml_scalar_node ref, + int style: int ref, + string value: string ref); + +yaml_errors (unique int id: @yaml_error, + string message: string ref); + +yaml_locations(unique int locatable: @yaml_locatable ref, + int location: @location_default ref); + +@yaml_locatable = @yaml_node | @yaml_error; + +/*- Python dbscheme -*/ + +/* + * Line metrics + */ +py_codelines(int id : @py_scope ref, + int count : int ref); + +py_commentlines(int id : @py_scope ref, + int count : int ref); + +py_docstringlines(int id : @py_scope ref, + int count : int ref); + +py_alllines(int id : @py_scope ref, + int count : int ref); + +/**************************** + Python dbscheme +****************************/ + +@sourceline = @file | @py_Module | @xmllocatable; + +@location = @location_ast | @location_default ; + +locations_ast(unique int id: @location_ast, + int module: @py_Module ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +file_contents(unique int file: @file ref, string contents: string ref); + +py_module_path(int module: @py_Module ref, int file: @container ref); + +variable(unique int id : @py_variable, + int scope : @py_scope ref, + varchar(1) name : string ref); + +py_line_lengths(unique int id : @py_line, + int file: @py_Module ref, + int line : int ref, + int length : int ref); + +py_extracted_version(int module : @py_Module ref, + varchar(1) version : string ref); + +/* AUTO GENERATED PART STARTS HERE */ + + +/* AnnAssign.location = 0, location */ +/* AnnAssign.value = 1, expr */ +/* AnnAssign.annotation = 2, expr */ +/* AnnAssign.target = 3, expr */ + +/* Assert.location = 0, location */ +/* Assert.test = 1, expr */ +/* Assert.msg = 2, expr */ + +/* Assign.location = 0, location */ +/* Assign.value = 1, expr */ +/* Assign.targets = 2, expr_list */ + +/* AssignExpr.location = 0, location */ +/* AssignExpr.parenthesised = 1, bool */ +/* AssignExpr.value = 2, expr */ +/* AssignExpr.target = 3, expr */ + +/* Attribute.location = 0, location */ +/* Attribute.parenthesised = 1, bool */ +/* Attribute.value = 2, expr */ +/* Attribute.attr = 3, str */ +/* Attribute.ctx = 4, expr_context */ + +/* AugAssign.location = 0, location */ +/* AugAssign.operation = 1, BinOp */ + +/* Await.location = 0, location */ +/* Await.parenthesised = 1, bool */ +/* Await.value = 2, expr */ + +/* BinaryExpr.location = 0, location */ +/* BinaryExpr.parenthesised = 1, bool */ +/* BinaryExpr.left = 2, expr */ +/* BinaryExpr.op = 3, operator */ +/* BinaryExpr.right = 4, expr */ +/* BinaryExpr = AugAssign */ + +/* BoolExpr.location = 0, location */ +/* BoolExpr.parenthesised = 1, bool */ +/* BoolExpr.op = 2, boolop */ +/* BoolExpr.values = 3, expr_list */ + +/* Break.location = 0, location */ + +/* Bytes.location = 0, location */ +/* Bytes.parenthesised = 1, bool */ +/* Bytes.s = 2, bytes */ +/* Bytes.prefix = 3, bytes */ +/* Bytes.implicitly_concatenated_parts = 4, StringPart_list */ + +/* Call.location = 0, location */ +/* Call.parenthesised = 1, bool */ +/* Call.func = 2, expr */ +/* Call.positional_args = 3, expr_list */ +/* Call.named_args = 4, dict_item_list */ + +/* Case.location = 0, location */ +/* Case.pattern = 1, pattern */ +/* Case.guard = 2, expr */ +/* Case.body = 3, stmt_list */ + +/* Class.name = 0, str */ +/* Class.body = 1, stmt_list */ +/* Class = ClassExpr */ + +/* ClassExpr.location = 0, location */ +/* ClassExpr.parenthesised = 1, bool */ +/* ClassExpr.name = 2, str */ +/* ClassExpr.bases = 3, expr_list */ +/* ClassExpr.keywords = 4, dict_item_list */ +/* ClassExpr.inner_scope = 5, Class */ +/* ClassExpr.type_parameters = 6, type_parameter_list */ + +/* Compare.location = 0, location */ +/* Compare.parenthesised = 1, bool */ +/* Compare.left = 2, expr */ +/* Compare.ops = 3, cmpop_list */ +/* Compare.comparators = 4, expr_list */ + +/* Continue.location = 0, location */ + +/* Delete.location = 0, location */ +/* Delete.targets = 1, expr_list */ + +/* Dict.location = 0, location */ +/* Dict.parenthesised = 1, bool */ +/* Dict.items = 2, dict_item_list */ + +/* DictComp.location = 0, location */ +/* DictComp.parenthesised = 1, bool */ +/* DictComp.function = 2, Function */ +/* DictComp.iterable = 3, expr */ + +/* DictUnpacking.location = 0, location */ +/* DictUnpacking.value = 1, expr */ + +/* Ellipsis.location = 0, location */ +/* Ellipsis.parenthesised = 1, bool */ + +/* ExceptGroupStmt.location = 0, location */ +/* ExceptGroupStmt.type = 1, expr */ +/* ExceptGroupStmt.name = 2, expr */ +/* ExceptGroupStmt.body = 3, stmt_list */ + +/* ExceptStmt.location = 0, location */ +/* ExceptStmt.type = 1, expr */ +/* ExceptStmt.name = 2, expr */ +/* ExceptStmt.body = 3, stmt_list */ + +/* Exec.location = 0, location */ +/* Exec.body = 1, expr */ +/* Exec.globals = 2, expr */ +/* Exec.locals = 3, expr */ + +/* ExprStmt.location = 0, location */ +/* ExprStmt.value = 1, expr */ + +/* Filter.location = 0, location */ +/* Filter.parenthesised = 1, bool */ +/* Filter.value = 2, expr */ +/* Filter.filter = 3, expr */ + +/* For.location = 0, location */ +/* For.target = 1, expr */ +/* For.iter = 2, expr */ +/* For.body = 3, stmt_list */ +/* For.orelse = 4, stmt_list */ +/* For.is_async = 5, bool */ + +/* FormattedValue.location = 0, location */ +/* FormattedValue.parenthesised = 1, bool */ +/* FormattedValue.value = 2, expr */ +/* FormattedValue.conversion = 3, str */ +/* FormattedValue.format_spec = 4, JoinedStr */ + +/* Function.name = 0, str */ +/* Function.args = 1, parameter_list */ +/* Function.vararg = 2, expr */ +/* Function.kwonlyargs = 3, expr_list */ +/* Function.kwarg = 4, expr */ +/* Function.body = 5, stmt_list */ +/* Function.is_async = 6, bool */ +/* Function.type_parameters = 7, type_parameter_list */ +/* Function = FunctionParent */ + +/* FunctionExpr.location = 0, location */ +/* FunctionExpr.parenthesised = 1, bool */ +/* FunctionExpr.name = 2, str */ +/* FunctionExpr.args = 3, arguments */ +/* FunctionExpr.returns = 4, expr */ +/* FunctionExpr.inner_scope = 5, Function */ + +/* GeneratorExp.location = 0, location */ +/* GeneratorExp.parenthesised = 1, bool */ +/* GeneratorExp.function = 2, Function */ +/* GeneratorExp.iterable = 3, expr */ + +/* Global.location = 0, location */ +/* Global.names = 1, str_list */ + +/* Guard.location = 0, location */ +/* Guard.parenthesised = 1, bool */ +/* Guard.test = 2, expr */ + +/* If.location = 0, location */ +/* If.test = 1, expr */ +/* If.body = 2, stmt_list */ +/* If.orelse = 3, stmt_list */ + +/* IfExp.location = 0, location */ +/* IfExp.parenthesised = 1, bool */ +/* IfExp.test = 2, expr */ +/* IfExp.body = 3, expr */ +/* IfExp.orelse = 4, expr */ + +/* Import.location = 0, location */ +/* Import.names = 1, alias_list */ + +/* ImportExpr.location = 0, location */ +/* ImportExpr.parenthesised = 1, bool */ +/* ImportExpr.level = 2, int */ +/* ImportExpr.name = 3, str */ +/* ImportExpr.top = 4, bool */ + +/* ImportStar.location = 0, location */ +/* ImportStar.module = 1, expr */ + +/* ImportMember.location = 0, location */ +/* ImportMember.parenthesised = 1, bool */ +/* ImportMember.module = 2, expr */ +/* ImportMember.name = 3, str */ + +/* Fstring.location = 0, location */ +/* Fstring.parenthesised = 1, bool */ +/* Fstring.values = 2, expr_list */ +/* Fstring = FormattedValue */ + +/* KeyValuePair.location = 0, location */ +/* KeyValuePair.value = 1, expr */ +/* KeyValuePair.key = 2, expr */ + +/* Lambda.location = 0, location */ +/* Lambda.parenthesised = 1, bool */ +/* Lambda.args = 2, arguments */ +/* Lambda.inner_scope = 3, Function */ + +/* List.location = 0, location */ +/* List.parenthesised = 1, bool */ +/* List.elts = 2, expr_list */ +/* List.ctx = 3, expr_context */ + +/* ListComp.location = 0, location */ +/* ListComp.parenthesised = 1, bool */ +/* ListComp.function = 2, Function */ +/* ListComp.iterable = 3, expr */ +/* ListComp.generators = 4, comprehension_list */ +/* ListComp.elt = 5, expr */ + +/* MatchStmt.location = 0, location */ +/* MatchStmt.subject = 1, expr */ +/* MatchStmt.cases = 2, stmt_list */ + +/* MatchAsPattern.location = 0, location */ +/* MatchAsPattern.parenthesised = 1, bool */ +/* MatchAsPattern.pattern = 2, pattern */ +/* MatchAsPattern.alias = 3, expr */ + +/* MatchCapturePattern.location = 0, location */ +/* MatchCapturePattern.parenthesised = 1, bool */ +/* MatchCapturePattern.variable = 2, expr */ + +/* MatchClassPattern.location = 0, location */ +/* MatchClassPattern.parenthesised = 1, bool */ +/* MatchClassPattern.class = 2, expr */ +/* MatchClassPattern.class_name = 3, expr */ +/* MatchClassPattern.positional = 4, pattern_list */ +/* MatchClassPattern.keyword = 5, pattern_list */ + +/* MatchDoubleStarPattern.location = 0, location */ +/* MatchDoubleStarPattern.parenthesised = 1, bool */ +/* MatchDoubleStarPattern.target = 2, pattern */ + +/* MatchKeyValuePattern.location = 0, location */ +/* MatchKeyValuePattern.parenthesised = 1, bool */ +/* MatchKeyValuePattern.key = 2, pattern */ +/* MatchKeyValuePattern.value = 3, pattern */ + +/* MatchKeywordPattern.location = 0, location */ +/* MatchKeywordPattern.parenthesised = 1, bool */ +/* MatchKeywordPattern.attribute = 2, expr */ +/* MatchKeywordPattern.value = 3, pattern */ + +/* MatchLiteralPattern.location = 0, location */ +/* MatchLiteralPattern.parenthesised = 1, bool */ +/* MatchLiteralPattern.literal = 2, expr */ + +/* MatchMappingPattern.location = 0, location */ +/* MatchMappingPattern.parenthesised = 1, bool */ +/* MatchMappingPattern.mappings = 2, pattern_list */ + +/* MatchOrPattern.location = 0, location */ +/* MatchOrPattern.parenthesised = 1, bool */ +/* MatchOrPattern.patterns = 2, pattern_list */ + +/* MatchSequencePattern.location = 0, location */ +/* MatchSequencePattern.parenthesised = 1, bool */ +/* MatchSequencePattern.patterns = 2, pattern_list */ + +/* MatchStarPattern.location = 0, location */ +/* MatchStarPattern.parenthesised = 1, bool */ +/* MatchStarPattern.target = 2, pattern */ + +/* MatchValuePattern.location = 0, location */ +/* MatchValuePattern.parenthesised = 1, bool */ +/* MatchValuePattern.value = 2, expr */ + +/* MatchWildcardPattern.location = 0, location */ +/* MatchWildcardPattern.parenthesised = 1, bool */ + +/* Module.name = 0, str */ +/* Module.hash = 1, str */ +/* Module.body = 2, stmt_list */ +/* Module.kind = 3, str */ + +/* Name.location = 0, location */ +/* Name.parenthesised = 1, bool */ +/* Name.variable = 2, variable */ +/* Name.ctx = 3, expr_context */ +/* Name = ParameterList */ + +/* Nonlocal.location = 0, location */ +/* Nonlocal.names = 1, str_list */ + +/* Num.location = 0, location */ +/* Num.parenthesised = 1, bool */ +/* Num.n = 2, number */ +/* Num.text = 3, number */ + +/* ParamSpec.location = 0, location */ +/* ParamSpec.name = 1, expr */ + +/* Pass.location = 0, location */ + +/* PlaceHolder.location = 0, location */ +/* PlaceHolder.parenthesised = 1, bool */ +/* PlaceHolder.variable = 2, variable */ +/* PlaceHolder.ctx = 3, expr_context */ + +/* Print.location = 0, location */ +/* Print.dest = 1, expr */ +/* Print.values = 2, expr_list */ +/* Print.nl = 3, bool */ + +/* Raise.location = 0, location */ +/* Raise.exc = 1, expr */ +/* Raise.cause = 2, expr */ +/* Raise.type = 3, expr */ +/* Raise.inst = 4, expr */ +/* Raise.tback = 5, expr */ + +/* Repr.location = 0, location */ +/* Repr.parenthesised = 1, bool */ +/* Repr.value = 2, expr */ + +/* Return.location = 0, location */ +/* Return.value = 1, expr */ + +/* Set.location = 0, location */ +/* Set.parenthesised = 1, bool */ +/* Set.elts = 2, expr_list */ + +/* SetComp.location = 0, location */ +/* SetComp.parenthesised = 1, bool */ +/* SetComp.function = 2, Function */ +/* SetComp.iterable = 3, expr */ + +/* Slice.location = 0, location */ +/* Slice.parenthesised = 1, bool */ +/* Slice.start = 2, expr */ +/* Slice.stop = 3, expr */ +/* Slice.step = 4, expr */ + +/* SpecialOperation.location = 0, location */ +/* SpecialOperation.parenthesised = 1, bool */ +/* SpecialOperation.name = 2, str */ +/* SpecialOperation.arguments = 3, expr_list */ + +/* Starred.location = 0, location */ +/* Starred.parenthesised = 1, bool */ +/* Starred.value = 2, expr */ +/* Starred.ctx = 3, expr_context */ + +/* Str.location = 0, location */ +/* Str.parenthesised = 1, bool */ +/* Str.s = 2, str */ +/* Str.prefix = 3, str */ +/* Str.implicitly_concatenated_parts = 4, StringPart_list */ + +/* StringPart.text = 0, str */ +/* StringPart.location = 1, location */ +/* StringPart = StringPartList */ +/* StringPartList = BytesOrStr */ + +/* Subscript.location = 0, location */ +/* Subscript.parenthesised = 1, bool */ +/* Subscript.value = 2, expr */ +/* Subscript.index = 3, expr */ +/* Subscript.ctx = 4, expr_context */ + +/* TemplateDottedNotation.location = 0, location */ +/* TemplateDottedNotation.parenthesised = 1, bool */ +/* TemplateDottedNotation.value = 2, expr */ +/* TemplateDottedNotation.attr = 3, str */ +/* TemplateDottedNotation.ctx = 4, expr_context */ + +/* TemplateWrite.location = 0, location */ +/* TemplateWrite.value = 1, expr */ + +/* Try.location = 0, location */ +/* Try.body = 1, stmt_list */ +/* Try.orelse = 2, stmt_list */ +/* Try.handlers = 3, stmt_list */ +/* Try.finalbody = 4, stmt_list */ + +/* Tuple.location = 0, location */ +/* Tuple.parenthesised = 1, bool */ +/* Tuple.elts = 2, expr_list */ +/* Tuple.ctx = 3, expr_context */ +/* Tuple = ParameterList */ + +/* TypeAlias.location = 0, location */ +/* TypeAlias.name = 1, expr */ +/* TypeAlias.type_parameters = 2, type_parameter_list */ +/* TypeAlias.value = 3, expr */ + +/* TypeVar.location = 0, location */ +/* TypeVar.name = 1, expr */ +/* TypeVar.bound = 2, expr */ + +/* TypeVarTuple.location = 0, location */ +/* TypeVarTuple.name = 1, expr */ + +/* UnaryExpr.location = 0, location */ +/* UnaryExpr.parenthesised = 1, bool */ +/* UnaryExpr.op = 2, unaryop */ +/* UnaryExpr.operand = 3, expr */ + +/* While.location = 0, location */ +/* While.test = 1, expr */ +/* While.body = 2, stmt_list */ +/* While.orelse = 3, stmt_list */ + +/* With.location = 0, location */ +/* With.context_expr = 1, expr */ +/* With.optional_vars = 2, expr */ +/* With.body = 3, stmt_list */ +/* With.is_async = 4, bool */ + +/* Yield.location = 0, location */ +/* Yield.parenthesised = 1, bool */ +/* Yield.value = 2, expr */ + +/* YieldFrom.location = 0, location */ +/* YieldFrom.parenthesised = 1, bool */ +/* YieldFrom.value = 2, expr */ + +/* Alias.value = 0, expr */ +/* Alias.asname = 1, expr */ +/* Alias = AliasList */ +/* AliasList = Import */ + +/* Arguments.kw_defaults = 0, expr_list */ +/* Arguments.defaults = 1, expr_list */ +/* Arguments.annotations = 2, expr_list */ +/* Arguments.varargannotation = 3, expr */ +/* Arguments.kwargannotation = 4, expr */ +/* Arguments.kw_annotations = 5, expr_list */ +/* Arguments = ArgumentsParent */ +/* boolean = BoolParent */ +/* Boolop = BoolExpr */ +/* string = Bytes */ +/* Cmpop = CmpopList */ +/* CmpopList = Compare */ + +/* Comprehension.location = 0, location */ +/* Comprehension.iter = 1, expr */ +/* Comprehension.target = 2, expr */ +/* Comprehension.ifs = 3, expr_list */ +/* Comprehension = ComprehensionList */ +/* ComprehensionList = ListComp */ +/* DictItem = DictItemList */ +/* DictItemList = DictItemListParent */ + +/* Expr.location = 0, location */ +/* Expr.parenthesised = 1, bool */ +/* Expr = ExprParent */ +/* ExprContext = ExprContextParent */ +/* ExprList = ExprListParent */ +/* int = ImportExpr */ + +/* Keyword.location = 0, location */ +/* Keyword.value = 1, expr */ +/* Keyword.arg = 2, str */ +/* Location = LocationParent */ +/* string = Num */ +/* Operator = BinaryExpr */ +/* ParameterList = Function */ + +/* Pattern.location = 0, location */ +/* Pattern.parenthesised = 1, bool */ +/* Pattern = PatternParent */ +/* PatternList = PatternListParent */ + +/* Stmt.location = 0, location */ +/* Stmt = StmtList */ +/* StmtList = StmtListParent */ +/* string = StrParent */ +/* StringList = StrListParent */ + +/* TypeParameter.location = 0, location */ +/* TypeParameter = TypeParameterList */ +/* TypeParameterList = TypeParameterListParent */ +/* Unaryop = UnaryExpr */ +/* Variable = VariableParent */ +py_Classes(unique int id : @py_Class, + unique int parent : @py_ClassExpr ref); + +py_Functions(unique int id : @py_Function, + unique int parent : @py_Function_parent ref); + +py_Modules(unique int id : @py_Module); + +py_StringParts(unique int id : @py_StringPart, + int parent : @py_StringPart_list ref, + int idx : int ref); + +py_StringPart_lists(unique int id : @py_StringPart_list, + unique int parent : @py_Bytes_or_Str ref); + +py_aliases(unique int id : @py_alias, + int parent : @py_alias_list ref, + int idx : int ref); + +py_alias_lists(unique int id : @py_alias_list, + unique int parent : @py_Import ref); + +py_arguments(unique int id : @py_arguments, + unique int parent : @py_arguments_parent ref); + +py_bools(int parent : @py_bool_parent ref, + int idx : int ref); + +py_boolops(unique int id : @py_boolop, + int kind: int ref, + unique int parent : @py_BoolExpr ref); + +py_bytes(varchar(1) id : string ref, + int parent : @py_Bytes ref, + int idx : int ref); + +py_cmpops(unique int id : @py_cmpop, + int kind: int ref, + int parent : @py_cmpop_list ref, + int idx : int ref); + +py_cmpop_lists(unique int id : @py_cmpop_list, + unique int parent : @py_Compare ref); + +py_comprehensions(unique int id : @py_comprehension, + int parent : @py_comprehension_list ref, + int idx : int ref); + +py_comprehension_lists(unique int id : @py_comprehension_list, + unique int parent : @py_ListComp ref); + +py_dict_items(unique int id : @py_dict_item, + int kind: int ref, + int parent : @py_dict_item_list ref, + int idx : int ref); + +py_dict_item_lists(unique int id : @py_dict_item_list, + unique int parent : @py_dict_item_list_parent ref); + +py_exprs(unique int id : @py_expr, + int kind: int ref, + int parent : @py_expr_parent ref, + int idx : int ref); + +py_expr_contexts(unique int id : @py_expr_context, + int kind: int ref, + unique int parent : @py_expr_context_parent ref); + +py_expr_lists(unique int id : @py_expr_list, + int parent : @py_expr_list_parent ref, + int idx : int ref); + +py_ints(int id : int ref, + unique int parent : @py_ImportExpr ref); + +py_locations(unique int id : @location ref, + unique int parent : @py_location_parent ref); + +py_numbers(varchar(1) id : string ref, + int parent : @py_Num ref, + int idx : int ref); + +py_operators(unique int id : @py_operator, + int kind: int ref, + unique int parent : @py_BinaryExpr ref); + +py_parameter_lists(unique int id : @py_parameter_list, + unique int parent : @py_Function ref); + +py_patterns(unique int id : @py_pattern, + int kind: int ref, + int parent : @py_pattern_parent ref, + int idx : int ref); + +py_pattern_lists(unique int id : @py_pattern_list, + int parent : @py_pattern_list_parent ref, + int idx : int ref); + +py_stmts(unique int id : @py_stmt, + int kind: int ref, + int parent : @py_stmt_list ref, + int idx : int ref); + +py_stmt_lists(unique int id : @py_stmt_list, + int parent : @py_stmt_list_parent ref, + int idx : int ref); + +py_strs(varchar(1) id : string ref, + int parent : @py_str_parent ref, + int idx : int ref); + +py_str_lists(unique int id : @py_str_list, + unique int parent : @py_str_list_parent ref); + +py_type_parameters(unique int id : @py_type_parameter, + int kind: int ref, + int parent : @py_type_parameter_list ref, + int idx : int ref); + +py_type_parameter_lists(unique int id : @py_type_parameter_list, + unique int parent : @py_type_parameter_list_parent ref); + +py_unaryops(unique int id : @py_unaryop, + int kind: int ref, + unique int parent : @py_UnaryExpr ref); + +py_variables(int id : @py_variable ref, + unique int parent : @py_variable_parent ref); + +case @py_boolop.kind of + 0 = @py_And +| 1 = @py_Or; + +case @py_cmpop.kind of + 0 = @py_Eq +| 1 = @py_Gt +| 2 = @py_GtE +| 3 = @py_In +| 4 = @py_Is +| 5 = @py_IsNot +| 6 = @py_Lt +| 7 = @py_LtE +| 8 = @py_NotEq +| 9 = @py_NotIn; + +case @py_dict_item.kind of + 0 = @py_DictUnpacking +| 1 = @py_KeyValuePair +| 2 = @py_keyword; + +case @py_expr.kind of + 0 = @py_Attribute +| 1 = @py_BinaryExpr +| 2 = @py_BoolExpr +| 3 = @py_Bytes +| 4 = @py_Call +| 5 = @py_ClassExpr +| 6 = @py_Compare +| 7 = @py_Dict +| 8 = @py_DictComp +| 9 = @py_Ellipsis +| 10 = @py_FunctionExpr +| 11 = @py_GeneratorExp +| 12 = @py_IfExp +| 13 = @py_ImportExpr +| 14 = @py_ImportMember +| 15 = @py_Lambda +| 16 = @py_List +| 17 = @py_ListComp +| 18 = @py_Guard +| 19 = @py_Name +| 20 = @py_Num +| 21 = @py_Repr +| 22 = @py_Set +| 23 = @py_SetComp +| 24 = @py_Slice +| 25 = @py_Starred +| 26 = @py_Str +| 27 = @py_Subscript +| 28 = @py_Tuple +| 29 = @py_UnaryExpr +| 30 = @py_Yield +| 31 = @py_YieldFrom +| 32 = @py_TemplateDottedNotation +| 33 = @py_Filter +| 34 = @py_PlaceHolder +| 35 = @py_Await +| 36 = @py_Fstring +| 37 = @py_FormattedValue +| 38 = @py_AssignExpr +| 39 = @py_SpecialOperation; + +case @py_expr_context.kind of + 0 = @py_AugLoad +| 1 = @py_AugStore +| 2 = @py_Del +| 3 = @py_Load +| 4 = @py_Param +| 5 = @py_Store; + +case @py_operator.kind of + 0 = @py_Add +| 1 = @py_BitAnd +| 2 = @py_BitOr +| 3 = @py_BitXor +| 4 = @py_Div +| 5 = @py_FloorDiv +| 6 = @py_LShift +| 7 = @py_Mod +| 8 = @py_Mult +| 9 = @py_Pow +| 10 = @py_RShift +| 11 = @py_Sub +| 12 = @py_MatMult; + +case @py_pattern.kind of + 0 = @py_MatchAsPattern +| 1 = @py_MatchOrPattern +| 2 = @py_MatchLiteralPattern +| 3 = @py_MatchCapturePattern +| 4 = @py_MatchWildcardPattern +| 5 = @py_MatchValuePattern +| 6 = @py_MatchSequencePattern +| 7 = @py_MatchStarPattern +| 8 = @py_MatchMappingPattern +| 9 = @py_MatchDoubleStarPattern +| 10 = @py_MatchKeyValuePattern +| 11 = @py_MatchClassPattern +| 12 = @py_MatchKeywordPattern; + +case @py_stmt.kind of + 0 = @py_Assert +| 1 = @py_Assign +| 2 = @py_AugAssign +| 3 = @py_Break +| 4 = @py_Continue +| 5 = @py_Delete +| 6 = @py_ExceptStmt +| 7 = @py_ExceptGroupStmt +| 8 = @py_Exec +| 9 = @py_Expr_stmt +| 10 = @py_For +| 11 = @py_Global +| 12 = @py_If +| 13 = @py_Import +| 14 = @py_ImportStar +| 15 = @py_MatchStmt +| 16 = @py_Case +| 17 = @py_Nonlocal +| 18 = @py_Pass +| 19 = @py_Print +| 20 = @py_Raise +| 21 = @py_Return +| 22 = @py_Try +| 23 = @py_While +| 24 = @py_With +| 25 = @py_TemplateWrite +| 26 = @py_AnnAssign +| 27 = @py_TypeAlias; + +case @py_type_parameter.kind of + 0 = @py_ParamSpec +| 1 = @py_TypeVar +| 2 = @py_TypeVarTuple; + +case @py_unaryop.kind of + 0 = @py_Invert +| 1 = @py_Not +| 2 = @py_UAdd +| 3 = @py_USub; + +@py_Bytes_or_Str = @py_Bytes | @py_Str; + +@py_Function_parent = @py_DictComp | @py_FunctionExpr | @py_GeneratorExp | @py_Lambda | @py_ListComp | @py_SetComp; + +@py_arguments_parent = @py_FunctionExpr | @py_Lambda; + +@py_ast_node = @py_Class | @py_Function | @py_Module | @py_StringPart | @py_comprehension | @py_dict_item | @py_expr | @py_pattern | @py_stmt | @py_type_parameter; + +@py_bool_parent = @py_For | @py_Function | @py_Print | @py_With | @py_expr | @py_pattern; + +@py_dict_item_list_parent = @py_Call | @py_ClassExpr | @py_Dict; + +@py_expr_context_parent = @py_Attribute | @py_List | @py_Name | @py_PlaceHolder | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_Tuple; + +@py_expr_list_parent = @py_Assign | @py_BoolExpr | @py_Call | @py_ClassExpr | @py_Compare | @py_Delete | @py_Fstring | @py_Function | @py_List | @py_Print | @py_Set | @py_SpecialOperation | @py_Tuple | @py_arguments | @py_comprehension; + +@py_expr_or_stmt = @py_expr | @py_stmt; + +@py_expr_parent = @py_AnnAssign | @py_Assert | @py_Assign | @py_AssignExpr | @py_Attribute | @py_AugAssign | @py_Await | @py_BinaryExpr | @py_Call | @py_Case | @py_Compare | @py_DictComp | @py_DictUnpacking | @py_ExceptGroupStmt | @py_ExceptStmt | @py_Exec | @py_Expr_stmt | @py_Filter | @py_For | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_GeneratorExp | @py_Guard | @py_If | @py_IfExp | @py_ImportMember | @py_ImportStar | @py_KeyValuePair | @py_ListComp | @py_MatchAsPattern | @py_MatchCapturePattern | @py_MatchClassPattern | @py_MatchKeywordPattern | @py_MatchLiteralPattern | @py_MatchStmt | @py_MatchValuePattern | @py_ParamSpec | @py_Print | @py_Raise | @py_Repr | @py_Return | @py_SetComp | @py_Slice | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_TemplateWrite | @py_TypeAlias | @py_TypeVar | @py_TypeVarTuple | @py_UnaryExpr | @py_While | @py_With | @py_Yield | @py_YieldFrom | @py_alias | @py_arguments | @py_comprehension | @py_expr_list | @py_keyword | @py_parameter_list; + +@py_location_parent = @py_DictUnpacking | @py_KeyValuePair | @py_StringPart | @py_comprehension | @py_expr | @py_keyword | @py_pattern | @py_stmt | @py_type_parameter; + +@py_parameter = @py_Name | @py_Tuple; + +@py_pattern_list_parent = @py_MatchClassPattern | @py_MatchMappingPattern | @py_MatchOrPattern | @py_MatchSequencePattern; + +@py_pattern_parent = @py_Case | @py_MatchAsPattern | @py_MatchDoubleStarPattern | @py_MatchKeyValuePattern | @py_MatchKeywordPattern | @py_MatchStarPattern | @py_pattern_list; + +@py_scope = @py_Class | @py_Function | @py_Module; + +@py_stmt_list_parent = @py_Case | @py_Class | @py_ExceptGroupStmt | @py_ExceptStmt | @py_For | @py_Function | @py_If | @py_MatchStmt | @py_Module | @py_Try | @py_While | @py_With; + +@py_str_list_parent = @py_Global | @py_Nonlocal; + +@py_str_parent = @py_Attribute | @py_Class | @py_ClassExpr | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_ImportExpr | @py_ImportMember | @py_Module | @py_SpecialOperation | @py_Str | @py_StringPart | @py_TemplateDottedNotation | @py_keyword | @py_str_list; + +@py_type_parameter_list_parent = @py_ClassExpr | @py_Function | @py_TypeAlias; + +@py_variable_parent = @py_Name | @py_PlaceHolder; + + +/* + * End of auto-generated part + */ + + + +/* Map relative names to absolute names for imports */ +py_absolute_names(int module : @py_Module ref, + varchar(1) relname : string ref, + varchar(1) absname : string ref); + +py_exports(int id : @py_Module ref, + varchar(1) name : string ref); + +/* Successor information */ +py_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_true_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_exception_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_false_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_flow_bb_node(unique int flownode : @py_flow_node, + int realnode : @py_ast_node ref, + int basicblock : @py_flow_node ref, + int index : int ref); + +py_scope_flow(int flow : @py_flow_node ref, + int scope : @py_scope ref, + int kind : int ref); + +py_idoms(unique int node : @py_flow_node ref, + int immediate_dominator : @py_flow_node ref); + +py_ssa_phi(int phi : @py_ssa_var ref, + int arg: @py_ssa_var ref); + +py_ssa_var(unique int id : @py_ssa_var, + int var : @py_variable ref); + +py_ssa_use(int node: @py_flow_node ref, + int var : @py_ssa_var ref); + +py_ssa_defn(unique int id : @py_ssa_var ref, + int node: @py_flow_node ref); + +@py_base_var = @py_variable | @py_ssa_var; + +py_scopes(unique int node : @py_expr_or_stmt ref, + int scope : @py_scope ref); + +py_scope_location(unique int id : @location ref, + unique int scope : @py_scope ref); + +py_flags_versioned(varchar(1) name : string ref, + varchar(1) value : string ref, + varchar(1) version : string ref); + +py_syntax_error_versioned(unique int id : @location ref, + varchar(1) message : string ref, + varchar(1) version : string ref); + +py_comments(unique int id : @py_comment, + varchar(1) text : string ref, + unique int location : @location ref); + +/* Type information support */ + +py_cobjects(unique int obj : @py_cobject); + +py_cobjecttypes(unique int obj : @py_cobject ref, + int typeof : @py_cobject ref); + +py_cobjectnames(unique int obj : @py_cobject ref, + varchar(1) name : string ref); + +/* Kind should be 0 for introspection, > 0 from source, as follows: + 1 from C extension source + */ +py_cobject_sources(int obj : @py_cobject ref, + int kind : int ref); + +py_cmembers_versioned(int object : @py_cobject ref, + varchar(1) name : string ref, + int member : @py_cobject ref, + varchar(1) version : string ref); + +py_citems(int object : @py_cobject ref, + int index : int ref, + int member : @py_cobject ref); + +ext_argtype(int funcid : @py_object ref, + int arg : int ref, + int typeid : @py_object ref); + +ext_rettype(int funcid : @py_object ref, + int typeid : @py_object ref); + +ext_proptype(int propid : @py_object ref, + int typeid : @py_object ref); + +ext_argreturn(int funcid : @py_object ref, + int arg : int ref); + +py_special_objects(unique int obj : @py_cobject ref, + unique varchar(1) name : string ref); + +py_decorated_object(int object : @py_object ref, + int level: int ref); + +@py_object = @py_cobject | @py_flow_node; + +@py_source_element = @py_ast_node | @container; diff --git a/python/downgrades/5af903da088e3746aa283700a43a779302453523/upgrade.properties b/python/downgrades/5af903da088e3746aa283700a43a779302453523/upgrade.properties new file mode 100644 index 000000000000..f9c39c31ea0a --- /dev/null +++ b/python/downgrades/5af903da088e3746aa283700a43a779302453523/upgrade.properties @@ -0,0 +1,3 @@ +description: Remove support for type parameter defaults. +compatibility: backwards +py_exprs.rel: run py_exprs.qlo py_exprs_without_type_parameter_defaults diff --git a/python/extractor/Makefile b/python/extractor/Makefile index 1f2c5d0752b9..54095f6572be 100644 --- a/python/extractor/Makefile +++ b/python/extractor/Makefile @@ -21,19 +21,19 @@ $(TOKENIZER_FILE): $(TOKENIZER_DEPS) MASTER_FILE = semmle/python/master.py -DBSCHEME_FILE = $(GIT_ROOT)/ql/python/ql/lib/semmlecode.python.dbscheme +DBSCHEME_FILE = $(GIT_ROOT)/python/ql/lib/semmlecode.python.dbscheme .PHONY: dbscheme dbscheme: $(MASTER_FILE) python3 -m semmle.dbscheme_gen $(DBSCHEME_FILE) -AST_GENERATED_DIR = $(GIT_ROOT)/ql/python/ql/lib/semmle/python/ +AST_GENERATED_DIR = $(GIT_ROOT)/python/ql/lib/semmle/python/ AST_GENERATED_FILE = $(AST_GENERATED_DIR)AstGenerated.qll .PHONY: ast ast: $(MASTER_FILE) python3 -m semmle.query_gen $(AST_GENERATED_DIR) - $(GIT_ROOT)/target/intree/codeql/codeql query format --in-place $(AST_GENERATED_FILE) + codeql query format --in-place $(AST_GENERATED_FILE) ################################################################################ # Tests diff --git a/python/extractor/semmle/python/ast.py b/python/extractor/semmle/python/ast.py index 25b93cae72ac..6033e39e009b 100644 --- a/python/extractor/semmle/python/ast.py +++ b/python/extractor/semmle/python/ast.py @@ -500,10 +500,11 @@ def __init__(self, n, text): self.text = text class ParamSpec(type_parameter): - __slots__ = "name", + __slots__ = "name", "default", - def __init__(self, name): + def __init__(self, name, default): self.name = name + self.default = default @@ -607,17 +608,19 @@ def __init__(self, name, type_parameters, value): self.value = value class TypeVar(type_parameter): - __slots__ = "name", "bound", + __slots__ = "name", "bound", "default" - def __init__(self, name, bound): + def __init__(self, name, bound, default): self.name = name self.bound = bound + self.default = default class TypeVarTuple(type_parameter): - __slots__ = "name", + __slots__ = "name", "default", - def __init__(self, name): + def __init__(self, name, default): self.name = name + self.default = default class UnaryOp(expr): __slots__ = "op", "operand", diff --git a/python/extractor/semmle/python/master.py b/python/extractor/semmle/python/master.py index 200340061fc6..508a706a97a0 100755 --- a/python/extractor/semmle/python/master.py +++ b/python/extractor/semmle/python/master.py @@ -397,6 +397,7 @@ Num.field('text', number) ParamSpec.field('name', expr) +ParamSpec.field('default', expr) Print.field('dest', expr, 'destination') Print.field('values', expr_list) @@ -448,8 +449,10 @@ TypeVar.field('name', expr) TypeVar.field('bound', expr) +TypeVar.field('default', expr) TypeVarTuple.field('name', expr) +TypeVarTuple.field('default', expr) UnaryOp.field('op', unaryop, 'operator') UnaryOp.field('operand', expr) diff --git a/python/extractor/semmle/util.py b/python/extractor/semmle/util.py index 41af1d497b32..323ce6442110 100644 --- a/python/extractor/semmle/util.py +++ b/python/extractor/semmle/util.py @@ -10,7 +10,7 @@ #Semantic version of extractor. #Update this if any changes are made -VERSION = "7.0.0" +VERSION = "7.1.0" PY_EXTENSIONS = ".py", ".pyw" diff --git a/python/extractor/tests/parser/types_new.expected b/python/extractor/tests/parser/types_new.expected index be42268c201a..a390ed1aae2a 100644 --- a/python/extractor/tests/parser/types_new.expected +++ b/python/extractor/tests/parser/types_new.expected @@ -1,4 +1,4 @@ -Module: [1, 0] - [6, 0] +Module: [1, 0] - [23, 0] body: [ TypeAlias: [1, 0] - [1, 34] name: @@ -12,6 +12,7 @@ Module: [1, 0] - [6, 0] variable: Variable('T1', None) ctx: Store bound: None + default: None TypeVar: [1, 11] - [1, 17] name: Name: [1, 11] - [1, 13] @@ -21,16 +22,19 @@ Module: [1, 0] - [6, 0] Name: [1, 15] - [1, 17] variable: Variable('E1', None) ctx: Load + default: None TypeVarTuple: [1, 19] - [1, 22] name: Name: [1, 20] - [1, 22] variable: Variable('T3', None) ctx: Store + default: None ParamSpec: [1, 24] - [1, 28] name: Name: [1, 26] - [1, 28] variable: Variable('T4', None) ctx: Store + default: None ] value: Name: [1, 32] - [1, 34] @@ -64,6 +68,7 @@ Module: [1, 0] - [6, 0] variable: Variable('T6', None) ctx: Store bound: None + default: None TypeVar: [3, 10] - [3, 16] name: Name: [3, 10] - [3, 12] @@ -73,16 +78,19 @@ Module: [1, 0] - [6, 0] Name: [3, 14] - [3, 16] variable: Variable('E2', None) ctx: Load + default: None TypeVarTuple: [3, 18] - [3, 21] name: Name: [3, 19] - [3, 21] variable: Variable('T8', None) ctx: Store + default: None ParamSpec: [3, 23] - [3, 27] name: Name: [3, 25] - [3, 27] variable: Variable('T9', None) ctx: Store + default: None ] args: [] vararg: None @@ -109,6 +117,7 @@ Module: [1, 0] - [6, 0] variable: Variable('T10', None) ctx: Store bound: None + default: None TypeVar: [5, 13] - [5, 20] name: Name: [5, 13] - [5, 16] @@ -118,16 +127,19 @@ Module: [1, 0] - [6, 0] Name: [5, 18] - [5, 20] variable: Variable('E3', None) ctx: Load + default: None TypeVarTuple: [5, 22] - [5, 26] name: Name: [5, 23] - [5, 26] variable: Variable('T12', None) ctx: Store + default: None ParamSpec: [5, 28] - [5, 33] name: Name: [5, 30] - [5, 33] variable: Variable('T13', None) ctx: Store + default: None ] bases: [] keywords: [] @@ -139,4 +151,284 @@ Module: [1, 0] - [6, 0] value: Ellipsis: [5, 36] - [5, 39] ] + Assign: [10, 0] - [10, 22] + targets: [ + Name: [10, 6] - [10, 10] + variable: Variable('Foo1', None) + ctx: Store + ] + value: + ClassExpr: [10, 0] - [10, 22] + name: 'Foo1' + type_parameters: [ + TypeVar: [10, 11] - [10, 20] + name: + Name: [10, 11] - [10, 14] + variable: Variable('T14', None) + ctx: Store + bound: None + default: + Name: [10, 17] - [10, 20] + variable: Variable('str', None) + ctx: Load + ] + bases: [] + keywords: [] + inner_scope: + Class: [10, 0] - [10, 22] + name: 'Foo1' + body: [ + Expr: [10, 23] - [10, 26] + value: + Ellipsis: [10, 23] - [10, 26] + ] + Assign: [13, 0] - [13, 30] + targets: [ + Name: [13, 6] - [13, 10] + variable: Variable('Baz1', None) + ctx: Store + ] + value: + ClassExpr: [13, 0] - [13, 30] + name: 'Baz1' + type_parameters: [ + ParamSpec: [13, 11] - [13, 28] + name: + Name: [13, 13] - [13, 15] + variable: Variable('P1', None) + ctx: Store + default: + List: [13, 18] - [13, 28] + elts: [ + Name: [13, 19] - [13, 22] + variable: Variable('int', None) + ctx: Load + Name: [13, 24] - [13, 27] + variable: Variable('str', None) + ctx: Load + ] + ctx: Load + ] + bases: [] + keywords: [] + inner_scope: + Class: [13, 0] - [13, 30] + name: 'Baz1' + body: [ + Expr: [13, 31] - [13, 34] + value: + Ellipsis: [13, 31] - [13, 34] + ] + Assign: [16, 0] - [16, 37] + targets: [ + Name: [16, 6] - [16, 10] + variable: Variable('Qux1', None) + ctx: Store + ] + value: + ClassExpr: [16, 0] - [16, 37] + name: 'Qux1' + type_parameters: [ + TypeVarTuple: [16, 11] - [16, 35] + name: + Name: [16, 12] - [16, 15] + variable: Variable('Ts1', None) + ctx: Store + default: + Starred: [16, 18] - [16, 35] + value: + Subscript: [16, 19] - [16, 35] + value: + Name: [16, 19] - [16, 24] + variable: Variable('tuple', None) + ctx: Load + index: + Tuple: [16, 25] - [16, 34] + elts: [ + Name: [16, 25] - [16, 28] + variable: Variable('int', None) + ctx: Load + Name: [16, 30] - [16, 34] + variable: Variable('bool', None) + ctx: Load + ] + ctx: Load + ctx: Load + ctx: Load + ] + bases: [] + keywords: [] + inner_scope: + Class: [16, 0] - [16, 37] + name: 'Qux1' + body: [ + Expr: [16, 38] - [16, 41] + value: + Ellipsis: [16, 38] - [16, 41] + ] + TypeAlias: [19, 0] - [19, 40] + name: + Name: [19, 5] - [19, 9] + variable: Variable('Foo2', None) + ctx: Store + type_parameters: [ + TypeVar: [19, 10] - [19, 13] + name: + Name: [19, 10] - [19, 13] + variable: Variable('T15', None) + ctx: Store + bound: None + default: None + TypeVar: [19, 15] - [19, 23] + name: + Name: [19, 15] - [19, 17] + variable: Variable('U1', None) + ctx: Store + bound: None + default: + Name: [19, 20] - [19, 23] + variable: Variable('str', None) + ctx: Load + ] + value: + Subscript: [19, 27] - [19, 40] + value: + Name: [19, 27] - [19, 31] + variable: Variable('Bar1', None) + ctx: Load + index: + Tuple: [19, 32] - [19, 39] + elts: [ + Name: [19, 32] - [19, 35] + variable: Variable('T15', None) + ctx: Load + Name: [19, 37] - [19, 39] + variable: Variable('U1', None) + ctx: Load + ] + ctx: Load + ctx: Load + TypeAlias: [20, 0] - [20, 41] + name: + Name: [20, 5] - [20, 9] + variable: Variable('Baz2', None) + ctx: Store + type_parameters: [ + ParamSpec: [20, 10] - [20, 27] + name: + Name: [20, 12] - [20, 14] + variable: Variable('P2', None) + ctx: Store + default: + List: [20, 17] - [20, 27] + elts: [ + Name: [20, 18] - [20, 21] + variable: Variable('int', None) + ctx: Load + Name: [20, 23] - [20, 26] + variable: Variable('str', None) + ctx: Load + ] + ctx: Load + ] + value: + Subscript: [20, 31] - [20, 41] + value: + Name: [20, 31] - [20, 35] + variable: Variable('Spam', None) + ctx: Load + index: + BinOp: [20, 36] - [20, 40] + left: + Name: [20, 36] - [20, 36] + variable: Variable('', None) + ctx: Load + op: Pow + right: + Name: [20, 38] - [20, 40] + variable: Variable('P2', None) + ctx: Load + ctx: Load + TypeAlias: [21, 0] - [21, 41] + name: + Name: [21, 5] - [21, 9] + variable: Variable('Qux2', None) + ctx: Store + type_parameters: [ + TypeVarTuple: [21, 10] - [21, 28] + name: + Name: [21, 11] - [21, 14] + variable: Variable('Ts2', None) + ctx: Store + default: + Starred: [21, 17] - [21, 28] + value: + Subscript: [21, 18] - [21, 28] + value: + Name: [21, 18] - [21, 23] + variable: Variable('tuple', None) + ctx: Load + index: + Name: [21, 24] - [21, 27] + variable: Variable('str', None) + ctx: Load + ctx: Load + ctx: Load + ] + value: + Subscript: [21, 32] - [21, 41] + value: + Name: [21, 32] - [21, 35] + variable: Variable('Ham', None) + ctx: Load + index: + Starred: [21, 36] - [21, 40] + value: + Name: [21, 37] - [21, 40] + variable: Variable('Ts2', None) + ctx: Load + ctx: Load + ctx: Load + TypeAlias: [22, 0] - [22, 39] + name: + Name: [22, 5] - [22, 8] + variable: Variable('Rab', None) + ctx: Store + type_parameters: [ + TypeVar: [22, 9] - [22, 11] + name: + Name: [22, 9] - [22, 11] + variable: Variable('U2', None) + ctx: Store + bound: None + default: None + TypeVar: [22, 13] - [22, 22] + name: + Name: [22, 13] - [22, 16] + variable: Variable('T15', None) + ctx: Store + bound: None + default: + Name: [22, 19] - [22, 22] + variable: Variable('str', None) + ctx: Load + ] + value: + Subscript: [22, 26] - [22, 39] + value: + Name: [22, 26] - [22, 30] + variable: Variable('Bar2', None) + ctx: Load + index: + Tuple: [22, 31] - [22, 38] + elts: [ + Name: [22, 31] - [22, 34] + variable: Variable('T15', None) + ctx: Load + Name: [22, 36] - [22, 38] + variable: Variable('U2', None) + ctx: Load + ] + ctx: Load + ctx: Load ] diff --git a/python/extractor/tests/parser/types_new.py b/python/extractor/tests/parser/types_new.py index 844ba4930edd..12e5eac0556c 100644 --- a/python/extractor/tests/parser/types_new.py +++ b/python/extractor/tests/parser/types_new.py @@ -3,3 +3,20 @@ def f[T6, T7: E2, *T8, **T9](): ... class C[T10, T11: E3, *T12, **T13]: ... + +# From PEP-696 (https://peps.python.org/pep-0696/#grammar-changes): + +# TypeVars +class Foo1[T14 = str]: ... + +# ParamSpecs +class Baz1[**P1 = [int, str]]: ... + +# TypeVarTuples +class Qux1[*Ts1 = *tuple[int, bool]]: ... + +# TypeAliases +type Foo2[T15, U1 = str] = Bar1[T15, U1] +type Baz2[**P2 = [int, str]] = Spam[**P2] +type Qux2[*Ts2 = *tuple[str]] = Ham[*Ts2] +type Rab[U2, T15 = str] = Bar2[T15, U2] diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index e185bbbae798..8a9ab01e9915 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -3388,6 +3388,7 @@ (typevar_parameter name: (_) @name bound: (_)? @bound + default: (_)? @default ) @typevar { attr (@name.node) ctx = "store" @@ -3396,22 +3397,36 @@ attr (@bound.node) ctx = "load" attr (@typevar.node) bound = @bound.node } + if some @default { + attr (@default.node) ctx = "load" + attr (@typevar.node) default = @default.node + } } (typevartuple_parameter name: (_) @name + default: (_)? @default ) @typevartuple { attr (@name.node) ctx = "store" attr (@typevartuple.node) name = @name.node + if some @default { + attr (@default.node) ctx = "load" + attr (@typevartuple.node) default = @default.node + } } (paramspec_parameter name: (_) @name + default: (_)? @default ) @paramspec { attr (@name.node) ctx = "store" attr (@paramspec.node) name = @name.node + if some @default { + attr (@default.node) ctx = "load" + attr (@paramspec.node) default = @default.node + } } ;;;;;; End of Type parameters (`T: ..., *T, **T`) diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index 3fc832cb4e55..ebef231f3621 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -589,17 +589,20 @@ module.exports = grammar({ typevar_parameter: $ => seq( field('name', $.identifier), - optional($._type_bound) + optional($._type_bound), + optional($._type_param_default) ), typevartuple_parameter: $ => seq( '*', field('name', $.identifier), + optional($._type_param_default) ), paramspec_parameter: $ => seq( '**', field('name', $.identifier), + optional($._type_param_default), ), _type_parameter: $ => choice( @@ -608,6 +611,11 @@ module.exports = grammar({ $.paramspec_parameter, ), + _type_param_default: $ => seq( + '=', + field('default', choice($.list_splat, $.expression)) + ), + parenthesized_list_splat: $ => prec(PREC.parenthesized_list_splat, seq( '(', choice( @@ -923,7 +931,7 @@ module.exports = grammar({ subscript: $ => prec(PREC.call, seq( field('value', $.primary_expression), '[', - commaSep1(field('subscript', choice($.expression, $.slice))), + commaSep1(field('subscript', choice($.list_splat, $.expression, $.slice))), optional(','), ']' )), diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index 957471765c3f..0f37f9865ece 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "python", "word": "identifier", "rules": { @@ -2970,6 +2971,18 @@ "type": "BLANK" } ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_param_default" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -2987,6 +3000,18 @@ "type": "SYMBOL", "name": "identifier" } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_param_default" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -3004,6 +3029,18 @@ "type": "SYMBOL", "name": "identifier" } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_param_default" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -3024,6 +3061,32 @@ } ] }, + "_type_param_default": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, "parenthesized_list_splat": { "type": "PREC", "value": 1, @@ -5006,6 +5069,10 @@ "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "list_splat" + }, { "type": "SYMBOL", "name": "expression" @@ -5032,6 +5099,10 @@ "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "list_splat" + }, { "type": "SYMBOL", "name": "expression" @@ -6612,4 +6683,3 @@ "parameter" ] } - diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index 515d815d8333..3d6613fac979 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -2691,6 +2691,7 @@ { "type": "module", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -2809,6 +2810,20 @@ "type": "paramspec_parameter", "named": true, "fields": { + "default": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "list_splat", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, @@ -3193,6 +3208,10 @@ "type": "expression", "named": true }, + { + "type": "list_splat", + "named": true + }, { "type": "slice", "named": true @@ -3476,6 +3495,20 @@ } ] }, + "default": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "list_splat", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, @@ -3492,6 +3525,20 @@ "type": "typevartuple_parameter", "named": true, "fields": { + "default": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "list_splat", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, @@ -3765,6 +3812,10 @@ "type": ":=", "named": false }, + { + "type": ";", + "named": false + }, { "type": "<", "named": false @@ -3821,6 +3872,10 @@ "type": "[", "named": false }, + { + "type": "\\", + "named": false + }, { "type": "]", "named": false diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index 05a076d96a24..f6968085e588 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -1,22 +1,21 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1525 +#define STATE_COUNT 1532 #define LARGE_STATE_COUNT 155 -#define SYMBOL_COUNT 280 +#define SYMBOL_COUNT 283 #define ALIAS_COUNT 3 #define TOKEN_COUNT 108 #define EXTERNAL_TOKEN_COUNT 6 -#define FIELD_COUNT 53 +#define FIELD_COUNT 54 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 161 +#define PRODUCTION_ID_COUNT 165 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, anon_sym_import = 2, anon_sym_DOT = 3, @@ -107,7 +106,7 @@ enum { anon_sym_LBRACE2 = 88, sym__escape_interpolation = 89, sym_escape_sequence = 90, - sym__not_escape_sequence = 91, + anon_sym_BSLASH = 91, aux_sym_format_specifier_token1 = 92, sym_type_conversion = 93, sym_integer = 94, @@ -117,7 +116,7 @@ enum { sym_false = 98, sym_none = 99, sym_comment = 100, - sym__semicolon = 101, + anon_sym_SEMI = 101, sym__newline = 102, sym__indent = 103, sym__dedent = 104, @@ -199,106 +198,109 @@ enum { sym_typevartuple_parameter = 180, sym_paramspec_parameter = 181, sym__type_parameter = 182, - sym_parenthesized_list_splat = 183, - sym_argument_list = 184, - sym_decorated_definition = 185, - sym_decorator = 186, - sym_block = 187, - sym_expression_list = 188, - sym_dotted_name = 189, - sym__parameters = 190, - sym__patterns = 191, - sym_parameter = 192, - sym_pattern = 193, - sym_tuple_pattern = 194, - sym_list_pattern = 195, - sym_default_parameter = 196, - sym_typed_default_parameter = 197, - sym_list_splat_pattern = 198, - sym_dictionary_splat_pattern = 199, - sym__expression_within_for_in_clause = 200, - sym_expression = 201, - sym_primary_expression = 202, - sym_not_operator = 203, - sym_boolean_operator = 204, - sym_binary_operator = 205, - sym_unary_operator = 206, - sym_comparison_operator = 207, - sym_lambda = 208, - sym_lambda_within_for_in_clause = 209, - sym_assignment = 210, - sym_augmented_assignment = 211, - sym_pattern_list = 212, - sym__right_hand_side = 213, - sym_yield = 214, - sym_attribute = 215, - sym_subscript = 216, - sym_slice = 217, - sym_call = 218, - sym_typed_parameter = 219, - sym_type = 220, - sym_keyword_argument = 221, - sym_list = 222, - sym_set = 223, - sym_tuple = 224, - sym_dictionary = 225, - sym_pair = 226, - sym_list_comprehension = 227, - sym_dictionary_comprehension = 228, - sym_set_comprehension = 229, - sym_generator_expression = 230, - sym__comprehension_clauses = 231, - sym_parenthesized_expression = 232, - sym__collection_elements = 233, - sym_for_in_clause = 234, - sym_if_clause = 235, - sym_conditional_expression = 236, - sym_concatenated_string = 237, - sym_string = 238, - sym_string_content = 239, - sym_interpolation = 240, - sym__f_expression = 241, - sym_format_specifier = 242, - sym_await = 243, - sym_positional_separator = 244, - sym_keyword_separator = 245, - aux_sym_module_repeat1 = 246, - aux_sym__simple_statements_repeat1 = 247, - aux_sym_import_prefix_repeat1 = 248, - aux_sym__import_list_repeat1 = 249, - aux_sym_print_statement_repeat1 = 250, - aux_sym_assert_statement_repeat1 = 251, - aux_sym_if_statement_repeat1 = 252, - aux_sym_try_statement_repeat1 = 253, - aux_sym_try_statement_repeat2 = 254, - aux_sym_with_clause_repeat1 = 255, - aux_sym_cases_repeat1 = 256, - aux_sym_open_sequence_match_pattern_repeat1 = 257, - aux_sym_match_or_pattern_repeat1 = 258, - aux_sym_match_value_pattern_repeat1 = 259, - aux_sym_match_mapping_pattern_repeat1 = 260, - aux_sym_match_class_pattern_repeat1 = 261, - aux_sym_match_class_pattern_repeat2 = 262, - aux_sym_global_statement_repeat1 = 263, - aux_sym_type_parameters_repeat1 = 264, - aux_sym_argument_list_repeat1 = 265, - aux_sym_decorated_definition_repeat1 = 266, - aux_sym_expression_list_repeat1 = 267, - aux_sym__parameters_repeat1 = 268, - aux_sym__patterns_repeat1 = 269, - aux_sym_comparison_operator_repeat1 = 270, - aux_sym_subscript_repeat1 = 271, - aux_sym_dictionary_repeat1 = 272, - aux_sym__comprehension_clauses_repeat1 = 273, - aux_sym__collection_elements_repeat1 = 274, - aux_sym_for_in_clause_repeat1 = 275, - aux_sym_concatenated_string_repeat1 = 276, - aux_sym_string_repeat1 = 277, - aux_sym_string_content_repeat1 = 278, - aux_sym_format_specifier_repeat1 = 279, - alias_sym_format_expression = 280, - anon_alias_sym_isnot = 281, - anon_alias_sym_notin = 282, + sym__type_param_default = 183, + sym_parenthesized_list_splat = 184, + sym_argument_list = 185, + sym_decorated_definition = 186, + sym_decorator = 187, + sym_block = 188, + sym_expression_list = 189, + sym_dotted_name = 190, + sym__parameters = 191, + sym__patterns = 192, + sym_parameter = 193, + sym_pattern = 194, + sym_tuple_pattern = 195, + sym_list_pattern = 196, + sym_default_parameter = 197, + sym_typed_default_parameter = 198, + sym_list_splat_pattern = 199, + sym_dictionary_splat_pattern = 200, + sym__expression_within_for_in_clause = 201, + sym_expression = 202, + sym_primary_expression = 203, + sym_not_operator = 204, + sym_boolean_operator = 205, + sym_binary_operator = 206, + sym_unary_operator = 207, + sym_comparison_operator = 208, + sym_lambda = 209, + sym_lambda_within_for_in_clause = 210, + sym_assignment = 211, + sym_augmented_assignment = 212, + sym_pattern_list = 213, + sym__right_hand_side = 214, + sym_yield = 215, + sym_attribute = 216, + sym_subscript = 217, + sym_slice = 218, + sym_call = 219, + sym_typed_parameter = 220, + sym_type = 221, + sym_keyword_argument = 222, + sym_list = 223, + sym_set = 224, + sym_tuple = 225, + sym_dictionary = 226, + sym_pair = 227, + sym_list_comprehension = 228, + sym_dictionary_comprehension = 229, + sym_set_comprehension = 230, + sym_generator_expression = 231, + sym__comprehension_clauses = 232, + sym_parenthesized_expression = 233, + sym__collection_elements = 234, + sym_for_in_clause = 235, + sym_if_clause = 236, + sym_conditional_expression = 237, + sym_concatenated_string = 238, + sym_string = 239, + sym_string_content = 240, + sym_interpolation = 241, + sym__f_expression = 242, + sym__not_escape_sequence = 243, + sym_format_specifier = 244, + sym_await = 245, + sym_positional_separator = 246, + sym_keyword_separator = 247, + sym__semicolon = 248, + aux_sym_module_repeat1 = 249, + aux_sym__simple_statements_repeat1 = 250, + aux_sym_import_prefix_repeat1 = 251, + aux_sym__import_list_repeat1 = 252, + aux_sym_print_statement_repeat1 = 253, + aux_sym_assert_statement_repeat1 = 254, + aux_sym_if_statement_repeat1 = 255, + aux_sym_try_statement_repeat1 = 256, + aux_sym_try_statement_repeat2 = 257, + aux_sym_with_clause_repeat1 = 258, + aux_sym_cases_repeat1 = 259, + aux_sym_open_sequence_match_pattern_repeat1 = 260, + aux_sym_match_or_pattern_repeat1 = 261, + aux_sym_match_value_pattern_repeat1 = 262, + aux_sym_match_mapping_pattern_repeat1 = 263, + aux_sym_match_class_pattern_repeat1 = 264, + aux_sym_match_class_pattern_repeat2 = 265, + aux_sym_global_statement_repeat1 = 266, + aux_sym_type_parameters_repeat1 = 267, + aux_sym_argument_list_repeat1 = 268, + aux_sym_decorated_definition_repeat1 = 269, + aux_sym_expression_list_repeat1 = 270, + aux_sym__parameters_repeat1 = 271, + aux_sym__patterns_repeat1 = 272, + aux_sym_comparison_operator_repeat1 = 273, + aux_sym_subscript_repeat1 = 274, + aux_sym_dictionary_repeat1 = 275, + aux_sym__comprehension_clauses_repeat1 = 276, + aux_sym__collection_elements_repeat1 = 277, + aux_sym_for_in_clause_repeat1 = 278, + aux_sym_concatenated_string_repeat1 = 279, + aux_sym_string_repeat1 = 280, + aux_sym_string_content_repeat1 = 281, + aux_sym_format_specifier_repeat1 = 282, + alias_sym_format_expression = 283, + anon_alias_sym_isnot = 284, + anon_alias_sym_notin = 285, }; static const char * const ts_symbol_names[] = { @@ -393,7 +395,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACE2] = "{", [sym__escape_interpolation] = "_escape_interpolation", [sym_escape_sequence] = "escape_sequence", - [sym__not_escape_sequence] = "_not_escape_sequence", + [anon_sym_BSLASH] = "\\", [aux_sym_format_specifier_token1] = "format_specifier_token1", [sym_type_conversion] = "type_conversion", [sym_integer] = "integer", @@ -403,7 +405,7 @@ static const char * const ts_symbol_names[] = { [sym_false] = "false", [sym_none] = "none", [sym_comment] = "comment", - [sym__semicolon] = "_semicolon", + [anon_sym_SEMI] = ";", [sym__newline] = "_newline", [sym__indent] = "_indent", [sym__dedent] = "_dedent", @@ -485,6 +487,7 @@ static const char * const ts_symbol_names[] = { [sym_typevartuple_parameter] = "typevartuple_parameter", [sym_paramspec_parameter] = "paramspec_parameter", [sym__type_parameter] = "_type_parameter", + [sym__type_param_default] = "_type_param_default", [sym_parenthesized_list_splat] = "parenthesized_list_splat", [sym_argument_list] = "argument_list", [sym_decorated_definition] = "decorated_definition", @@ -544,10 +547,12 @@ static const char * const ts_symbol_names[] = { [sym_string_content] = "string_content", [sym_interpolation] = "interpolation", [sym__f_expression] = "_f_expression", + [sym__not_escape_sequence] = "_not_escape_sequence", [sym_format_specifier] = "format_specifier", [sym_await] = "await", [sym_positional_separator] = "positional_separator", [sym_keyword_separator] = "keyword_separator", + [sym__semicolon] = "_semicolon", [aux_sym_module_repeat1] = "module_repeat1", [aux_sym__simple_statements_repeat1] = "_simple_statements_repeat1", [aux_sym_import_prefix_repeat1] = "import_prefix_repeat1", @@ -679,7 +684,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACE2] = anon_sym_LBRACE, [sym__escape_interpolation] = sym__escape_interpolation, [sym_escape_sequence] = sym_escape_sequence, - [sym__not_escape_sequence] = sym__not_escape_sequence, + [anon_sym_BSLASH] = anon_sym_BSLASH, [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, [sym_type_conversion] = sym_type_conversion, [sym_integer] = sym_integer, @@ -689,7 +694,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_false] = sym_false, [sym_none] = sym_none, [sym_comment] = sym_comment, - [sym__semicolon] = sym__semicolon, + [anon_sym_SEMI] = anon_sym_SEMI, [sym__newline] = sym__newline, [sym__indent] = sym__indent, [sym__dedent] = sym__dedent, @@ -771,6 +776,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_typevartuple_parameter] = sym_typevartuple_parameter, [sym_paramspec_parameter] = sym_paramspec_parameter, [sym__type_parameter] = sym__type_parameter, + [sym__type_param_default] = sym__type_param_default, [sym_parenthesized_list_splat] = sym_parenthesized_list_splat, [sym_argument_list] = sym_argument_list, [sym_decorated_definition] = sym_decorated_definition, @@ -830,10 +836,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_string_content] = sym_string_content, [sym_interpolation] = sym_interpolation, [sym__f_expression] = sym__f_expression, + [sym__not_escape_sequence] = sym__not_escape_sequence, [sym_format_specifier] = sym_format_specifier, [sym_await] = sym_await, [sym_positional_separator] = sym_positional_separator, [sym_keyword_separator] = sym_keyword_separator, + [sym__semicolon] = sym__semicolon, [aux_sym_module_repeat1] = aux_sym_module_repeat1, [aux_sym__simple_statements_repeat1] = aux_sym__simple_statements_repeat1, [aux_sym_import_prefix_repeat1] = aux_sym_import_prefix_repeat1, @@ -1238,9 +1246,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__not_escape_sequence] = { - .visible = false, - .named = true, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, }, [aux_sym_format_specifier_token1] = { .visible = false, @@ -1278,9 +1286,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__semicolon] = { - .visible = false, - .named = true, + [anon_sym_SEMI] = { + .visible = true, + .named = false, }, [sym__newline] = { .visible = false, @@ -1606,6 +1614,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__type_param_default] = { + .visible = false, + .named = true, + }, [sym_parenthesized_list_splat] = { .visible = true, .named = true, @@ -1846,6 +1858,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__not_escape_sequence] = { + .visible = false, + .named = true, + }, [sym_format_specifier] = { .visible = true, .named = true, @@ -1862,6 +1878,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__semicolon] = { + .visible = false, + .named = true, + }, [aux_sym_module_repeat1] = { .visible = false, .named = false, @@ -2012,7 +2032,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { +enum ts_field_identifiers { field_alias = 1, field_alternative = 2, field_argument = 3, @@ -2027,45 +2047,46 @@ enum { field_condition = 12, field_consequence = 13, field_content = 14, - field_definition = 15, - field_element = 16, - field_expression = 17, - field_function = 18, - field_guard = 19, - field_imaginary = 20, - field_inner = 21, - field_interpolation = 22, - field_key = 23, - field_kwarg = 24, - field_left = 25, - field_module_name = 26, - field_name = 27, - field_object = 28, - field_operator = 29, - field_operators = 30, - field_parameters = 31, - field_pattern = 32, - field_prefix = 33, - field_prefix_operator = 34, - field_real = 35, - field_return_type = 36, - field_right = 37, - field_start = 38, - field_step = 39, - field_stop = 40, - field_string_content = 41, - field_subject = 42, - field_subscript = 43, - field_suffix = 44, - field_superclasses = 45, - field_target = 46, - field_test = 47, - field_trailing_comma = 48, - field_type = 49, - field_type_parameter = 50, - field_type_parameters = 51, - field_value = 52, - field_vararg = 53, + field_default = 15, + field_definition = 16, + field_element = 17, + field_expression = 18, + field_function = 19, + field_guard = 20, + field_imaginary = 21, + field_inner = 22, + field_interpolation = 23, + field_key = 24, + field_kwarg = 25, + field_left = 26, + field_module_name = 27, + field_name = 28, + field_object = 29, + field_operator = 30, + field_operators = 31, + field_parameters = 32, + field_pattern = 33, + field_prefix = 34, + field_prefix_operator = 35, + field_real = 36, + field_return_type = 37, + field_right = 38, + field_start = 39, + field_step = 40, + field_stop = 41, + field_string_content = 42, + field_subject = 43, + field_subscript = 44, + field_suffix = 45, + field_superclasses = 46, + field_target = 47, + field_test = 48, + field_trailing_comma = 49, + field_type = 50, + field_type_parameter = 51, + field_type_parameters = 52, + field_value = 53, + field_vararg = 54, }; static const char * const ts_field_names[] = { @@ -2084,6 +2105,7 @@ static const char * const ts_field_names[] = { [field_condition] = "condition", [field_consequence] = "consequence", [field_content] = "content", + [field_default] = "default", [field_definition] = "definition", [field_element] = "element", [field_expression] = "expression", @@ -2192,8 +2214,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [66] = {.index = 94, .length = 2}, [67] = {.index = 43, .length = 1}, [68] = {.index = 96, .length = 1}, - [69] = {.index = 97, .length = 1}, - [70] = {.index = 98, .length = 2}, + [69] = {.index = 97, .length = 2}, + [70] = {.index = 99, .length = 1}, [71] = {.index = 100, .length = 2}, [72] = {.index = 100, .length = 2}, [74] = {.index = 102, .length = 1}, @@ -2207,82 +2229,86 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [82] = {.index = 121, .length = 2}, [83] = {.index = 123, .length = 1}, [84] = {.index = 124, .length = 2}, - [85] = {.index = 126, .length = 1}, - [86] = {.index = 127, .length = 3}, - [87] = {.index = 130, .length = 3}, - [88] = {.index = 133, .length = 3}, - [89] = {.index = 136, .length = 3}, - [90] = {.index = 139, .length = 3}, - [91] = {.index = 142, .length = 3}, - [92] = {.index = 85, .length = 2}, - [93] = {.index = 145, .length = 1}, - [94] = {.index = 146, .length = 1}, - [95] = {.index = 147, .length = 2}, + [85] = {.index = 126, .length = 2}, + [86] = {.index = 128, .length = 1}, + [87] = {.index = 129, .length = 3}, + [88] = {.index = 132, .length = 3}, + [89] = {.index = 135, .length = 3}, + [90] = {.index = 138, .length = 3}, + [91] = {.index = 141, .length = 3}, + [92] = {.index = 144, .length = 3}, + [93] = {.index = 85, .length = 2}, + [94] = {.index = 147, .length = 1}, + [95] = {.index = 148, .length = 1}, [96] = {.index = 149, .length = 3}, [97] = {.index = 152, .length = 2}, - [98] = {.index = 154, .length = 1}, - [99] = {.index = 155, .length = 2}, + [98] = {.index = 154, .length = 2}, + [99] = {.index = 156, .length = 1}, [100] = {.index = 157, .length = 2}, - [101] = {.index = 159, .length = 4}, - [102] = {.index = 163, .length = 2}, - [103] = {.index = 165, .length = 4}, - [104] = {.index = 169, .length = 4}, - [105] = {.index = 173, .length = 2}, - [106] = {.index = 175, .length = 3}, - [107] = {.index = 178, .length = 3}, - [108] = {.index = 181, .length = 4}, - [109] = {.index = 185, .length = 2}, - [110] = {.index = 187, .length = 1}, - [111] = {.index = 188, .length = 2}, - [112] = {.index = 190, .length = 2}, - [113] = {.index = 192, .length = 4}, - [114] = {.index = 196, .length = 4}, - [115] = {.index = 200, .length = 4}, - [116] = {.index = 204, .length = 4}, - [117] = {.index = 208, .length = 4}, - [118] = {.index = 212, .length = 3}, - [119] = {.index = 215, .length = 2}, - [120] = {.index = 217, .length = 2}, - [121] = {.index = 219, .length = 2}, - [122] = {.index = 221, .length = 3}, - [123] = {.index = 224, .length = 5}, - [124] = {.index = 229, .length = 3}, - [125] = {.index = 232, .length = 4}, - [126] = {.index = 236, .length = 4}, - [127] = {.index = 240, .length = 4}, - [128] = {.index = 244, .length = 4}, - [129] = {.index = 248, .length = 2}, - [130] = {.index = 250, .length = 1}, - [131] = {.index = 251, .length = 3}, - [132] = {.index = 254, .length = 1}, - [133] = {.index = 255, .length = 2}, - [134] = {.index = 257, .length = 2}, - [135] = {.index = 259, .length = 1}, - [136] = {.index = 260, .length = 4}, - [137] = {.index = 264, .length = 5}, - [138] = {.index = 269, .length = 5}, - [139] = {.index = 274, .length = 3}, - [140] = {.index = 277, .length = 3}, - [141] = {.index = 280, .length = 4}, - [142] = {.index = 284, .length = 4}, - [143] = {.index = 288, .length = 4}, - [144] = {.index = 292, .length = 5}, - [145] = {.index = 297, .length = 5}, - [146] = {.index = 302, .length = 3}, - [147] = {.index = 305, .length = 4}, - [148] = {.index = 309, .length = 3}, - [149] = {.index = 312, .length = 3}, - [150] = {.index = 315, .length = 5}, - [151] = {.index = 320, .length = 5}, - [152] = {.index = 325, .length = 5}, - [153] = {.index = 330, .length = 5}, - [154] = {.index = 335, .length = 5}, - [155] = {.index = 340, .length = 3}, - [156] = {.index = 343, .length = 4}, - [157] = {.index = 347, .length = 2}, - [158] = {.index = 349, .length = 6}, - [159] = {.index = 355, .length = 6}, - [160] = {.index = 361, .length = 4}, + [101] = {.index = 159, .length = 2}, + [102] = {.index = 161, .length = 4}, + [103] = {.index = 165, .length = 2}, + [104] = {.index = 167, .length = 4}, + [105] = {.index = 171, .length = 4}, + [106] = {.index = 175, .length = 2}, + [107] = {.index = 177, .length = 3}, + [108] = {.index = 180, .length = 3}, + [109] = {.index = 183, .length = 4}, + [110] = {.index = 187, .length = 2}, + [111] = {.index = 189, .length = 2}, + [112] = {.index = 191, .length = 1}, + [113] = {.index = 192, .length = 1}, + [114] = {.index = 193, .length = 3}, + [115] = {.index = 196, .length = 2}, + [116] = {.index = 198, .length = 2}, + [117] = {.index = 200, .length = 4}, + [118] = {.index = 204, .length = 4}, + [119] = {.index = 208, .length = 4}, + [120] = {.index = 212, .length = 4}, + [121] = {.index = 216, .length = 4}, + [122] = {.index = 220, .length = 3}, + [123] = {.index = 223, .length = 2}, + [124] = {.index = 225, .length = 2}, + [125] = {.index = 227, .length = 2}, + [126] = {.index = 229, .length = 3}, + [127] = {.index = 232, .length = 5}, + [128] = {.index = 237, .length = 3}, + [129] = {.index = 240, .length = 4}, + [130] = {.index = 244, .length = 4}, + [131] = {.index = 248, .length = 4}, + [132] = {.index = 252, .length = 4}, + [133] = {.index = 256, .length = 2}, + [134] = {.index = 258, .length = 1}, + [135] = {.index = 259, .length = 3}, + [136] = {.index = 262, .length = 1}, + [137] = {.index = 263, .length = 2}, + [138] = {.index = 265, .length = 2}, + [139] = {.index = 267, .length = 1}, + [140] = {.index = 268, .length = 4}, + [141] = {.index = 272, .length = 5}, + [142] = {.index = 277, .length = 5}, + [143] = {.index = 282, .length = 3}, + [144] = {.index = 285, .length = 3}, + [145] = {.index = 288, .length = 4}, + [146] = {.index = 292, .length = 4}, + [147] = {.index = 296, .length = 4}, + [148] = {.index = 300, .length = 5}, + [149] = {.index = 305, .length = 5}, + [150] = {.index = 310, .length = 3}, + [151] = {.index = 313, .length = 4}, + [152] = {.index = 317, .length = 3}, + [153] = {.index = 320, .length = 3}, + [154] = {.index = 323, .length = 5}, + [155] = {.index = 328, .length = 5}, + [156] = {.index = 333, .length = 5}, + [157] = {.index = 338, .length = 5}, + [158] = {.index = 343, .length = 5}, + [159] = {.index = 348, .length = 3}, + [160] = {.index = 351, .length = 4}, + [161] = {.index = 355, .length = 2}, + [162] = {.index = 357, .length = 6}, + [163] = {.index = 363, .length = 6}, + [164] = {.index = 369, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2444,10 +2470,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [96] = {field_stop, 1}, [97] = - {field_start, 0}, - [98] = {field_subscript, 2}, {field_value, 0}, + [99] = + {field_start, 0}, [100] = {field_operators, 0}, {field_operators, 1}, @@ -2487,38 +2513,38 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_bound, 1, .inherited = true}, {field_name, 0}, [126] = + {field_default, 1, .inherited = true}, + {field_name, 0}, + [128] = {field_type_parameter, 1}, - [127] = + [129] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [130] = + [132] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [133] = + [135] = {field_body, 3}, {field_body, 4}, {field_name, 1}, - [136] = + [138] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [139] = + [141] = {field_body, 4}, {field_name, 1}, {field_superclasses, 2}, - [142] = + [144] = {field_left, 0}, {field_right, 4}, {field_type, 2}, - [145] = + [147] = {field_step, 2}, - [146] = + [148] = {field_subscript, 1}, - [147] = - {field_start, 0}, - {field_stop, 2}, [149] = {field_subscript, 2}, {field_subscript, 3, .inherited = true}, @@ -2527,275 +2553,287 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_subscript, 0, .inherited = true}, {field_subscript, 1, .inherited = true}, [154] = + {field_start, 0}, + {field_stop, 2}, + [156] = {field_name, 4, .inherited = true}, - [155] = + [157] = {field_module_name, 1}, {field_name, 4, .inherited = true}, - [157] = + [159] = {field_left, 1}, {field_right, 3}, - [159] = + [161] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [163] = + [165] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [165] = + [167] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [169] = + [171] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [173] = + [175] = {field_body, 4}, {field_body, 5}, - [175] = + [177] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [178] = + [180] = {field_body, 5}, {field_left, 1}, {field_right, 3}, - [181] = + [183] = {field_alternative, 5}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [185] = + [187] = {field_prefix_operator, 0}, {field_real, 1}, - [187] = + [189] = + {field_default, 2, .inherited = true}, + {field_name, 1}, + [191] = {field_bound, 1}, - [188] = + [192] = + {field_default, 1}, + [193] = + {field_bound, 1, .inherited = true}, + {field_default, 2, .inherited = true}, + {field_name, 0}, + [196] = {field_type_parameter, 1}, {field_type_parameter, 2, .inherited = true}, - [190] = + [198] = {field_type_parameter, 0, .inherited = true}, {field_type_parameter, 1, .inherited = true}, - [192] = + [200] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [196] = + [204] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [200] = + [208] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_type_parameters, 2}, - [204] = + [212] = {field_body, 5}, {field_name, 1}, {field_superclasses, 3}, {field_type_parameters, 2}, - [208] = + [216] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_superclasses, 2}, - [212] = + [220] = {field_name, 0}, {field_type, 2}, {field_value, 4}, - [215] = + [223] = {field_step, 3}, {field_stop, 1}, - [217] = + [225] = {field_start, 0}, {field_step, 3}, - [219] = + [227] = {field_left, 2}, {field_right, 4}, - [221] = + [229] = {field_left, 1}, {field_right, 3}, {field_right, 4}, - [224] = + [232] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [229] = + [237] = {field_body, 6}, {field_left, 2}, {field_right, 4}, - [232] = + [240] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [236] = + [244] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [240] = + [248] = {field_alternative, 6}, {field_body, 5}, {field_left, 1}, {field_right, 3}, - [244] = + [252] = {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [248] = + [256] = {field_body, 3}, {field_type, 1}, - [250] = + [258] = {field_content, 1}, - [251] = + [259] = {field_imaginary, 2}, {field_operator, 1}, {field_real, 0}, - [254] = + [262] = {field_test, 1}, - [255] = + [263] = {field_body, 3}, {field_pattern, 1}, - [257] = + [265] = {field_alias, 2}, {field_pattern, 0}, - [259] = + [267] = {field_class, 0}, - [260] = + [268] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [264] = + [272] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [269] = + [277] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_superclasses, 3}, {field_type_parameters, 2}, - [274] = + [282] = {field_start, 0}, {field_step, 4}, {field_stop, 2}, - [277] = + [285] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [280] = + [288] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [284] = + [292] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [288] = + [296] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [292] = + [300] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [297] = + [305] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [302] = + [310] = {field_body, 3}, {field_body, 4}, {field_type, 1}, - [305] = + [313] = {field_imaginary, 3}, {field_operator, 2}, {field_prefix_operator, 0}, {field_real, 1}, - [309] = + [317] = {field_body, 3}, {field_body, 4}, {field_pattern, 1}, - [312] = + [320] = {field_body, 4}, {field_guard, 2}, {field_pattern, 1}, - [315] = + [323] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [320] = + [328] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [325] = + [333] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [330] = + [338] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [335] = + [343] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [340] = + [348] = {field_alias, 3}, {field_body, 5}, {field_type, 1}, - [343] = + [351] = {field_body, 4}, {field_body, 5}, {field_guard, 2}, {field_pattern, 1}, - [347] = + [355] = {field_attribute, 0}, {field_value, 2}, - [349] = + [357] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [355] = + [363] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [361] = + [369] = {field_alias, 3}, {field_body, 5}, {field_body, 6}, @@ -2863,67 +2901,67 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [79] = { [3] = sym_block, }, - [86] = { + [87] = { [4] = sym_block, }, - [89] = { + [90] = { [4] = sym_block, }, - [90] = { + [91] = { [4] = sym_block, }, - [92] = { + [93] = { [1] = sym_parenthesized_expression, }, - [101] = { + [102] = { [3] = sym_block, }, - [106] = { + [107] = { [5] = sym_block, }, - [107] = { + [108] = { [5] = sym_block, }, - [114] = { + [118] = { [5] = sym_block, }, - [116] = { + [120] = { [5] = sym_block, }, - [124] = { + [128] = { [6] = sym_block, }, - [126] = { + [130] = { [6] = sym_block, }, - [127] = { + [131] = { [5] = sym_block, }, - [129] = { + [133] = { [3] = sym_block, }, - [133] = { + [137] = { [3] = sym_block, }, - [136] = { + [140] = { [6] = sym_block, }, - [141] = { + [145] = { [6] = sym_block, }, - [143] = { + [147] = { [7] = sym_block, }, - [149] = { + [153] = { [4] = sym_block, }, - [151] = { + [155] = { [7] = sym_block, }, - [154] = { + [158] = { [8] = sym_block, }, - [155] = { + [159] = { [5] = sym_block, }, }; @@ -2955,66 +2993,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 7, [8] = 8, [9] = 9, - [10] = 8, + [10] = 10, [11] = 11, [12] = 12, [13] = 13, [14] = 14, [15] = 15, [16] = 16, - [17] = 5, - [18] = 13, - [19] = 14, + [17] = 17, + [18] = 18, + [19] = 19, [20] = 20, - [21] = 16, + [21] = 4, [22] = 22, [23] = 23, [24] = 24, - [25] = 6, - [26] = 3, - [27] = 12, - [28] = 15, - [29] = 29, - [30] = 30, - [31] = 22, - [32] = 23, - [33] = 33, - [34] = 34, - [35] = 35, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 11, + [29] = 2, + [30] = 5, + [31] = 31, + [32] = 32, + [33] = 8, + [34] = 32, + [35] = 31, [36] = 36, - [37] = 20, + [37] = 10, [38] = 38, - [39] = 39, - [40] = 36, - [41] = 41, - [42] = 9, - [43] = 24, - [44] = 4, - [45] = 41, - [46] = 39, - [47] = 34, - [48] = 35, - [49] = 49, - [50] = 2, - [51] = 7, - [52] = 33, - [53] = 30, - [54] = 54, - [55] = 54, - [56] = 11, - [57] = 38, - [58] = 49, - [59] = 29, + [39] = 27, + [40] = 26, + [41] = 6, + [42] = 7, + [43] = 25, + [44] = 24, + [45] = 23, + [46] = 22, + [47] = 20, + [48] = 19, + [49] = 18, + [50] = 17, + [51] = 36, + [52] = 16, + [53] = 15, + [54] = 14, + [55] = 13, + [56] = 12, + [57] = 3, + [58] = 38, + [59] = 9, [60] = 60, - [61] = 60, - [62] = 60, - [63] = 63, - [64] = 64, - [65] = 60, - [66] = 60, - [67] = 63, - [68] = 60, - [69] = 60, + [61] = 61, + [62] = 62, + [63] = 61, + [64] = 61, + [65] = 62, + [66] = 61, + [67] = 61, + [68] = 61, + [69] = 61, [70] = 70, [71] = 70, [72] = 72, @@ -3028,141 +3066,141 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [80] = 80, [81] = 81, [82] = 82, - [83] = 80, + [83] = 83, [84] = 84, - [85] = 74, + [85] = 85, [86] = 86, - [87] = 82, + [87] = 87, [88] = 88, [89] = 89, - [90] = 84, - [91] = 72, - [92] = 92, - [93] = 93, - [94] = 77, + [90] = 73, + [91] = 85, + [92] = 80, + [93] = 81, + [94] = 82, [95] = 95, [96] = 96, - [97] = 97, + [97] = 83, [98] = 76, - [99] = 89, + [99] = 74, [100] = 100, - [101] = 78, - [102] = 102, - [103] = 103, + [101] = 101, + [102] = 96, + [103] = 75, [104] = 104, - [105] = 105, - [106] = 102, - [107] = 81, - [108] = 108, - [109] = 96, - [110] = 88, - [111] = 93, - [112] = 112, - [113] = 105, + [105] = 88, + [106] = 84, + [107] = 77, + [108] = 86, + [109] = 89, + [110] = 101, + [111] = 111, + [112] = 79, + [113] = 78, [114] = 114, [115] = 115, [116] = 116, - [117] = 79, - [118] = 73, - [119] = 108, - [120] = 92, - [121] = 116, - [122] = 115, - [123] = 104, - [124] = 97, - [125] = 103, - [126] = 100, - [127] = 95, - [128] = 112, - [129] = 86, - [130] = 114, + [117] = 117, + [118] = 104, + [119] = 100, + [120] = 95, + [121] = 121, + [122] = 122, + [123] = 121, + [124] = 72, + [125] = 116, + [126] = 117, + [127] = 111, + [128] = 122, + [129] = 114, + [130] = 115, [131] = 131, [132] = 132, [133] = 133, - [134] = 133, - [135] = 135, - [136] = 135, + [134] = 134, + [135] = 133, + [136] = 133, [137] = 133, - [138] = 133, - [139] = 133, - [140] = 133, - [141] = 135, - [142] = 135, - [143] = 135, - [144] = 135, + [138] = 134, + [139] = 134, + [140] = 134, + [141] = 134, + [142] = 134, + [143] = 133, + [144] = 134, [145] = 133, - [146] = 135, + [146] = 133, [147] = 147, [148] = 148, [149] = 148, [150] = 148, - [151] = 151, - [152] = 131, + [151] = 132, + [152] = 152, [153] = 148, - [154] = 151, + [154] = 152, [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, [160] = 159, - [161] = 159, - [162] = 162, + [161] = 161, + [162] = 161, [163] = 163, - [164] = 162, + [164] = 161, [165] = 165, - [166] = 166, + [166] = 165, [167] = 167, [168] = 168, - [169] = 166, - [170] = 166, + [169] = 169, + [170] = 170, [171] = 171, - [172] = 172, + [172] = 165, [173] = 173, - [174] = 174, + [174] = 173, [175] = 175, [176] = 176, [177] = 177, [178] = 178, - [179] = 177, - [180] = 158, + [179] = 179, + [180] = 173, [181] = 181, - [182] = 182, - [183] = 178, - [184] = 177, + [182] = 158, + [183] = 183, + [184] = 181, [185] = 185, [186] = 186, [187] = 187, [188] = 188, [189] = 189, - [190] = 187, - [191] = 187, - [192] = 192, - [193] = 188, - [194] = 194, - [195] = 168, + [190] = 190, + [191] = 191, + [192] = 167, + [193] = 193, + [194] = 188, + [195] = 195, [196] = 196, - [197] = 194, - [198] = 189, - [199] = 199, + [197] = 171, + [198] = 186, + [199] = 187, [200] = 200, - [201] = 201, - [202] = 202, - [203] = 196, - [204] = 188, - [205] = 171, - [206] = 194, - [207] = 189, - [208] = 186, - [209] = 199, - [210] = 167, - [211] = 200, - [212] = 188, - [213] = 213, - [214] = 186, - [215] = 199, - [216] = 196, - [217] = 187, + [201] = 170, + [202] = 186, + [203] = 189, + [204] = 187, + [205] = 196, + [206] = 190, + [207] = 193, + [208] = 190, + [209] = 188, + [210] = 193, + [211] = 211, + [212] = 189, + [213] = 196, + [214] = 200, + [215] = 188, + [216] = 216, + [217] = 189, [218] = 218, [219] = 219, [220] = 220, @@ -3178,57 +3216,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [230] = 230, [231] = 231, [232] = 232, - [233] = 233, - [234] = 234, - [235] = 233, + [233] = 230, + [234] = 232, + [235] = 228, [236] = 236, - [237] = 234, - [238] = 232, - [239] = 236, - [240] = 229, - [241] = 228, - [242] = 242, + [237] = 237, + [238] = 229, + [239] = 239, + [240] = 240, + [241] = 240, + [242] = 236, [243] = 243, - [244] = 244, - [245] = 244, + [244] = 240, + [245] = 243, [246] = 246, - [247] = 247, - [248] = 243, - [249] = 243, - [250] = 242, - [251] = 246, - [252] = 246, - [253] = 242, - [254] = 247, - [255] = 255, - [256] = 256, - [257] = 255, - [258] = 258, + [247] = 239, + [248] = 246, + [249] = 246, + [250] = 243, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 253, + [256] = 251, + [257] = 252, + [258] = 251, [259] = 259, - [260] = 256, + [260] = 259, [261] = 261, - [262] = 261, - [263] = 263, + [262] = 259, + [263] = 261, [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, + [265] = 261, + [266] = 252, + [267] = 264, [268] = 268, - [269] = 261, - [270] = 267, - [271] = 266, - [272] = 268, - [273] = 256, - [274] = 255, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, [275] = 275, - [276] = 263, - [277] = 258, + [276] = 274, + [277] = 277, [278] = 278, - [279] = 265, - [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, + [279] = 275, + [280] = 273, + [281] = 272, + [282] = 268, + [283] = 271, [284] = 284, [285] = 285, [286] = 286, @@ -3236,100 +3274,100 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [288] = 288, [289] = 289, [290] = 290, - [291] = 281, - [292] = 283, + [291] = 291, + [292] = 292, [293] = 293, [294] = 294, [295] = 295, [296] = 296, [297] = 297, - [298] = 296, + [298] = 298, [299] = 299, - [300] = 300, - [301] = 299, + [300] = 287, + [301] = 301, [302] = 302, [303] = 303, [304] = 304, - [305] = 288, - [306] = 306, - [307] = 285, + [305] = 305, + [306] = 305, + [307] = 307, [308] = 308, [309] = 309, - [310] = 299, - [311] = 287, - [312] = 312, - [313] = 308, - [314] = 314, - [315] = 282, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 288, - [320] = 320, - [321] = 321, - [322] = 322, + [310] = 310, + [311] = 291, + [312] = 292, + [313] = 302, + [314] = 303, + [315] = 308, + [316] = 310, + [317] = 227, + [318] = 305, + [319] = 291, + [320] = 305, + [321] = 292, + [322] = 303, [323] = 323, [324] = 324, - [325] = 325, - [326] = 281, - [327] = 316, + [325] = 291, + [326] = 326, + [327] = 223, [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 317, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 226, - [337] = 218, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 321, - [342] = 220, - [343] = 221, - [344] = 223, + [329] = 218, + [330] = 224, + [331] = 292, + [332] = 332, + [333] = 308, + [334] = 225, + [335] = 291, + [336] = 305, + [337] = 292, + [338] = 308, + [339] = 303, + [340] = 292, + [341] = 303, + [342] = 305, + [343] = 343, + [344] = 344, [345] = 345, - [346] = 322, - [347] = 347, - [348] = 348, - [349] = 347, - [350] = 323, - [351] = 351, - [352] = 219, - [353] = 340, - [354] = 288, - [355] = 282, - [356] = 281, - [357] = 333, - [358] = 308, - [359] = 288, - [360] = 308, - [361] = 361, - [362] = 308, - [363] = 329, - [364] = 364, - [365] = 227, - [366] = 328, - [367] = 287, - [368] = 324, - [369] = 308, - [370] = 281, - [371] = 282, - [372] = 318, - [373] = 320, - [374] = 287, - [375] = 287, - [376] = 281, - [377] = 325, - [378] = 287, - [379] = 282, - [380] = 345, - [381] = 288, - [382] = 282, - [383] = 335, - [384] = 331, + [346] = 308, + [347] = 344, + [348] = 323, + [349] = 291, + [350] = 308, + [351] = 220, + [352] = 352, + [353] = 353, + [354] = 326, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 355, + [360] = 360, + [361] = 343, + [362] = 362, + [363] = 357, + [364] = 324, + [365] = 358, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 366, + [370] = 368, + [371] = 226, + [372] = 372, + [373] = 332, + [374] = 372, + [375] = 375, + [376] = 303, + [377] = 377, + [378] = 377, + [379] = 379, + [380] = 362, + [381] = 381, + [382] = 379, + [383] = 381, + [384] = 352, [385] = 385, [386] = 386, [387] = 387, @@ -3342,7 +3380,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [394] = 394, [395] = 395, [396] = 396, - [397] = 397, + [397] = 391, [398] = 398, [399] = 399, [400] = 400, @@ -3350,128 +3388,128 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [402] = 402, [403] = 403, [404] = 404, - [405] = 389, + [405] = 405, [406] = 406, - [407] = 403, - [408] = 408, - [409] = 396, - [410] = 396, - [411] = 395, + [407] = 388, + [408] = 403, + [409] = 409, + [410] = 409, + [411] = 403, [412] = 412, [413] = 413, - [414] = 408, - [415] = 386, - [416] = 402, - [417] = 417, - [418] = 387, - [419] = 391, + [414] = 414, + [415] = 415, + [416] = 393, + [417] = 406, + [418] = 404, + [419] = 419, [420] = 420, - [421] = 388, - [422] = 392, - [423] = 404, + [421] = 421, + [422] = 422, + [423] = 423, [424] = 400, - [425] = 425, - [426] = 386, + [425] = 391, + [426] = 426, [427] = 427, - [428] = 427, - [429] = 386, + [428] = 387, + [429] = 429, [430] = 430, [431] = 431, - [432] = 430, - [433] = 420, + [432] = 432, + [433] = 412, [434] = 434, - [435] = 435, - [436] = 397, - [437] = 397, + [435] = 387, + [436] = 427, + [437] = 390, [438] = 438, - [439] = 385, - [440] = 413, - [441] = 441, - [442] = 442, - [443] = 385, + [439] = 438, + [440] = 389, + [441] = 389, + [442] = 409, + [443] = 443, [444] = 444, - [445] = 391, - [446] = 395, - [447] = 425, - [448] = 389, - [449] = 449, + [445] = 402, + [446] = 446, + [447] = 394, + [448] = 448, + [449] = 448, [450] = 450, [451] = 451, - [452] = 392, + [452] = 452, [453] = 453, - [454] = 454, + [454] = 421, [455] = 395, - [456] = 385, - [457] = 396, - [458] = 444, - [459] = 459, - [460] = 442, + [456] = 386, + [457] = 426, + [458] = 404, + [459] = 400, + [460] = 430, [461] = 461, - [462] = 462, - [463] = 444, - [464] = 464, - [465] = 397, - [466] = 466, - [467] = 454, - [468] = 398, - [469] = 406, - [470] = 391, - [471] = 399, - [472] = 464, + [462] = 448, + [463] = 398, + [464] = 387, + [465] = 409, + [466] = 405, + [467] = 406, + [468] = 403, + [469] = 389, + [470] = 470, + [471] = 406, + [472] = 404, [473] = 473, - [474] = 473, - [475] = 475, - [476] = 392, - [477] = 477, - [478] = 401, - [479] = 479, + [474] = 443, + [475] = 400, + [476] = 461, + [477] = 391, + [478] = 415, + [479] = 448, [480] = 480, - [481] = 444, - [482] = 389, + [481] = 453, + [482] = 419, [483] = 483, - [484] = 412, + [484] = 432, [485] = 485, - [486] = 485, + [486] = 486, [487] = 487, [488] = 488, - [489] = 489, - [490] = 487, - [491] = 491, + [489] = 486, + [490] = 490, + [491] = 490, [492] = 492, - [493] = 492, - [494] = 491, + [493] = 493, + [494] = 487, [495] = 488, - [496] = 489, - [497] = 497, + [496] = 492, + [497] = 493, [498] = 498, [499] = 499, [500] = 500, [501] = 501, - [502] = 502, + [502] = 498, [503] = 503, [504] = 504, [505] = 505, [506] = 506, - [507] = 507, + [507] = 504, [508] = 508, [509] = 509, [510] = 510, - [511] = 511, + [511] = 510, [512] = 512, - [513] = 512, + [513] = 513, [514] = 514, - [515] = 498, - [516] = 507, + [515] = 515, + [516] = 512, [517] = 517, [518] = 518, [519] = 519, - [520] = 504, + [520] = 520, [521] = 521, [522] = 522, [523] = 523, [524] = 524, - [525] = 500, - [526] = 524, + [525] = 513, + [526] = 526, [527] = 527, [528] = 528, [529] = 529, @@ -3481,66 +3519,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [533] = 533, [534] = 534, [535] = 535, - [536] = 534, - [537] = 529, - [538] = 530, - [539] = 511, - [540] = 533, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 524, + [540] = 540, [541] = 541, - [542] = 502, + [542] = 505, [543] = 543, [544] = 544, - [545] = 510, - [546] = 509, + [545] = 545, + [546] = 503, [547] = 508, - [548] = 501, - [549] = 549, - [550] = 527, - [551] = 503, + [548] = 545, + [549] = 540, + [550] = 533, + [551] = 551, [552] = 552, - [553] = 531, - [554] = 549, - [555] = 528, - [556] = 506, - [557] = 505, - [558] = 532, - [559] = 559, - [560] = 543, - [561] = 561, - [562] = 541, - [563] = 535, - [564] = 559, - [565] = 561, - [566] = 517, + [553] = 553, + [554] = 523, + [555] = 541, + [556] = 543, + [557] = 538, + [558] = 553, + [559] = 532, + [560] = 560, + [561] = 522, + [562] = 562, + [563] = 563, + [564] = 515, + [565] = 501, + [566] = 527, [567] = 567, - [568] = 514, - [569] = 567, - [570] = 570, - [571] = 571, - [572] = 571, - [573] = 573, - [574] = 573, - [575] = 575, - [576] = 522, - [577] = 575, - [578] = 544, - [579] = 579, - [580] = 497, - [581] = 581, - [582] = 582, - [583] = 579, + [568] = 517, + [569] = 518, + [570] = 519, + [571] = 506, + [572] = 521, + [573] = 500, + [574] = 560, + [575] = 520, + [576] = 576, + [577] = 526, + [578] = 563, + [579] = 562, + [580] = 576, + [581] = 528, + [582] = 529, + [583] = 534, [584] = 499, - [585] = 570, - [586] = 581, - [587] = 587, - [588] = 523, - [589] = 582, - [590] = 587, - [591] = 518, - [592] = 521, - [593] = 519, - [594] = 552, - [595] = 595, + [585] = 537, + [586] = 535, + [587] = 552, + [588] = 551, + [589] = 544, + [590] = 536, + [591] = 509, + [592] = 530, + [593] = 531, + [594] = 514, + [595] = 567, [596] = 596, [597] = 597, [598] = 598, @@ -3548,10 +3586,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [600] = 600, [601] = 601, [602] = 602, - [603] = 603, - [604] = 602, - [605] = 603, - [606] = 606, + [603] = 599, + [604] = 604, + [605] = 605, + [606] = 602, [607] = 607, [608] = 608, [609] = 609, @@ -3575,7 +3613,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [627] = 627, [628] = 628, [629] = 629, - [630] = 630, + [630] = 621, [631] = 631, [632] = 632, [633] = 633, @@ -3588,216 +3626,216 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [640] = 640, [641] = 641, [642] = 642, - [643] = 630, + [643] = 643, [644] = 644, [645] = 645, [646] = 646, [647] = 647, - [648] = 647, + [648] = 648, [649] = 649, - [650] = 650, - [651] = 651, + [650] = 648, + [651] = 647, [652] = 652, [653] = 653, - [654] = 651, - [655] = 645, + [654] = 654, + [655] = 646, [656] = 656, - [657] = 656, + [657] = 657, [658] = 653, - [659] = 659, - [660] = 646, - [661] = 650, + [659] = 656, + [660] = 654, + [661] = 661, [662] = 662, - [663] = 662, - [664] = 659, - [665] = 652, - [666] = 649, - [667] = 667, + [663] = 649, + [664] = 652, + [665] = 661, + [666] = 662, + [667] = 657, [668] = 668, - [669] = 669, - [670] = 669, + [669] = 668, + [670] = 670, [671] = 671, - [672] = 672, - [673] = 669, - [674] = 667, - [675] = 668, - [676] = 669, - [677] = 599, - [678] = 598, - [679] = 679, - [680] = 680, + [672] = 668, + [673] = 673, + [674] = 600, + [675] = 675, + [676] = 673, + [677] = 670, + [678] = 601, + [679] = 668, + [680] = 600, [681] = 681, [682] = 682, - [683] = 683, - [684] = 630, + [683] = 607, + [684] = 684, [685] = 685, - [686] = 682, + [686] = 686, [687] = 687, [688] = 688, - [689] = 599, - [690] = 690, - [691] = 679, - [692] = 681, - [693] = 693, - [694] = 679, - [695] = 695, - [696] = 680, - [697] = 695, + [689] = 685, + [690] = 686, + [691] = 691, + [692] = 601, + [693] = 682, + [694] = 694, + [695] = 682, + [696] = 696, + [697] = 691, [698] = 698, - [699] = 690, - [700] = 682, - [701] = 688, - [702] = 680, - [703] = 695, - [704] = 681, - [705] = 690, - [706] = 687, - [707] = 698, - [708] = 687, - [709] = 683, - [710] = 687, - [711] = 682, - [712] = 679, - [713] = 600, - [714] = 690, - [715] = 715, - [716] = 693, - [717] = 681, - [718] = 688, - [719] = 683, - [720] = 598, - [721] = 695, - [722] = 680, - [723] = 698, + [699] = 687, + [700] = 700, + [701] = 671, + [702] = 698, + [703] = 675, + [704] = 704, + [705] = 700, + [706] = 688, + [707] = 686, + [708] = 696, + [709] = 694, + [710] = 621, + [711] = 687, + [712] = 694, + [713] = 685, + [714] = 698, + [715] = 691, + [716] = 696, + [717] = 698, + [718] = 696, + [719] = 691, + [720] = 685, + [721] = 704, + [722] = 686, + [723] = 688, [724] = 688, - [725] = 672, - [726] = 683, - [727] = 671, - [728] = 698, - [729] = 693, - [730] = 693, - [731] = 662, - [732] = 649, + [725] = 687, + [726] = 704, + [727] = 704, + [728] = 700, + [729] = 682, + [730] = 694, + [731] = 700, + [732] = 648, [733] = 652, - [734] = 659, - [735] = 647, - [736] = 609, - [737] = 653, - [738] = 651, - [739] = 645, - [740] = 630, - [741] = 646, - [742] = 600, - [743] = 656, - [744] = 610, - [745] = 650, - [746] = 662, - [747] = 651, - [748] = 748, - [749] = 330, - [750] = 653, - [751] = 652, - [752] = 649, - [753] = 647, - [754] = 667, - [755] = 668, - [756] = 645, - [757] = 659, - [758] = 609, - [759] = 759, - [760] = 760, - [761] = 646, - [762] = 449, - [763] = 656, - [764] = 334, - [765] = 475, - [766] = 650, - [767] = 767, - [768] = 441, - [769] = 610, - [770] = 431, - [771] = 626, - [772] = 639, - [773] = 625, - [774] = 624, - [775] = 637, - [776] = 620, - [777] = 623, - [778] = 617, - [779] = 475, - [780] = 622, - [781] = 629, - [782] = 632, - [783] = 615, - [784] = 627, - [785] = 628, - [786] = 671, - [787] = 672, - [788] = 631, - [789] = 441, - [790] = 634, - [791] = 635, - [792] = 633, + [734] = 646, + [735] = 610, + [736] = 649, + [737] = 657, + [738] = 647, + [739] = 607, + [740] = 621, + [741] = 662, + [742] = 656, + [743] = 611, + [744] = 653, + [745] = 654, + [746] = 661, + [747] = 747, + [748] = 656, + [749] = 470, + [750] = 654, + [751] = 423, + [752] = 653, + [753] = 652, + [754] = 661, + [755] = 646, + [756] = 673, + [757] = 611, + [758] = 758, + [759] = 657, + [760] = 367, + [761] = 761, + [762] = 670, + [763] = 662, + [764] = 647, + [765] = 648, + [766] = 610, + [767] = 392, + [768] = 768, + [769] = 385, + [770] = 444, + [771] = 649, + [772] = 636, + [773] = 615, + [774] = 627, + [775] = 673, + [776] = 631, + [777] = 632, + [778] = 618, + [779] = 643, + [780] = 638, + [781] = 637, + [782] = 617, + [783] = 633, + [784] = 628, + [785] = 635, + [786] = 639, + [787] = 640, + [788] = 612, + [789] = 614, + [790] = 619, + [791] = 644, + [792] = 620, [793] = 613, - [794] = 618, - [795] = 612, - [796] = 640, - [797] = 642, - [798] = 667, - [799] = 621, - [800] = 641, - [801] = 668, - [802] = 644, - [803] = 619, - [804] = 611, - [805] = 638, - [806] = 431, - [807] = 616, - [808] = 614, - [809] = 634, - [810] = 220, - [811] = 642, - [812] = 759, - [813] = 626, - [814] = 625, - [815] = 624, - [816] = 623, - [817] = 611, - [818] = 622, - [819] = 637, - [820] = 621, - [821] = 620, - [822] = 219, - [823] = 616, - [824] = 614, - [825] = 629, - [826] = 641, - [827] = 632, - [828] = 638, - [829] = 227, - [830] = 644, - [831] = 613, - [832] = 618, - [833] = 631, - [834] = 223, - [835] = 640, - [836] = 221, - [837] = 760, - [838] = 639, - [839] = 612, - [840] = 627, - [841] = 617, - [842] = 628, - [843] = 615, - [844] = 218, - [845] = 226, - [846] = 619, - [847] = 633, - [848] = 635, - [849] = 849, + [794] = 629, + [795] = 622, + [796] = 671, + [797] = 444, + [798] = 634, + [799] = 624, + [800] = 470, + [801] = 675, + [802] = 670, + [803] = 625, + [804] = 641, + [805] = 626, + [806] = 645, + [807] = 642, + [808] = 616, + [809] = 423, + [810] = 638, + [811] = 624, + [812] = 637, + [813] = 622, + [814] = 639, + [815] = 616, + [816] = 627, + [817] = 631, + [818] = 634, + [819] = 613, + [820] = 643, + [821] = 645, + [822] = 635, + [823] = 633, + [824] = 632, + [825] = 620, + [826] = 636, + [827] = 226, + [828] = 641, + [829] = 220, + [830] = 227, + [831] = 761, + [832] = 642, + [833] = 625, + [834] = 626, + [835] = 223, + [836] = 617, + [837] = 629, + [838] = 224, + [839] = 225, + [840] = 644, + [841] = 614, + [842] = 218, + [843] = 640, + [844] = 619, + [845] = 612, + [846] = 628, + [847] = 615, + [848] = 618, + [849] = 758, [850] = 850, [851] = 851, - [852] = 849, + [852] = 851, [853] = 853, [854] = 854, [855] = 855, @@ -3814,92 +3852,92 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [866] = 866, [867] = 867, [868] = 868, - [869] = 868, + [869] = 869, [870] = 870, - [871] = 870, - [872] = 872, + [871] = 869, + [872] = 870, [873] = 873, [874] = 874, [875] = 875, [876] = 876, - [877] = 868, - [878] = 870, - [879] = 879, - [880] = 880, - [881] = 870, - [882] = 882, - [883] = 868, - [884] = 884, + [877] = 877, + [878] = 878, + [879] = 869, + [880] = 870, + [881] = 881, + [882] = 870, + [883] = 883, + [884] = 869, [885] = 885, - [886] = 885, + [886] = 886, [887] = 887, - [888] = 885, - [889] = 889, - [890] = 885, - [891] = 891, + [888] = 888, + [889] = 888, + [890] = 888, + [891] = 888, [892] = 892, [893] = 893, [894] = 894, [895] = 895, [896] = 896, - [897] = 897, - [898] = 895, - [899] = 896, - [900] = 900, + [897] = 896, + [898] = 898, + [899] = 899, + [900] = 899, [901] = 901, [902] = 902, - [903] = 902, - [904] = 904, + [903] = 903, + [904] = 902, [905] = 905, [906] = 906, [907] = 907, [908] = 908, [909] = 909, [910] = 910, - [911] = 907, + [911] = 911, [912] = 912, [913] = 913, - [914] = 914, + [914] = 909, [915] = 915, [916] = 916, [917] = 917, - [918] = 907, - [919] = 909, - [920] = 920, - [921] = 914, - [922] = 916, - [923] = 908, - [924] = 912, + [918] = 918, + [919] = 919, + [920] = 910, + [921] = 921, + [922] = 919, + [923] = 910, + [924] = 918, [925] = 925, - [926] = 926, - [927] = 920, - [928] = 926, - [929] = 929, + [926] = 909, + [927] = 909, + [928] = 928, + [929] = 913, [930] = 930, - [931] = 930, - [932] = 932, + [931] = 915, + [932] = 913, [933] = 933, [934] = 934, - [935] = 932, - [936] = 936, - [937] = 937, - [938] = 936, - [939] = 939, + [935] = 925, + [936] = 910, + [937] = 908, + [938] = 917, + [939] = 916, [940] = 940, - [941] = 932, - [942] = 936, + [941] = 941, + [942] = 942, [943] = 943, - [944] = 934, - [945] = 930, - [946] = 940, - [947] = 947, - [948] = 948, - [949] = 936, - [950] = 934, + [944] = 944, + [945] = 942, + [946] = 946, + [947] = 940, + [948] = 942, + [949] = 949, + [950] = 940, [951] = 951, - [952] = 934, - [953] = 940, - [954] = 954, + [952] = 952, + [953] = 944, + [954] = 944, [955] = 955, [956] = 956, [957] = 957, @@ -3910,174 +3948,174 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [962] = 962, [963] = 963, [964] = 964, - [965] = 965, + [965] = 915, [966] = 966, - [967] = 904, + [967] = 967, [968] = 968, [969] = 969, [970] = 970, [971] = 971, - [972] = 972, - [973] = 973, - [974] = 914, - [975] = 975, - [976] = 901, + [972] = 916, + [973] = 917, + [974] = 905, + [975] = 908, + [976] = 976, [977] = 977, [978] = 978, [979] = 979, - [980] = 926, - [981] = 981, + [980] = 980, + [981] = 967, [982] = 982, [983] = 983, [984] = 984, [985] = 985, [986] = 986, [987] = 987, - [988] = 988, + [988] = 925, [989] = 989, [990] = 990, - [991] = 965, - [992] = 909, + [991] = 991, + [992] = 992, [993] = 993, [994] = 994, [995] = 995, [996] = 996, - [997] = 912, + [997] = 997, [998] = 998, [999] = 999, - [1000] = 916, - [1001] = 920, - [1002] = 996, - [1003] = 983, - [1004] = 1004, + [1000] = 1000, + [1001] = 1001, + [1002] = 1001, + [1003] = 1003, + [1004] = 976, [1005] = 1005, - [1006] = 1006, - [1007] = 908, + [1006] = 918, + [1007] = 1007, [1008] = 1008, - [1009] = 900, + [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 929, - [1015] = 900, - [1016] = 1016, + [1012] = 903, + [1013] = 919, + [1014] = 1014, + [1015] = 1015, + [1016] = 901, [1017] = 1017, [1018] = 1018, - [1019] = 1019, + [1019] = 941, [1020] = 1020, [1021] = 1021, [1022] = 1022, [1023] = 1023, [1024] = 1024, - [1025] = 926, + [1025] = 1024, [1026] = 1026, - [1027] = 912, - [1028] = 914, - [1029] = 920, - [1030] = 916, - [1031] = 1031, + [1027] = 915, + [1028] = 919, + [1029] = 917, + [1030] = 1030, + [1031] = 916, [1032] = 908, - [1033] = 1033, - [1034] = 1034, - [1035] = 909, - [1036] = 933, + [1033] = 925, + [1034] = 918, + [1035] = 928, + [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 1039, - [1040] = 1021, + [1039] = 1023, + [1040] = 943, [1041] = 1041, - [1042] = 901, + [1042] = 952, [1043] = 1043, [1044] = 1044, [1045] = 1045, [1046] = 1046, - [1047] = 1021, - [1048] = 947, - [1049] = 1038, - [1050] = 1050, - [1051] = 904, - [1052] = 1038, - [1053] = 1053, - [1054] = 948, + [1047] = 1024, + [1048] = 1048, + [1049] = 1049, + [1050] = 1023, + [1051] = 1051, + [1052] = 1052, + [1053] = 905, + [1054] = 903, [1055] = 1055, [1056] = 1056, - [1057] = 906, + [1057] = 901, [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 1063, + [1063] = 1059, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 1058, - [1069] = 1069, + [1068] = 1068, + [1069] = 1051, [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, - [1075] = 1059, + [1075] = 1075, [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1079, - [1080] = 1079, - [1081] = 1063, - [1082] = 1022, + [1079] = 1074, + [1080] = 1062, + [1081] = 1081, + [1082] = 1061, [1083] = 1083, [1084] = 1084, - [1085] = 1070, + [1085] = 907, [1086] = 1086, - [1087] = 1087, - [1088] = 1061, + [1087] = 1067, + [1088] = 1088, [1089] = 1089, [1090] = 1090, [1091] = 1091, - [1092] = 964, + [1092] = 1058, [1093] = 1093, - [1094] = 939, + [1094] = 1094, [1095] = 1095, - [1096] = 1005, + [1096] = 992, [1097] = 1097, - [1098] = 1098, - [1099] = 1099, + [1098] = 949, + [1099] = 1048, [1100] = 1100, - [1101] = 917, - [1102] = 1039, - [1103] = 1103, + [1101] = 1101, + [1102] = 1102, + [1103] = 934, [1104] = 1104, [1105] = 1105, - [1106] = 1106, + [1106] = 993, [1107] = 1107, - [1108] = 1107, + [1108] = 1108, [1109] = 1109, [1110] = 1110, [1111] = 1111, - [1112] = 985, - [1113] = 1113, + [1112] = 1112, + [1113] = 1112, [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1119, - [1120] = 1097, + [1119] = 1100, + [1120] = 1120, [1121] = 1121, [1122] = 1122, - [1123] = 1104, + [1123] = 1123, [1124] = 1124, - [1125] = 1125, + [1125] = 1015, [1126] = 1126, [1127] = 1127, [1128] = 1128, [1129] = 1129, - [1130] = 1130, + [1130] = 1107, [1131] = 1131, - [1132] = 1128, + [1132] = 1132, [1133] = 1133, [1134] = 1134, [1135] = 1135, @@ -4085,216 +4123,216 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1137] = 1137, [1138] = 1138, [1139] = 1139, - [1140] = 1140, + [1140] = 1138, [1141] = 1141, - [1142] = 1095, - [1143] = 1143, + [1142] = 1142, + [1143] = 1128, [1144] = 1144, [1145] = 1145, [1146] = 1146, - [1147] = 1093, - [1148] = 1148, - [1149] = 1149, + [1147] = 1147, + [1148] = 1136, + [1149] = 1138, [1150] = 1150, - [1151] = 1141, - [1152] = 1149, - [1153] = 1140, - [1154] = 1154, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1151, [1155] = 1155, - [1156] = 1156, - [1157] = 1134, - [1158] = 1135, - [1159] = 1136, + [1156] = 1138, + [1157] = 1142, + [1158] = 1094, + [1159] = 1139, [1160] = 1160, - [1161] = 1109, + [1161] = 1161, [1162] = 1162, [1163] = 1163, - [1164] = 1164, - [1165] = 1165, + [1164] = 1144, + [1165] = 1136, [1166] = 1166, [1167] = 1167, - [1168] = 913, - [1169] = 1149, + [1168] = 1155, + [1169] = 1169, [1170] = 1170, - [1171] = 1171, + [1171] = 1136, [1172] = 1172, [1173] = 1173, - [1174] = 1174, + [1174] = 1152, [1175] = 1175, - [1176] = 1131, + [1176] = 1169, [1177] = 1177, - [1178] = 1178, - [1179] = 1129, + [1178] = 1138, + [1179] = 1179, [1180] = 1180, - [1181] = 1173, - [1182] = 1118, - [1183] = 1183, - [1184] = 1180, + [1181] = 1181, + [1182] = 933, + [1183] = 1095, + [1184] = 1184, [1185] = 1185, - [1186] = 1149, - [1187] = 1023, - [1188] = 1188, - [1189] = 1189, + [1186] = 1186, + [1187] = 1187, + [1188] = 1136, + [1189] = 1136, [1190] = 1190, - [1191] = 1191, + [1191] = 1147, [1192] = 1192, [1193] = 1193, [1194] = 1194, [1195] = 1195, - [1196] = 1196, - [1197] = 1197, + [1196] = 1173, + [1197] = 1144, [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, + [1199] = 1144, + [1200] = 1093, + [1201] = 1187, + [1202] = 1136, [1203] = 1203, [1204] = 1204, - [1205] = 1164, - [1206] = 1163, - [1207] = 1207, + [1205] = 1205, + [1206] = 1150, + [1207] = 1138, [1208] = 1208, - [1209] = 1209, + [1209] = 1138, [1210] = 1210, [1211] = 1211, - [1212] = 1212, + [1212] = 1052, [1213] = 1213, - [1214] = 1209, + [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 282, + [1217] = 1217, [1218] = 1218, [1219] = 1219, [1220] = 1220, [1221] = 1221, - [1222] = 1074, + [1222] = 1222, [1223] = 1223, - [1224] = 1210, - [1225] = 1225, + [1224] = 1224, + [1225] = 1072, [1226] = 1226, [1227] = 1227, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1194, + [1228] = 1224, + [1229] = 1216, + [1230] = 1214, + [1231] = 1218, [1232] = 1232, - [1233] = 308, + [1233] = 1233, [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 1194, - [1238] = 1209, + [1237] = 1237, + [1238] = 1238, [1239] = 1239, - [1240] = 1189, - [1241] = 1194, - [1242] = 1242, - [1243] = 1242, - [1244] = 1209, - [1245] = 1183, - [1246] = 1194, - [1247] = 1234, - [1248] = 1209, - [1249] = 1204, - [1250] = 1250, - [1251] = 1219, - [1252] = 1252, - [1253] = 1060, - [1254] = 1194, - [1255] = 1239, - [1256] = 1256, + [1240] = 1240, + [1241] = 1241, + [1242] = 610, + [1243] = 1243, + [1244] = 1244, + [1245] = 611, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1248, + [1251] = 1251, + [1252] = 1244, + [1253] = 1253, + [1254] = 1241, + [1255] = 1255, + [1256] = 291, [1257] = 1257, - [1258] = 1220, + [1258] = 1258, [1259] = 1259, [1260] = 1260, - [1261] = 1209, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 281, + [1261] = 1218, + [1262] = 1216, + [1263] = 1223, + [1264] = 1224, + [1265] = 1226, [1266] = 1266, - [1267] = 1267, + [1267] = 1234, [1268] = 1268, [1269] = 1269, [1270] = 1270, - [1271] = 1196, - [1272] = 1203, - [1273] = 1228, - [1274] = 1230, - [1275] = 1275, - [1276] = 1197, - [1277] = 1264, - [1278] = 1260, - [1279] = 1230, - [1280] = 1228, + [1271] = 1271, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1146, + [1276] = 1276, + [1277] = 1244, + [1278] = 1278, + [1279] = 1219, + [1280] = 1219, [1281] = 1281, - [1282] = 1203, - [1283] = 1196, - [1284] = 1284, - [1285] = 1264, - [1286] = 1221, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 609, + [1282] = 1282, + [1283] = 1283, + [1284] = 1220, + [1285] = 1285, + [1286] = 1236, + [1287] = 1247, + [1288] = 1248, + [1289] = 1249, + [1290] = 1251, + [1291] = 1291, [1292] = 1292, - [1293] = 1293, - [1294] = 1220, - [1295] = 1275, + [1293] = 1175, + [1294] = 1226, + [1295] = 1295, [1296] = 1296, - [1297] = 1256, - [1298] = 1239, + [1297] = 1297, + [1298] = 1298, [1299] = 1299, - [1300] = 1234, + [1300] = 1300, [1301] = 1301, - [1302] = 1242, - [1303] = 1303, - [1304] = 287, - [1305] = 1305, - [1306] = 1199, - [1307] = 1069, - [1308] = 1308, - [1309] = 1194, + [1302] = 1302, + [1303] = 1180, + [1304] = 1060, + [1305] = 1221, + [1306] = 1306, + [1307] = 1307, + [1308] = 1282, + [1309] = 1270, [1310] = 1310, - [1311] = 1225, - [1312] = 1312, - [1313] = 1219, - [1314] = 1314, - [1315] = 1284, - [1316] = 1316, - [1317] = 1312, - [1318] = 610, - [1319] = 1209, + [1311] = 1220, + [1312] = 1236, + [1313] = 1313, + [1314] = 1247, + [1315] = 1249, + [1316] = 303, + [1317] = 1251, + [1318] = 1318, + [1319] = 1291, [1320] = 1320, - [1321] = 1143, - [1322] = 1322, + [1321] = 1321, + [1322] = 1227, [1323] = 1323, - [1324] = 288, + [1324] = 1324, [1325] = 1325, - [1326] = 1326, - [1327] = 1225, - [1328] = 1256, - [1329] = 1329, - [1330] = 1330, + [1326] = 1210, + [1327] = 1208, + [1328] = 1328, + [1329] = 292, + [1330] = 308, [1331] = 1331, - [1332] = 1067, + [1332] = 305, [1333] = 1333, - [1334] = 1229, + [1334] = 1334, [1335] = 1335, - [1336] = 1336, - [1337] = 1337, + [1336] = 1292, + [1337] = 1068, [1338] = 1338, - [1339] = 1177, + [1339] = 1339, [1340] = 1340, - [1341] = 1341, - [1342] = 1342, + [1341] = 1081, + [1342] = 1141, [1343] = 1343, [1344] = 1344, [1345] = 1345, [1346] = 1346, - [1347] = 1267, - [1348] = 1041, - [1349] = 1349, + [1347] = 1347, + [1348] = 1043, + [1349] = 1298, [1350] = 1350, [1351] = 1351, [1352] = 1352, @@ -4303,33 +4341,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1355] = 1355, [1356] = 1356, [1357] = 1357, - [1358] = 1354, + [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1361, + [1361] = 1346, [1362] = 1362, [1363] = 1363, - [1364] = 1364, + [1364] = 1240, [1365] = 1365, - [1366] = 1360, + [1366] = 1366, [1367] = 1367, [1368] = 1368, [1369] = 1369, - [1370] = 1356, - [1371] = 1371, - [1372] = 1344, + [1370] = 1368, + [1371] = 1350, + [1372] = 1372, [1373] = 1373, [1374] = 1374, [1375] = 1375, - [1376] = 1375, - [1377] = 1363, - [1378] = 1371, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, [1379] = 1379, [1380] = 1380, [1381] = 1381, - [1382] = 1226, + [1382] = 1382, [1383] = 1383, - [1384] = 1384, + [1384] = 1356, [1385] = 1385, [1386] = 1386, [1387] = 1387, @@ -4342,20 +4380,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1198, + [1397] = 1373, [1398] = 1398, [1399] = 1399, [1400] = 1400, [1401] = 1401, - [1402] = 1402, - [1403] = 1403, + [1402] = 1392, + [1403] = 1389, [1404] = 1404, - [1405] = 1405, + [1405] = 1243, [1406] = 1406, [1407] = 1407, [1408] = 1408, [1409] = 1409, - [1410] = 1405, + [1410] = 1410, [1411] = 1411, [1412] = 1412, [1413] = 1413, @@ -4373,2728 +4411,298 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1425] = 1425, [1426] = 1426, [1427] = 1427, - [1428] = 1428, - [1429] = 1407, - [1430] = 1430, + [1428] = 1412, + [1429] = 1429, + [1430] = 1425, [1431] = 1431, - [1432] = 1414, - [1433] = 1411, + [1432] = 1432, + [1433] = 1422, [1434] = 1434, [1435] = 1435, - [1436] = 1430, - [1437] = 1407, - [1438] = 1405, - [1439] = 1411, - [1440] = 1440, + [1436] = 1436, + [1437] = 1437, + [1438] = 1427, + [1439] = 1426, + [1440] = 1432, [1441] = 1441, - [1442] = 1417, + [1442] = 1442, [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1430, - [1447] = 1414, - [1448] = 1448, - [1449] = 1448, - [1450] = 1443, + [1444] = 1425, + [1445] = 1432, + [1446] = 1446, + [1447] = 1447, + [1448] = 1424, + [1449] = 1422, + [1450] = 1450, [1451] = 1451, [1452] = 1452, - [1453] = 1427, + [1453] = 1453, [1454] = 1454, [1455] = 1455, [1456] = 1456, [1457] = 1457, - [1458] = 1427, - [1459] = 1422, + [1458] = 1441, + [1459] = 1423, [1460] = 1460, - [1461] = 1460, + [1461] = 1461, [1462] = 1462, [1463] = 1463, - [1464] = 1417, + [1464] = 1464, [1465] = 1465, [1466] = 1466, [1467] = 1467, - [1468] = 1435, - [1469] = 1462, + [1468] = 1468, + [1469] = 1421, [1470] = 1470, - [1471] = 1471, + [1471] = 1437, [1472] = 1472, - [1473] = 1467, - [1474] = 1451, - [1475] = 1431, - [1476] = 1470, - [1477] = 1445, - [1478] = 1478, - [1479] = 1420, - [1480] = 1480, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1474, + [1478] = 1460, + [1479] = 1455, + [1480] = 1466, [1481] = 1481, - [1482] = 1428, + [1482] = 1482, [1483] = 1483, - [1484] = 1431, - [1485] = 1483, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1489, - [1490] = 1490, - [1491] = 1478, + [1484] = 1419, + [1485] = 1442, + [1486] = 1467, + [1487] = 1436, + [1488] = 1420, + [1489] = 1434, + [1490] = 1443, + [1491] = 1418, [1492] = 1492, - [1493] = 1452, - [1494] = 1430, + [1493] = 1417, + [1494] = 1494, [1495] = 1495, - [1496] = 1496, + [1496] = 1475, [1497] = 1497, - [1498] = 1498, - [1499] = 1463, - [1500] = 1448, - [1501] = 1481, + [1498] = 1470, + [1499] = 1499, + [1500] = 1472, + [1501] = 1501, [1502] = 1502, - [1503] = 1467, - [1504] = 1462, - [1505] = 1480, - [1506] = 1471, - [1507] = 1465, - [1508] = 1498, + [1503] = 1415, + [1504] = 1417, + [1505] = 1505, + [1506] = 1418, + [1507] = 1419, + [1508] = 1421, [1509] = 1509, - [1510] = 1510, + [1510] = 1462, [1511] = 1511, - [1512] = 1495, - [1513] = 1460, - [1514] = 1514, - [1515] = 1409, - [1516] = 1511, - [1517] = 1514, - [1518] = 1472, - [1519] = 1454, - [1520] = 1488, - [1521] = 1521, - [1522] = 1421, - [1523] = 1425, - [1524] = 1427, + [1512] = 1457, + [1513] = 1499, + [1514] = 1422, + [1515] = 1505, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1502, + [1520] = 1424, + [1521] = 1425, + [1522] = 1426, + [1523] = 1518, + [1524] = 1416, + [1525] = 1427, + [1526] = 1413, + [1527] = 1452, + [1528] = 1412, + [1529] = 1476, + [1530] = 1415, + [1531] = 1531, }; -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < 'a' - ? (c >= 'A' && c <= '_') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 910 - ? (c < 736 - ? (c < 186 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1649 - ? (c < 1376 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} +static 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}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, {0x671, 0x6d3}, + {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, + {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, + {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa72, 0xa74}, + {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, + {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, + {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, + {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xc05, 0xc0c}, + {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, + {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, {0xe32, 0xe32}, + {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb2}, + {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, + {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, + {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, + {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, + {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {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}, + {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}, + {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, + {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, + {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, + {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}, + {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}, + {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, + {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xd7a3}, + {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, + {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, + {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, {0xffa0, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, + {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, + {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}, +}; -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2748 - ? (c < 2045 - ? (c < 1015 - ? (c < 710 - ? (c < 181 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 891 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (c <= 1969 || (c < 2042 - ? (c >= 1984 && c <= 2037) - : c <= 2042))))))))) - : (c <= 2045 || (c < 2558 - ? (c < 2451 - ? (c < 2200 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c < 2556 - ? (c >= 2534 && c <= 2545) - : c <= 2556))))))) - : (c <= 2558 || (c < 2635 - ? (c < 2610 - ? (c < 2575 - ? (c < 2565 - ? (c >= 2561 && c <= 2563) - : c <= 2570) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2620 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2620 || (c < 2631 - ? (c >= 2622 && c <= 2626) - : c <= 2632))))) - : (c <= 2637 || (c < 2693 - ? (c < 2654 - ? (c < 2649 - ? c == 2641 - : c <= 2652) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745))))))))))) - : (c <= 2757 || (c < 3168 - ? (c < 2958 - ? (c < 2866 - ? (c < 2809 - ? (c < 2768 - ? (c < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765) - : (c <= 2768 || (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799))) - : (c <= 2815 || (c < 2831 - ? (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2908 - ? (c < 2887 - ? (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884) - : (c <= 2888 || (c < 2901 - ? (c >= 2891 && c <= 2893) - : c <= 2903))) - : (c <= 2909 || (c < 2929 - ? (c < 2918 - ? (c >= 2911 && c <= 2915) - : c <= 2927) - : (c <= 2929 || (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954))))))) - : (c <= 2960 || (c < 3031 - ? (c < 2984 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3014 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010) - : (c <= 3016 || (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024))))) - : (c <= 3031 || (c < 3132 - ? (c < 3086 - ? (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084) - : (c <= 3088 || (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129))) - : (c <= 3140 || (c < 3157 - ? (c < 3146 - ? (c >= 3142 && c <= 3144) - : c <= 3149) - : (c <= 3158 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))))))))) - : (c <= 3171 || (c < 3450 - ? (c < 3293 - ? (c < 3242 - ? (c < 3205 - ? (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203) - : (c <= 3212 || (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240))) - : (c <= 3251 || (c < 3270 - ? (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268) - : (c <= 3272 || (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286))))) - : (c <= 3294 || (c < 3346 - ? (c < 3313 - ? (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311) - : (c <= 3314 || (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344))) - : (c <= 3396 || (c < 3412 - ? (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))) - : (c <= 3455 || (c < 3570 - ? (c < 3520 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : c <= 3478) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3542 - ? (c < 3535 - ? c == 3530 - : c <= 3540) - : (c <= 3542 || (c < 3558 - ? (c >= 3544 && c <= 3551) - : c <= 3567))))) - : (c <= 3571 || (c < 3718 - ? (c < 3664 - ? (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))) - : (c <= 3722 || (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 - ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 - ? (c < 8276 - ? (c < 8255 - ? (c >= 8182 && c <= 8188) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 - ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} +static 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}, + {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}, + {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa75}, + {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabc, 0xac5}, + {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, {0xaf9, 0xaff}, {0xb01, 0xb03}, {0xb05, 0xb0c}, + {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3c, 0xb44}, {0xb47, 0xb48}, {0xb4b, 0xb4d}, + {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, {0xb82, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, + {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbbe, 0xbc2}, + {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, + {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, + {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, + {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, + {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, + {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, + {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xece}, + {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, + {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, + {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, + {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, {0x1369, 0x1371}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, + {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1715}, {0x171f, 0x1734}, + {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, + {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}, + {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}, + {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, + {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, + {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, + {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, + {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}, + {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}, + {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, + {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, + {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, + {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, + {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, + {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}, + {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}, + {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}, + {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}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, + {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); @@ -7102,27 +4710,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(65); - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(165); - if (lookahead == '%') ADVANCE(98); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(68); - if (lookahead == ')') ADVANCE(69); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(70); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(67); - if (lookahead == '/') ADVANCE(96); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(76); - if (lookahead == ';') ADVANCE(166); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '@') ADVANCE(95); - if (lookahead == '[') ADVANCE(86); - if (lookahead == '\\') SKIP(54) + ADVANCE_MAP( + '!', 22, + '#', 165, + '%', 98, + '&', 100, + '(', 68, + ')', 69, + '*', 71, + '+', 85, + ',', 70, + '-', 83, + '.', 67, + '/', 96, + '0', 137, + ':', 76, + ';', 166, + '<', 104, + '=', 92, + '>', 110, + '@', 95, + '[', 86, + ); + if (lookahead == '\\') SKIP(54); if (lookahead == ']') ADVANCE(87); if (lookahead == '^') ADVANCE(101); if (lookahead == 'e') ADVANCE(161); @@ -7130,232 +4740,213 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(89); if (lookahead == '~') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(164); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(61); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); END_STATE(); case 1: - if (lookahead == '\n') SKIP(16) + if (lookahead == '\n') SKIP(16); END_STATE(); case 2: - if (lookahead == '\n') SKIP(16) - if (lookahead == '\r') SKIP(1) + if (lookahead == '\n') SKIP(16); + if (lookahead == '\r') SKIP(1); END_STATE(); case 3: - if (lookahead == '\n') SKIP(15) + if (lookahead == '\n') SKIP(15); END_STATE(); case 4: - if (lookahead == '\n') SKIP(15) - if (lookahead == '\r') SKIP(3) + if (lookahead == '\n') SKIP(15); + if (lookahead == '\r') SKIP(3); END_STATE(); case 5: - if (lookahead == '\n') SKIP(19) + if (lookahead == '\n') SKIP(19); END_STATE(); case 6: - if (lookahead == '\n') SKIP(19) - if (lookahead == '\r') SKIP(5) + if (lookahead == '\n') SKIP(19); + if (lookahead == '\r') SKIP(5); END_STATE(); case 7: if (lookahead == '\n') ADVANCE(130); END_STATE(); case 8: - if (lookahead == '\n') SKIP(9) + if (lookahead == '\n') SKIP(9); if (lookahead == '#') ADVANCE(134); if (lookahead == '\\') ADVANCE(132); if (lookahead == '{') ADVANCE(127); if (lookahead == '}') ADVANCE(89); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(133); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(133); if (lookahead != 0) ADVANCE(134); END_STATE(); case 9: - if (lookahead == '\n') SKIP(9) + if (lookahead == '\n') SKIP(9); if (lookahead == '#') ADVANCE(134); if (lookahead == '\\') ADVANCE(132); if (lookahead == '}') ADVANCE(89); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(133); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(133); if (lookahead != 0 && lookahead != '{') ADVANCE(134); END_STATE(); case 10: - if (lookahead == '\n') SKIP(17) + if (lookahead == '\n') SKIP(17); END_STATE(); case 11: - if (lookahead == '\n') SKIP(17) - if (lookahead == '\r') SKIP(10) + if (lookahead == '\n') SKIP(17); + if (lookahead == '\r') SKIP(10); END_STATE(); case 12: - if (lookahead == '\n') SKIP(14) + if (lookahead == '\n') SKIP(14); END_STATE(); case 13: - if (lookahead == '\n') SKIP(14) - if (lookahead == '\r') SKIP(12) + if (lookahead == '\n') SKIP(14); + if (lookahead == '\r') SKIP(12); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(165); - if (lookahead == '%') ADVANCE(98); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(68); - if (lookahead == ')') ADVANCE(69); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(70); - if (lookahead == '-') ADVANCE(82); - if (lookahead == '.') ADVANCE(66); - if (lookahead == '/') ADVANCE(96); - if (lookahead == ':') ADVANCE(76); - if (lookahead == ';') ADVANCE(166); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '@') ADVANCE(95); - if (lookahead == '[') ADVANCE(86); - if (lookahead == '\\') SKIP(13) + ADVANCE_MAP( + '!', 22, + '#', 165, + '%', 98, + '&', 100, + '(', 68, + ')', 69, + '*', 71, + '+', 85, + ',', 70, + '-', 82, + '.', 66, + '/', 96, + ':', 76, + ';', 166, + '<', 104, + '=', 92, + '>', 110, + '@', 95, + '[', 86, + ); + if (lookahead == '\\') SKIP(13); if (lookahead == ']') ADVANCE(87); if (lookahead == '^') ADVANCE(101); if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(89); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(14) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(164); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(14); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(165); - if (lookahead == '%') ADVANCE(98); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(68); - if (lookahead == ')') ADVANCE(69); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(70); - if (lookahead == '-') ADVANCE(82); - if (lookahead == '.') ADVANCE(66); - if (lookahead == '/') ADVANCE(96); - if (lookahead == ':') ADVANCE(75); - if (lookahead == ';') ADVANCE(166); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '@') ADVANCE(95); - if (lookahead == '[') ADVANCE(86); - if (lookahead == '\\') SKIP(4) + ADVANCE_MAP( + '!', 22, + '#', 165, + '%', 98, + '&', 100, + '(', 68, + ')', 69, + '*', 71, + '+', 85, + ',', 70, + '-', 82, + '.', 66, + '/', 96, + ':', 75, + ';', 166, + '<', 104, + '=', 92, + '>', 110, + '@', 95, + '[', 86, + ); + if (lookahead == '\\') SKIP(4); if (lookahead == ']') ADVANCE(87); if (lookahead == '^') ADVANCE(101); if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(89); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(15) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(164); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(165); - if (lookahead == '%') ADVANCE(23); - if (lookahead == '&') ADVANCE(24); - if (lookahead == '(') ADVANCE(68); - if (lookahead == ')') ADVANCE(69); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(70); - if (lookahead == '-') ADVANCE(82); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(75); - if (lookahead == '<') ADVANCE(105); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(111); - if (lookahead == '@') ADVANCE(25); - if (lookahead == '[') ADVANCE(86); - if (lookahead == '\\') SKIP(2) + ADVANCE_MAP( + '!', 22, + '#', 165, + '%', 23, + '&', 24, + '(', 68, + ')', 69, + '*', 71, + '+', 85, + ',', 70, + '-', 82, + '.', 20, + '/', 97, + '0', 137, + ':', 75, + '<', 105, + '=', 92, + '>', 111, + '@', 25, + '[', 86, + ); + if (lookahead == '\\') SKIP(2); if (lookahead == ']') ADVANCE(87); if (lookahead == '^') ADVANCE(26); if (lookahead == '{') ADVANCE(88); if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(89); if (lookahead == '~') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(164); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(16); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); END_STATE(); case 17: if (lookahead == '#') ADVANCE(165); if (lookahead == '-') ADVANCE(30); if (lookahead == ':') ADVANCE(75); - if (lookahead == '\\') SKIP(11) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (lookahead == '\\') SKIP(11); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(17) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(17); END_STATE(); case 18: if (lookahead == '#') ADVANCE(165); if (lookahead == '\\') ADVANCE(131); if (lookahead == '{') ADVANCE(128); if (lookahead == '}') ADVANCE(36); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(19); END_STATE(); case 19: if (lookahead == '#') ADVANCE(165); - if (lookahead == '\\') SKIP(6) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (lookahead == '\\') SKIP(6); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(19); END_STATE(); case 20: if (lookahead == '.') ADVANCE(21); @@ -7489,63 +5080,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 53: if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(61) + if (lookahead == '\n') SKIP(61); END_STATE(); case 54: if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(61) - if (lookahead == '\r') SKIP(53) + if (lookahead == '\n') SKIP(61); + if (lookahead == '\r') SKIP(53); END_STATE(); case 55: if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(62) + if (lookahead == '\n') SKIP(62); END_STATE(); case 56: if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(62) - if (lookahead == '\r') SKIP(55) + if (lookahead == '\n') SKIP(62); + if (lookahead == '\r') SKIP(55); END_STATE(); case 57: if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(63) + if (lookahead == '\n') SKIP(63); END_STATE(); case 58: if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(63) - if (lookahead == '\r') SKIP(57) + if (lookahead == '\n') SKIP(63); + if (lookahead == '\r') SKIP(57); END_STATE(); case 59: if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(64) + if (lookahead == '\n') SKIP(64); END_STATE(); case 60: if (eof) ADVANCE(65); - if (lookahead == '\n') SKIP(64) - if (lookahead == '\r') SKIP(59) + if (lookahead == '\n') SKIP(64); + if (lookahead == '\r') SKIP(59); END_STATE(); case 61: if (eof) ADVANCE(65); - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(165); - if (lookahead == '%') ADVANCE(98); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(68); - if (lookahead == ')') ADVANCE(69); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(70); - if (lookahead == '-') ADVANCE(83); - if (lookahead == '.') ADVANCE(67); - if (lookahead == '/') ADVANCE(96); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(76); - if (lookahead == ';') ADVANCE(166); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '@') ADVANCE(95); - if (lookahead == '[') ADVANCE(86); - if (lookahead == '\\') SKIP(54) + ADVANCE_MAP( + '!', 22, + '#', 165, + '%', 98, + '&', 100, + '(', 68, + ')', 69, + '*', 71, + '+', 85, + ',', 70, + '-', 83, + '.', 67, + '/', 96, + '0', 137, + ':', 76, + ';', 166, + '<', 104, + '=', 92, + '>', 110, + '@', 95, + '[', 86, + ); + if (lookahead == '\\') SKIP(54); if (lookahead == ']') ADVANCE(87); if (lookahead == '^') ADVANCE(101); if (lookahead == 'e') ADVANCE(161); @@ -7553,108 +5146,102 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(89); if (lookahead == '~') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(164); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(61); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); END_STATE(); case 62: if (eof) ADVANCE(65); - if (lookahead == '!') ADVANCE(22); - if (lookahead == '#') ADVANCE(165); - if (lookahead == '%') ADVANCE(98); - if (lookahead == '&') ADVANCE(100); - if (lookahead == '(') ADVANCE(68); - if (lookahead == ')') ADVANCE(69); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(70); - if (lookahead == '-') ADVANCE(82); - if (lookahead == '.') ADVANCE(67); - if (lookahead == '/') ADVANCE(96); - if (lookahead == '0') ADVANCE(138); - if (lookahead == ':') ADVANCE(76); - if (lookahead == ';') ADVANCE(166); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '@') ADVANCE(95); - if (lookahead == '[') ADVANCE(86); - if (lookahead == '\\') SKIP(56) + ADVANCE_MAP( + '!', 22, + '#', 165, + '%', 98, + '&', 100, + '(', 68, + ')', 69, + '*', 71, + '+', 85, + ',', 70, + '-', 82, + '.', 67, + '/', 96, + '0', 137, + ':', 76, + ';', 166, + '<', 104, + '=', 92, + '>', 110, + '@', 95, + '[', 86, + ); + if (lookahead == '\\') SKIP(56); if (lookahead == ']') ADVANCE(87); if (lookahead == '^') ADVANCE(101); if (lookahead == '{') ADVANCE(88); if (lookahead == '|') ADVANCE(80); if (lookahead == '}') ADVANCE(89); if (lookahead == '~') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(62) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(164); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(62); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); END_STATE(); case 63: if (eof) ADVANCE(65); - if (lookahead == '#') ADVANCE(165); - if (lookahead == '(') ADVANCE(68); - if (lookahead == '*') ADVANCE(72); - if (lookahead == '+') ADVANCE(84); - if (lookahead == '-') ADVANCE(81); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '0') ADVANCE(138); - if (lookahead == '@') ADVANCE(94); - if (lookahead == '[') ADVANCE(86); - if (lookahead == '\\') SKIP(58) + ADVANCE_MAP( + '#', 165, + '(', 68, + '*', 72, + '+', 84, + '-', 81, + '.', 20, + '0', 137, + '@', 94, + '[', 86, + ); + if (lookahead == '\\') SKIP(58); if (lookahead == 'e') ADVANCE(162); if (lookahead == '{') ADVANCE(88); if (lookahead == '~') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(63) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(164); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(63); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); END_STATE(); case 64: if (eof) ADVANCE(65); - if (lookahead == '#') ADVANCE(165); - if (lookahead == '(') ADVANCE(68); - if (lookahead == '*') ADVANCE(72); - if (lookahead == '+') ADVANCE(84); - if (lookahead == '-') ADVANCE(81); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '0') ADVANCE(138); - if (lookahead == '@') ADVANCE(94); - if (lookahead == '[') ADVANCE(86); - if (lookahead == '\\') SKIP(60) + ADVANCE_MAP( + '#', 165, + '(', 68, + '*', 72, + '+', 84, + '-', 81, + '.', 20, + '0', 137, + '@', 94, + '[', 86, + ); + if (lookahead == '\\') SKIP(60); if (lookahead == 'e') ADVANCE(163); if (lookahead == '{') ADVANCE(88); if (lookahead == '~') ADVANCE(103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(164); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(64); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(138); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(164); END_STATE(); case 65: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -7702,11 +5289,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 77: ACCEPT_TOKEN(anon_sym_except); if (lookahead == '*') ADVANCE(79); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 78: ACCEPT_TOKEN(anon_sym_except); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 79: ACCEPT_TOKEN(anon_sym_except_STAR); @@ -7893,22 +5480,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 131: - ACCEPT_TOKEN(sym__not_escape_sequence); - if (lookahead == '\n') ADVANCE(130); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == 'N') ADVANCE(34); - if (lookahead == 'U') ADVANCE(51); - if (lookahead == 'u') ADVANCE(47); - if (lookahead == 'x') ADVANCE(45); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '\\' || - lookahead == 'a' || - lookahead == 'b' || - lookahead == 'f' || - lookahead == 'n' || - lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASH); + ADVANCE_MAP( + '\n', 130, + '\r', 7, + 'N', 34, + 'U', 51, + 'u', 47, + 'x', 45, + '"', 130, + '\'', 130, + '\\', 130, + 'a', 130, + 'b', 130, + 'f', 130, + 'n', 130, + 'r', 130, + 't', 130, + 'v', 130, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42); END_STATE(); case 132: @@ -7924,14 +5514,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(134); if (lookahead == '\\') ADVANCE(132); if (lookahead == '\t' || - lookahead == '\f' || - lookahead == '\r' || + (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(133); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(133); if (lookahead != 0 && - lookahead != '\n' && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '{' && lookahead != '}') ADVANCE(134); END_STATE(); @@ -7950,33 +5539,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 137: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(146); - if (lookahead == '_') ADVANCE(139); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); - if (lookahead == 'J' || - lookahead == 'L' || - lookahead == 'j' || - lookahead == 'l') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); + ADVANCE_MAP( + '.', 146, + '_', 139, + 'B', 31, + 'b', 31, + 'E', 37, + 'e', 37, + 'O', 32, + 'o', 32, + 'X', 33, + 'x', 33, + 'J', 136, + 'L', 136, + 'j', 136, + 'l', 136, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); END_STATE(); case 138: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(146); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(31); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(32); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(33); - if (lookahead == '_') ADVANCE(139); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); - if (lookahead == 'J' || - lookahead == 'L' || - lookahead == 'j' || - lookahead == 'l') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); + ADVANCE_MAP( + '.', 146, + '_', 139, + 'E', 37, + 'e', 37, + 'J', 136, + 'L', 136, + 'j', 136, + 'l', 136, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); END_STATE(); case 139: ACCEPT_TOKEN(sym_integer); @@ -7987,7 +5580,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'L' || lookahead == 'j' || lookahead == 'l') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(138); END_STATE(); case 140: ACCEPT_TOKEN(sym_integer); @@ -8057,86 +5650,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 148: ACCEPT_TOKEN(sym_identifier); if (lookahead == '*') ADVANCE(79); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 149: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(152); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 150: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(153); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 151: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(154); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 152: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(155); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 153: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(156); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(157); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'p') ADVANCE(158); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'p') ADVANCE(159); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'p') ADVANCE(160); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); if (lookahead == 't') ADVANCE(77); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(78); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (lookahead == 't') ADVANCE(148); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(148); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (lookahead == 't') ADVANCE(78); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 161: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'x') ADVANCE(149); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'x') ADVANCE(150); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'x') ADVANCE(151); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 164: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(164); + if (set_contains(sym_identifier_character_set_2, 776, lookahead)) ADVANCE(164); END_STATE(); case 165: ACCEPT_TOKEN(sym_comment); @@ -8144,7 +5737,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(165); END_STATE(); case 166: - ACCEPT_TOKEN(sym__semicolon); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); default: return false; @@ -8159,7 +5752,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'F') ADVANCE(1); if (lookahead == 'N') ADVANCE(2); if (lookahead == 'T') ADVANCE(3); - if (lookahead == '\\') SKIP(4) + if (lookahead == '\\') SKIP(4); if (lookahead == '_') ADVANCE(5); if (lookahead == 'a') ADVANCE(6); if (lookahead == 'b') ADVANCE(7); @@ -8178,14 +5771,11 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(20); if (lookahead == 'w') ADVANCE(21); if (lookahead == 'y') ADVANCE(22); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); END_STATE(); case 1: if (lookahead == 'a') ADVANCE(23); @@ -8197,8 +5787,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(25); END_STATE(); case 4: - if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(26) + if (lookahead == '\n') SKIP(0); + if (lookahead == '\r') SKIP(26); END_STATE(); case 5: ACCEPT_TOKEN(sym_match_wildcard_pattern); @@ -8279,7 +5869,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(61); END_STATE(); case 26: - if (lookahead == '\n') SKIP(0) + if (lookahead == '\n') SKIP(0); END_STATE(); case 27: if (lookahead == 'f') ADVANCE(62); @@ -8751,14 +6341,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [57] = {.lex_state = 62, .external_lex_state = 3}, [58] = {.lex_state = 62, .external_lex_state = 3}, [59] = {.lex_state = 62, .external_lex_state = 3}, - [60] = {.lex_state = 62, .external_lex_state = 3}, + [60] = {.lex_state = 62, .external_lex_state = 2}, [61] = {.lex_state = 62, .external_lex_state = 3}, - [62] = {.lex_state = 62, .external_lex_state = 3}, + [62] = {.lex_state = 62, .external_lex_state = 2}, [63] = {.lex_state = 62, .external_lex_state = 3}, - [64] = {.lex_state = 62, .external_lex_state = 2}, + [64] = {.lex_state = 62, .external_lex_state = 3}, [65] = {.lex_state = 62, .external_lex_state = 3}, [66] = {.lex_state = 62, .external_lex_state = 3}, - [67] = {.lex_state = 62, .external_lex_state = 2}, + [67] = {.lex_state = 62, .external_lex_state = 3}, [68] = {.lex_state = 62, .external_lex_state = 3}, [69] = {.lex_state = 62, .external_lex_state = 3}, [70] = {.lex_state = 62, .external_lex_state = 4}, @@ -8766,7 +6356,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [72] = {.lex_state = 62, .external_lex_state = 5}, [73] = {.lex_state = 62, .external_lex_state = 5}, [74] = {.lex_state = 62, .external_lex_state = 5}, - [75] = {.lex_state = 62, .external_lex_state = 4}, + [75] = {.lex_state = 62, .external_lex_state = 5}, [76] = {.lex_state = 62, .external_lex_state = 5}, [77] = {.lex_state = 62, .external_lex_state = 5}, [78] = {.lex_state = 62, .external_lex_state = 5}, @@ -8778,7 +6368,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 62, .external_lex_state = 5}, [85] = {.lex_state = 62, .external_lex_state = 5}, [86] = {.lex_state = 62, .external_lex_state = 5}, - [87] = {.lex_state = 62, .external_lex_state = 5}, + [87] = {.lex_state = 62, .external_lex_state = 4}, [88] = {.lex_state = 62, .external_lex_state = 5}, [89] = {.lex_state = 62, .external_lex_state = 5}, [90] = {.lex_state = 62, .external_lex_state = 5}, @@ -8822,8 +6412,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [128] = {.lex_state = 62, .external_lex_state = 5}, [129] = {.lex_state = 62, .external_lex_state = 5}, [130] = {.lex_state = 62, .external_lex_state = 5}, - [131] = {.lex_state = 62, .external_lex_state = 4}, - [132] = {.lex_state = 62, .external_lex_state = 2}, + [131] = {.lex_state = 62, .external_lex_state = 2}, + [132] = {.lex_state = 62, .external_lex_state = 4}, [133] = {.lex_state = 62, .external_lex_state = 4}, [134] = {.lex_state = 62, .external_lex_state = 4}, [135] = {.lex_state = 62, .external_lex_state = 4}, @@ -8856,24 +6446,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [162] = {.lex_state = 62, .external_lex_state = 2}, [163] = {.lex_state = 62, .external_lex_state = 2}, [164] = {.lex_state = 62, .external_lex_state = 2}, - [165] = {.lex_state = 16, .external_lex_state = 2}, + [165] = {.lex_state = 62, .external_lex_state = 2}, [166] = {.lex_state = 62, .external_lex_state = 2}, [167] = {.lex_state = 16, .external_lex_state = 2}, [168] = {.lex_state = 16, .external_lex_state = 2}, - [169] = {.lex_state = 62, .external_lex_state = 2}, - [170] = {.lex_state = 62, .external_lex_state = 2}, + [169] = {.lex_state = 16, .external_lex_state = 2}, + [170] = {.lex_state = 16, .external_lex_state = 2}, [171] = {.lex_state = 16, .external_lex_state = 2}, - [172] = {.lex_state = 16, .external_lex_state = 2}, + [172] = {.lex_state = 62, .external_lex_state = 2}, [173] = {.lex_state = 62, .external_lex_state = 2}, [174] = {.lex_state = 62, .external_lex_state = 2}, [175] = {.lex_state = 62, .external_lex_state = 2}, [176] = {.lex_state = 62, .external_lex_state = 2}, - [177] = {.lex_state = 62, .external_lex_state = 2}, + [177] = {.lex_state = 62, .external_lex_state = 4}, [178] = {.lex_state = 62, .external_lex_state = 2}, [179] = {.lex_state = 62, .external_lex_state = 2}, - [180] = {.lex_state = 62, .external_lex_state = 4}, - [181] = {.lex_state = 62, .external_lex_state = 4}, - [182] = {.lex_state = 62, .external_lex_state = 2}, + [180] = {.lex_state = 62, .external_lex_state = 2}, + [181] = {.lex_state = 62, .external_lex_state = 2}, + [182] = {.lex_state = 62, .external_lex_state = 4}, [183] = {.lex_state = 62, .external_lex_state = 2}, [184] = {.lex_state = 62, .external_lex_state = 2}, [185] = {.lex_state = 62, .external_lex_state = 2}, @@ -8882,13 +6472,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [188] = {.lex_state = 62, .external_lex_state = 2}, [189] = {.lex_state = 62, .external_lex_state = 2}, [190] = {.lex_state = 62, .external_lex_state = 2}, - [191] = {.lex_state = 62, .external_lex_state = 2}, - [192] = {.lex_state = 62, .external_lex_state = 2}, + [191] = {.lex_state = 62, .external_lex_state = 4}, + [192] = {.lex_state = 62, .external_lex_state = 4}, [193] = {.lex_state = 62, .external_lex_state = 2}, [194] = {.lex_state = 62, .external_lex_state = 2}, - [195] = {.lex_state = 62, .external_lex_state = 4}, + [195] = {.lex_state = 62, .external_lex_state = 2}, [196] = {.lex_state = 62, .external_lex_state = 2}, - [197] = {.lex_state = 62, .external_lex_state = 2}, + [197] = {.lex_state = 62, .external_lex_state = 4}, [198] = {.lex_state = 62, .external_lex_state = 2}, [199] = {.lex_state = 62, .external_lex_state = 2}, [200] = {.lex_state = 62, .external_lex_state = 2}, @@ -8896,12 +6486,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [202] = {.lex_state = 62, .external_lex_state = 2}, [203] = {.lex_state = 62, .external_lex_state = 2}, [204] = {.lex_state = 62, .external_lex_state = 2}, - [205] = {.lex_state = 62, .external_lex_state = 4}, + [205] = {.lex_state = 62, .external_lex_state = 2}, [206] = {.lex_state = 62, .external_lex_state = 2}, [207] = {.lex_state = 62, .external_lex_state = 2}, [208] = {.lex_state = 62, .external_lex_state = 2}, [209] = {.lex_state = 62, .external_lex_state = 2}, - [210] = {.lex_state = 62, .external_lex_state = 4}, + [210] = {.lex_state = 62, .external_lex_state = 2}, [211] = {.lex_state = 62, .external_lex_state = 2}, [212] = {.lex_state = 62, .external_lex_state = 2}, [213] = {.lex_state = 62, .external_lex_state = 2}, @@ -8910,180 +6500,180 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [216] = {.lex_state = 62, .external_lex_state = 2}, [217] = {.lex_state = 62, .external_lex_state = 2}, [218] = {.lex_state = 15}, - [219] = {.lex_state = 15}, + [219] = {.lex_state = 62, .external_lex_state = 2}, [220] = {.lex_state = 15}, - [221] = {.lex_state = 15}, + [221] = {.lex_state = 62, .external_lex_state = 2}, [222] = {.lex_state = 62, .external_lex_state = 2}, [223] = {.lex_state = 15}, - [224] = {.lex_state = 62, .external_lex_state = 2}, - [225] = {.lex_state = 62, .external_lex_state = 2}, + [224] = {.lex_state = 15}, + [225] = {.lex_state = 15}, [226] = {.lex_state = 15}, [227] = {.lex_state = 15}, - [228] = {.lex_state = 63, .external_lex_state = 2}, - [229] = {.lex_state = 64, .external_lex_state = 3}, - [230] = {.lex_state = 62, .external_lex_state = 2}, + [228] = {.lex_state = 63, .external_lex_state = 3}, + [229] = {.lex_state = 62, .external_lex_state = 2}, + [230] = {.lex_state = 64, .external_lex_state = 3}, [231] = {.lex_state = 62, .external_lex_state = 2}, [232] = {.lex_state = 63, .external_lex_state = 3}, - [233] = {.lex_state = 62, .external_lex_state = 2}, - [234] = {.lex_state = 64, .external_lex_state = 3}, - [235] = {.lex_state = 62, .external_lex_state = 2}, - [236] = {.lex_state = 62, .external_lex_state = 2}, - [237] = {.lex_state = 64, .external_lex_state = 2}, - [238] = {.lex_state = 63, .external_lex_state = 2}, + [233] = {.lex_state = 64, .external_lex_state = 2}, + [234] = {.lex_state = 63, .external_lex_state = 2}, + [235] = {.lex_state = 63, .external_lex_state = 2}, + [236] = {.lex_state = 64, .external_lex_state = 2}, + [237] = {.lex_state = 62, .external_lex_state = 2}, + [238] = {.lex_state = 62, .external_lex_state = 2}, [239] = {.lex_state = 62, .external_lex_state = 2}, - [240] = {.lex_state = 64, .external_lex_state = 2}, - [241] = {.lex_state = 63, .external_lex_state = 3}, - [242] = {.lex_state = 62, .external_lex_state = 2}, - [243] = {.lex_state = 62, .external_lex_state = 2}, - [244] = {.lex_state = 62, .external_lex_state = 2}, - [245] = {.lex_state = 62, .external_lex_state = 2}, - [246] = {.lex_state = 62, .external_lex_state = 2}, - [247] = {.lex_state = 14, .external_lex_state = 6}, - [248] = {.lex_state = 62, .external_lex_state = 2}, - [249] = {.lex_state = 62, .external_lex_state = 2}, - [250] = {.lex_state = 62, .external_lex_state = 2}, - [251] = {.lex_state = 62, .external_lex_state = 2}, + [240] = {.lex_state = 16, .external_lex_state = 2}, + [241] = {.lex_state = 16, .external_lex_state = 2}, + [242] = {.lex_state = 64, .external_lex_state = 3}, + [243] = {.lex_state = 16, .external_lex_state = 2}, + [244] = {.lex_state = 16, .external_lex_state = 2}, + [245] = {.lex_state = 16, .external_lex_state = 2}, + [246] = {.lex_state = 16, .external_lex_state = 2}, + [247] = {.lex_state = 62, .external_lex_state = 2}, + [248] = {.lex_state = 16, .external_lex_state = 2}, + [249] = {.lex_state = 16, .external_lex_state = 2}, + [250] = {.lex_state = 16, .external_lex_state = 2}, + [251] = {.lex_state = 16, .external_lex_state = 2}, [252] = {.lex_state = 62, .external_lex_state = 2}, [253] = {.lex_state = 62, .external_lex_state = 2}, - [254] = {.lex_state = 14, .external_lex_state = 6}, - [255] = {.lex_state = 16, .external_lex_state = 2}, + [254] = {.lex_state = 16, .external_lex_state = 2}, + [255] = {.lex_state = 62, .external_lex_state = 2}, [256] = {.lex_state = 16, .external_lex_state = 2}, - [257] = {.lex_state = 16, .external_lex_state = 2}, - [258] = {.lex_state = 62, .external_lex_state = 3}, - [259] = {.lex_state = 16, .external_lex_state = 2}, - [260] = {.lex_state = 16, .external_lex_state = 2}, - [261] = {.lex_state = 16, .external_lex_state = 2}, - [262] = {.lex_state = 16, .external_lex_state = 2}, - [263] = {.lex_state = 62, .external_lex_state = 3}, - [264] = {.lex_state = 16, .external_lex_state = 2}, - [265] = {.lex_state = 62, .external_lex_state = 3}, - [266] = {.lex_state = 63, .external_lex_state = 3}, - [267] = {.lex_state = 64, .external_lex_state = 3}, - [268] = {.lex_state = 62, .external_lex_state = 2}, - [269] = {.lex_state = 16, .external_lex_state = 2}, - [270] = {.lex_state = 64, .external_lex_state = 2}, - [271] = {.lex_state = 63, .external_lex_state = 2}, + [257] = {.lex_state = 62, .external_lex_state = 2}, + [258] = {.lex_state = 16, .external_lex_state = 2}, + [259] = {.lex_state = 62, .external_lex_state = 2}, + [260] = {.lex_state = 62, .external_lex_state = 2}, + [261] = {.lex_state = 62, .external_lex_state = 2}, + [262] = {.lex_state = 62, .external_lex_state = 2}, + [263] = {.lex_state = 62, .external_lex_state = 2}, + [264] = {.lex_state = 14, .external_lex_state = 6}, + [265] = {.lex_state = 62, .external_lex_state = 2}, + [266] = {.lex_state = 62, .external_lex_state = 2}, + [267] = {.lex_state = 14, .external_lex_state = 6}, + [268] = {.lex_state = 64, .external_lex_state = 3}, + [269] = {.lex_state = 62, .external_lex_state = 2}, + [270] = {.lex_state = 16, .external_lex_state = 2}, + [271] = {.lex_state = 63, .external_lex_state = 3}, [272] = {.lex_state = 62, .external_lex_state = 3}, - [273] = {.lex_state = 16, .external_lex_state = 2}, - [274] = {.lex_state = 16, .external_lex_state = 2}, + [273] = {.lex_state = 62, .external_lex_state = 3}, + [274] = {.lex_state = 62, .external_lex_state = 2}, [275] = {.lex_state = 62, .external_lex_state = 2}, - [276] = {.lex_state = 62, .external_lex_state = 2}, - [277] = {.lex_state = 62, .external_lex_state = 2}, - [278] = {.lex_state = 14, .external_lex_state = 4}, - [279] = {.lex_state = 62, .external_lex_state = 2}, + [276] = {.lex_state = 62, .external_lex_state = 3}, + [277] = {.lex_state = 14, .external_lex_state = 4}, + [278] = {.lex_state = 16, .external_lex_state = 2}, + [279] = {.lex_state = 62, .external_lex_state = 3}, [280] = {.lex_state = 62, .external_lex_state = 2}, [281] = {.lex_state = 62, .external_lex_state = 2}, - [282] = {.lex_state = 62, .external_lex_state = 2}, - [283] = {.lex_state = 62, .external_lex_state = 2}, - [284] = {.lex_state = 14, .external_lex_state = 6}, - [285] = {.lex_state = 62, .external_lex_state = 2}, - [286] = {.lex_state = 62, .external_lex_state = 2}, + [282] = {.lex_state = 64, .external_lex_state = 2}, + [283] = {.lex_state = 63, .external_lex_state = 2}, + [284] = {.lex_state = 62, .external_lex_state = 2}, + [285] = {.lex_state = 62, .external_lex_state = 4}, + [286] = {.lex_state = 62, .external_lex_state = 4}, [287] = {.lex_state = 62, .external_lex_state = 2}, - [288] = {.lex_state = 62, .external_lex_state = 3}, + [288] = {.lex_state = 62, .external_lex_state = 2}, [289] = {.lex_state = 62, .external_lex_state = 2}, [290] = {.lex_state = 62, .external_lex_state = 2}, [291] = {.lex_state = 62, .external_lex_state = 3}, [292] = {.lex_state = 62, .external_lex_state = 2}, [293] = {.lex_state = 62, .external_lex_state = 2}, [294] = {.lex_state = 62, .external_lex_state = 2}, - [295] = {.lex_state = 62, .external_lex_state = 4}, + [295] = {.lex_state = 62, .external_lex_state = 2}, [296] = {.lex_state = 62, .external_lex_state = 2}, - [297] = {.lex_state = 62, .external_lex_state = 2}, - [298] = {.lex_state = 62, .external_lex_state = 2}, - [299] = {.lex_state = 16, .external_lex_state = 2}, - [300] = {.lex_state = 62, .external_lex_state = 4}, - [301] = {.lex_state = 16, .external_lex_state = 2}, - [302] = {.lex_state = 62, .external_lex_state = 2}, - [303] = {.lex_state = 62, .external_lex_state = 4}, - [304] = {.lex_state = 62, .external_lex_state = 4}, - [305] = {.lex_state = 62, .external_lex_state = 2}, + [297] = {.lex_state = 14, .external_lex_state = 6}, + [298] = {.lex_state = 62, .external_lex_state = 4}, + [299] = {.lex_state = 62, .external_lex_state = 2}, + [300] = {.lex_state = 62, .external_lex_state = 2}, + [301] = {.lex_state = 62, .external_lex_state = 4}, + [302] = {.lex_state = 62, .external_lex_state = 3}, + [303] = {.lex_state = 62, .external_lex_state = 2}, + [304] = {.lex_state = 62, .external_lex_state = 2}, + [305] = {.lex_state = 62, .external_lex_state = 3}, [306] = {.lex_state = 62, .external_lex_state = 2}, - [307] = {.lex_state = 62, .external_lex_state = 3}, - [308] = {.lex_state = 62, .external_lex_state = 3}, + [307] = {.lex_state = 62, .external_lex_state = 2}, + [308] = {.lex_state = 62, .external_lex_state = 2}, [309] = {.lex_state = 62, .external_lex_state = 2}, - [310] = {.lex_state = 16, .external_lex_state = 2}, - [311] = {.lex_state = 62, .external_lex_state = 3}, - [312] = {.lex_state = 62, .external_lex_state = 2}, + [310] = {.lex_state = 62, .external_lex_state = 2}, + [311] = {.lex_state = 62, .external_lex_state = 2}, + [312] = {.lex_state = 62, .external_lex_state = 3}, [313] = {.lex_state = 62, .external_lex_state = 2}, - [314] = {.lex_state = 16, .external_lex_state = 2}, + [314] = {.lex_state = 62, .external_lex_state = 3}, [315] = {.lex_state = 62, .external_lex_state = 3}, - [316] = {.lex_state = 64, .external_lex_state = 3}, - [317] = {.lex_state = 63, .external_lex_state = 3}, + [316] = {.lex_state = 62, .external_lex_state = 2}, + [317] = {.lex_state = 15, .external_lex_state = 6}, [318] = {.lex_state = 64, .external_lex_state = 2}, - [319] = {.lex_state = 63, .external_lex_state = 2}, - [320] = {.lex_state = 63, .external_lex_state = 2}, - [321] = {.lex_state = 62, .external_lex_state = 2}, - [322] = {.lex_state = 62, .external_lex_state = 2}, - [323] = {.lex_state = 62, .external_lex_state = 2}, + [319] = {.lex_state = 64, .external_lex_state = 3}, + [320] = {.lex_state = 64, .external_lex_state = 3}, + [321] = {.lex_state = 64, .external_lex_state = 3}, + [322] = {.lex_state = 64, .external_lex_state = 3}, + [323] = {.lex_state = 64, .external_lex_state = 2}, [324] = {.lex_state = 62, .external_lex_state = 2}, [325] = {.lex_state = 63, .external_lex_state = 2}, - [326] = {.lex_state = 63, .external_lex_state = 2}, - [327] = {.lex_state = 64, .external_lex_state = 2}, - [328] = {.lex_state = 63, .external_lex_state = 2}, - [329] = {.lex_state = 64, .external_lex_state = 2}, - [330] = {.lex_state = 14, .external_lex_state = 6}, - [331] = {.lex_state = 64, .external_lex_state = 2}, - [332] = {.lex_state = 63, .external_lex_state = 2}, + [326] = {.lex_state = 62, .external_lex_state = 3}, + [327] = {.lex_state = 15, .external_lex_state = 6}, + [328] = {.lex_state = 14}, + [329] = {.lex_state = 15, .external_lex_state = 6}, + [330] = {.lex_state = 15, .external_lex_state = 6}, + [331] = {.lex_state = 63, .external_lex_state = 2}, + [332] = {.lex_state = 63, .external_lex_state = 3}, [333] = {.lex_state = 63, .external_lex_state = 2}, - [334] = {.lex_state = 14, .external_lex_state = 6}, - [335] = {.lex_state = 16, .external_lex_state = 2}, - [336] = {.lex_state = 15, .external_lex_state = 6}, - [337] = {.lex_state = 15, .external_lex_state = 6}, - [338] = {.lex_state = 14}, - [339] = {.lex_state = 14}, - [340] = {.lex_state = 63, .external_lex_state = 2}, - [341] = {.lex_state = 62, .external_lex_state = 2}, - [342] = {.lex_state = 15, .external_lex_state = 6}, - [343] = {.lex_state = 15, .external_lex_state = 6}, - [344] = {.lex_state = 15, .external_lex_state = 6}, - [345] = {.lex_state = 62, .external_lex_state = 3}, - [346] = {.lex_state = 62, .external_lex_state = 2}, + [334] = {.lex_state = 15, .external_lex_state = 6}, + [335] = {.lex_state = 64, .external_lex_state = 2}, + [336] = {.lex_state = 63, .external_lex_state = 2}, + [337] = {.lex_state = 64, .external_lex_state = 2}, + [338] = {.lex_state = 64, .external_lex_state = 3}, + [339] = {.lex_state = 63, .external_lex_state = 3}, + [340] = {.lex_state = 63, .external_lex_state = 3}, + [341] = {.lex_state = 64, .external_lex_state = 2}, + [342] = {.lex_state = 63, .external_lex_state = 3}, + [343] = {.lex_state = 62, .external_lex_state = 2}, + [344] = {.lex_state = 62, .external_lex_state = 2}, + [345] = {.lex_state = 62, .external_lex_state = 2}, + [346] = {.lex_state = 64, .external_lex_state = 2}, [347] = {.lex_state = 62, .external_lex_state = 2}, - [348] = {.lex_state = 62, .external_lex_state = 2}, - [349] = {.lex_state = 62, .external_lex_state = 3}, - [350] = {.lex_state = 62, .external_lex_state = 2}, - [351] = {.lex_state = 62, .external_lex_state = 2}, - [352] = {.lex_state = 15, .external_lex_state = 6}, - [353] = {.lex_state = 63, .external_lex_state = 3}, - [354] = {.lex_state = 64, .external_lex_state = 3}, + [348] = {.lex_state = 64, .external_lex_state = 3}, + [349] = {.lex_state = 63, .external_lex_state = 3}, + [350] = {.lex_state = 63, .external_lex_state = 3}, + [351] = {.lex_state = 15, .external_lex_state = 6}, + [352] = {.lex_state = 62, .external_lex_state = 3}, + [353] = {.lex_state = 62, .external_lex_state = 2}, + [354] = {.lex_state = 62, .external_lex_state = 2}, [355] = {.lex_state = 64, .external_lex_state = 3}, - [356] = {.lex_state = 64, .external_lex_state = 3}, - [357] = {.lex_state = 63, .external_lex_state = 3}, - [358] = {.lex_state = 64, .external_lex_state = 3}, + [356] = {.lex_state = 14}, + [357] = {.lex_state = 64, .external_lex_state = 3}, + [358] = {.lex_state = 63, .external_lex_state = 3}, [359] = {.lex_state = 64, .external_lex_state = 2}, - [360] = {.lex_state = 63, .external_lex_state = 3}, + [360] = {.lex_state = 62, .external_lex_state = 2}, [361] = {.lex_state = 62, .external_lex_state = 2}, - [362] = {.lex_state = 64, .external_lex_state = 2}, - [363] = {.lex_state = 64, .external_lex_state = 3}, + [362] = {.lex_state = 62, .external_lex_state = 2}, + [363] = {.lex_state = 64, .external_lex_state = 2}, [364] = {.lex_state = 62, .external_lex_state = 2}, - [365] = {.lex_state = 15, .external_lex_state = 6}, - [366] = {.lex_state = 63, .external_lex_state = 3}, - [367] = {.lex_state = 64, .external_lex_state = 2}, - [368] = {.lex_state = 62, .external_lex_state = 2}, - [369] = {.lex_state = 63, .external_lex_state = 2}, - [370] = {.lex_state = 63, .external_lex_state = 3}, - [371] = {.lex_state = 64, .external_lex_state = 2}, - [372] = {.lex_state = 64, .external_lex_state = 3}, - [373] = {.lex_state = 63, .external_lex_state = 3}, + [365] = {.lex_state = 63, .external_lex_state = 2}, + [366] = {.lex_state = 64, .external_lex_state = 3}, + [367] = {.lex_state = 14, .external_lex_state = 6}, + [368] = {.lex_state = 63, .external_lex_state = 3}, + [369] = {.lex_state = 64, .external_lex_state = 2}, + [370] = {.lex_state = 63, .external_lex_state = 2}, + [371] = {.lex_state = 15, .external_lex_state = 6}, + [372] = {.lex_state = 64, .external_lex_state = 2}, + [373] = {.lex_state = 63, .external_lex_state = 2}, [374] = {.lex_state = 64, .external_lex_state = 3}, - [375] = {.lex_state = 63, .external_lex_state = 2}, - [376] = {.lex_state = 64, .external_lex_state = 2}, - [377] = {.lex_state = 63, .external_lex_state = 3}, - [378] = {.lex_state = 63, .external_lex_state = 3}, + [375] = {.lex_state = 62, .external_lex_state = 2}, + [376] = {.lex_state = 63, .external_lex_state = 2}, + [377] = {.lex_state = 64, .external_lex_state = 2}, + [378] = {.lex_state = 64, .external_lex_state = 3}, [379] = {.lex_state = 63, .external_lex_state = 3}, [380] = {.lex_state = 62, .external_lex_state = 2}, - [381] = {.lex_state = 63, .external_lex_state = 3}, + [381] = {.lex_state = 16, .external_lex_state = 2}, [382] = {.lex_state = 63, .external_lex_state = 2}, [383] = {.lex_state = 16, .external_lex_state = 2}, - [384] = {.lex_state = 64, .external_lex_state = 3}, - [385] = {.lex_state = 62, .external_lex_state = 2}, - [386] = {.lex_state = 62, .external_lex_state = 2}, + [384] = {.lex_state = 62, .external_lex_state = 2}, + [385] = {.lex_state = 14, .external_lex_state = 6}, + [386] = {.lex_state = 62, .external_lex_state = 3}, [387] = {.lex_state = 62, .external_lex_state = 2}, [388] = {.lex_state = 62, .external_lex_state = 2}, [389] = {.lex_state = 62, .external_lex_state = 2}, [390] = {.lex_state = 62, .external_lex_state = 2}, [391] = {.lex_state = 62, .external_lex_state = 2}, - [392] = {.lex_state = 62, .external_lex_state = 2}, + [392] = {.lex_state = 15}, [393] = {.lex_state = 62, .external_lex_state = 2}, [394] = {.lex_state = 62, .external_lex_state = 2}, [395] = {.lex_state = 62, .external_lex_state = 2}, @@ -9094,7 +6684,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [400] = {.lex_state = 62, .external_lex_state = 2}, [401] = {.lex_state = 62, .external_lex_state = 2}, [402] = {.lex_state = 62, .external_lex_state = 2}, - [403] = {.lex_state = 62, .external_lex_state = 3}, + [403] = {.lex_state = 62, .external_lex_state = 2}, [404] = {.lex_state = 62, .external_lex_state = 2}, [405] = {.lex_state = 62, .external_lex_state = 2}, [406] = {.lex_state = 62, .external_lex_state = 2}, @@ -9104,49 +6694,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [410] = {.lex_state = 62, .external_lex_state = 2}, [411] = {.lex_state = 62, .external_lex_state = 2}, [412] = {.lex_state = 62, .external_lex_state = 2}, - [413] = {.lex_state = 62, .external_lex_state = 3}, - [414] = {.lex_state = 62, .external_lex_state = 3}, + [413] = {.lex_state = 62, .external_lex_state = 2}, + [414] = {.lex_state = 62, .external_lex_state = 2}, [415] = {.lex_state = 62, .external_lex_state = 2}, [416] = {.lex_state = 62, .external_lex_state = 2}, [417] = {.lex_state = 62, .external_lex_state = 2}, - [418] = {.lex_state = 62, .external_lex_state = 3}, + [418] = {.lex_state = 62, .external_lex_state = 2}, [419] = {.lex_state = 62, .external_lex_state = 2}, - [420] = {.lex_state = 62, .external_lex_state = 3}, - [421] = {.lex_state = 62, .external_lex_state = 3}, + [420] = {.lex_state = 62, .external_lex_state = 2}, + [421] = {.lex_state = 62, .external_lex_state = 2}, [422] = {.lex_state = 62, .external_lex_state = 2}, - [423] = {.lex_state = 62, .external_lex_state = 2}, + [423] = {.lex_state = 15, .external_lex_state = 6}, [424] = {.lex_state = 62, .external_lex_state = 2}, [425] = {.lex_state = 62, .external_lex_state = 2}, [426] = {.lex_state = 62, .external_lex_state = 2}, - [427] = {.lex_state = 62, .external_lex_state = 2}, - [428] = {.lex_state = 62, .external_lex_state = 3}, + [427] = {.lex_state = 62, .external_lex_state = 3}, + [428] = {.lex_state = 62, .external_lex_state = 2}, [429] = {.lex_state = 62, .external_lex_state = 2}, [430] = {.lex_state = 62, .external_lex_state = 2}, - [431] = {.lex_state = 15, .external_lex_state = 6}, - [432] = {.lex_state = 62, .external_lex_state = 3}, + [431] = {.lex_state = 62, .external_lex_state = 2}, + [432] = {.lex_state = 62, .external_lex_state = 2}, [433] = {.lex_state = 62, .external_lex_state = 2}, [434] = {.lex_state = 62, .external_lex_state = 2}, [435] = {.lex_state = 62, .external_lex_state = 2}, [436] = {.lex_state = 62, .external_lex_state = 2}, [437] = {.lex_state = 62, .external_lex_state = 2}, [438] = {.lex_state = 62, .external_lex_state = 2}, - [439] = {.lex_state = 62, .external_lex_state = 2}, + [439] = {.lex_state = 62, .external_lex_state = 3}, [440] = {.lex_state = 62, .external_lex_state = 2}, - [441] = {.lex_state = 15, .external_lex_state = 6}, + [441] = {.lex_state = 62, .external_lex_state = 2}, [442] = {.lex_state = 62, .external_lex_state = 2}, [443] = {.lex_state = 62, .external_lex_state = 2}, - [444] = {.lex_state = 62, .external_lex_state = 2}, - [445] = {.lex_state = 62, .external_lex_state = 2}, + [444] = {.lex_state = 15, .external_lex_state = 6}, + [445] = {.lex_state = 62, .external_lex_state = 3}, [446] = {.lex_state = 62, .external_lex_state = 2}, [447] = {.lex_state = 62, .external_lex_state = 2}, [448] = {.lex_state = 62, .external_lex_state = 2}, - [449] = {.lex_state = 15}, + [449] = {.lex_state = 62, .external_lex_state = 2}, [450] = {.lex_state = 62, .external_lex_state = 2}, [451] = {.lex_state = 62, .external_lex_state = 2}, [452] = {.lex_state = 62, .external_lex_state = 2}, - [453] = {.lex_state = 62, .external_lex_state = 2}, + [453] = {.lex_state = 62, .external_lex_state = 3}, [454] = {.lex_state = 62, .external_lex_state = 3}, - [455] = {.lex_state = 62, .external_lex_state = 2}, + [455] = {.lex_state = 62, .external_lex_state = 3}, [456] = {.lex_state = 62, .external_lex_state = 2}, [457] = {.lex_state = 62, .external_lex_state = 2}, [458] = {.lex_state = 62, .external_lex_state = 2}, @@ -9154,155 +6744,155 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [460] = {.lex_state = 62, .external_lex_state = 2}, [461] = {.lex_state = 62, .external_lex_state = 2}, [462] = {.lex_state = 62, .external_lex_state = 2}, - [463] = {.lex_state = 62, .external_lex_state = 2}, - [464] = {.lex_state = 62, .external_lex_state = 3}, + [463] = {.lex_state = 62, .external_lex_state = 3}, + [464] = {.lex_state = 62, .external_lex_state = 2}, [465] = {.lex_state = 62, .external_lex_state = 2}, [466] = {.lex_state = 62, .external_lex_state = 2}, [467] = {.lex_state = 62, .external_lex_state = 2}, [468] = {.lex_state = 62, .external_lex_state = 2}, [469] = {.lex_state = 62, .external_lex_state = 2}, - [470] = {.lex_state = 62, .external_lex_state = 2}, + [470] = {.lex_state = 15, .external_lex_state = 6}, [471] = {.lex_state = 62, .external_lex_state = 2}, [472] = {.lex_state = 62, .external_lex_state = 2}, [473] = {.lex_state = 62, .external_lex_state = 2}, [474] = {.lex_state = 62, .external_lex_state = 2}, - [475] = {.lex_state = 15, .external_lex_state = 6}, - [476] = {.lex_state = 62, .external_lex_state = 2}, + [475] = {.lex_state = 62, .external_lex_state = 2}, + [476] = {.lex_state = 62, .external_lex_state = 3}, [477] = {.lex_state = 62, .external_lex_state = 2}, [478] = {.lex_state = 62, .external_lex_state = 3}, [479] = {.lex_state = 62, .external_lex_state = 2}, [480] = {.lex_state = 62, .external_lex_state = 2}, [481] = {.lex_state = 62, .external_lex_state = 2}, - [482] = {.lex_state = 62, .external_lex_state = 2}, + [482] = {.lex_state = 62, .external_lex_state = 3}, [483] = {.lex_state = 62, .external_lex_state = 2}, [484] = {.lex_state = 62, .external_lex_state = 2}, - [485] = {.lex_state = 62, .external_lex_state = 3}, - [486] = {.lex_state = 62, .external_lex_state = 2}, + [485] = {.lex_state = 62, .external_lex_state = 2}, + [486] = {.lex_state = 62, .external_lex_state = 3}, [487] = {.lex_state = 62, .external_lex_state = 3}, - [488] = {.lex_state = 62, .external_lex_state = 2}, - [489] = {.lex_state = 62, .external_lex_state = 3}, - [490] = {.lex_state = 62, .external_lex_state = 2}, - [491] = {.lex_state = 62, .external_lex_state = 3}, - [492] = {.lex_state = 62, .external_lex_state = 3}, - [493] = {.lex_state = 62, .external_lex_state = 2}, + [488] = {.lex_state = 62, .external_lex_state = 3}, + [489] = {.lex_state = 62, .external_lex_state = 2}, + [490] = {.lex_state = 62, .external_lex_state = 3}, + [491] = {.lex_state = 62, .external_lex_state = 2}, + [492] = {.lex_state = 62, .external_lex_state = 2}, + [493] = {.lex_state = 62, .external_lex_state = 3}, [494] = {.lex_state = 62, .external_lex_state = 2}, - [495] = {.lex_state = 62, .external_lex_state = 3}, - [496] = {.lex_state = 62, .external_lex_state = 2}, + [495] = {.lex_state = 62, .external_lex_state = 2}, + [496] = {.lex_state = 62, .external_lex_state = 3}, [497] = {.lex_state = 62, .external_lex_state = 2}, - [498] = {.lex_state = 62, .external_lex_state = 3}, + [498] = {.lex_state = 62, .external_lex_state = 2}, [499] = {.lex_state = 62, .external_lex_state = 2}, [500] = {.lex_state = 62, .external_lex_state = 2}, - [501] = {.lex_state = 62, .external_lex_state = 2}, + [501] = {.lex_state = 62, .external_lex_state = 3}, [502] = {.lex_state = 62, .external_lex_state = 3}, [503] = {.lex_state = 62, .external_lex_state = 2}, - [504] = {.lex_state = 62, .external_lex_state = 2}, - [505] = {.lex_state = 62, .external_lex_state = 3}, - [506] = {.lex_state = 62, .external_lex_state = 3}, + [504] = {.lex_state = 62, .external_lex_state = 3}, + [505] = {.lex_state = 62, .external_lex_state = 2}, + [506] = {.lex_state = 62, .external_lex_state = 2}, [507] = {.lex_state = 62, .external_lex_state = 2}, - [508] = {.lex_state = 62, .external_lex_state = 3}, - [509] = {.lex_state = 62, .external_lex_state = 3}, - [510] = {.lex_state = 62, .external_lex_state = 3}, - [511] = {.lex_state = 62, .external_lex_state = 2}, - [512] = {.lex_state = 62, .external_lex_state = 2}, + [508] = {.lex_state = 62, .external_lex_state = 2}, + [509] = {.lex_state = 62, .external_lex_state = 2}, + [510] = {.lex_state = 62, .external_lex_state = 2}, + [511] = {.lex_state = 62, .external_lex_state = 3}, + [512] = {.lex_state = 62, .external_lex_state = 3}, [513] = {.lex_state = 62, .external_lex_state = 3}, [514] = {.lex_state = 62, .external_lex_state = 2}, [515] = {.lex_state = 62, .external_lex_state = 2}, - [516] = {.lex_state = 62, .external_lex_state = 3}, + [516] = {.lex_state = 62, .external_lex_state = 2}, [517] = {.lex_state = 62, .external_lex_state = 3}, - [518] = {.lex_state = 62, .external_lex_state = 2}, - [519] = {.lex_state = 62, .external_lex_state = 2}, - [520] = {.lex_state = 62, .external_lex_state = 3}, - [521] = {.lex_state = 62, .external_lex_state = 2}, + [518] = {.lex_state = 62, .external_lex_state = 3}, + [519] = {.lex_state = 62, .external_lex_state = 3}, + [520] = {.lex_state = 62, .external_lex_state = 2}, + [521] = {.lex_state = 62, .external_lex_state = 3}, [522] = {.lex_state = 62, .external_lex_state = 3}, - [523] = {.lex_state = 62, .external_lex_state = 2}, + [523] = {.lex_state = 62, .external_lex_state = 3}, [524] = {.lex_state = 62, .external_lex_state = 2}, - [525] = {.lex_state = 62, .external_lex_state = 3}, - [526] = {.lex_state = 62, .external_lex_state = 3}, - [527] = {.lex_state = 62, .external_lex_state = 3}, - [528] = {.lex_state = 62, .external_lex_state = 2}, + [525] = {.lex_state = 62, .external_lex_state = 2}, + [526] = {.lex_state = 62, .external_lex_state = 2}, + [527] = {.lex_state = 62, .external_lex_state = 2}, + [528] = {.lex_state = 62, .external_lex_state = 3}, [529] = {.lex_state = 62, .external_lex_state = 3}, - [530] = {.lex_state = 62, .external_lex_state = 3}, - [531] = {.lex_state = 62, .external_lex_state = 3}, + [530] = {.lex_state = 62, .external_lex_state = 2}, + [531] = {.lex_state = 62, .external_lex_state = 2}, [532] = {.lex_state = 62, .external_lex_state = 2}, [533] = {.lex_state = 62, .external_lex_state = 2}, [534] = {.lex_state = 62, .external_lex_state = 3}, - [535] = {.lex_state = 62, .external_lex_state = 2}, - [536] = {.lex_state = 62, .external_lex_state = 2}, + [535] = {.lex_state = 62, .external_lex_state = 3}, + [536] = {.lex_state = 62, .external_lex_state = 3}, [537] = {.lex_state = 62, .external_lex_state = 2}, [538] = {.lex_state = 62, .external_lex_state = 2}, [539] = {.lex_state = 62, .external_lex_state = 3}, [540] = {.lex_state = 62, .external_lex_state = 3}, - [541] = {.lex_state = 62, .external_lex_state = 2}, - [542] = {.lex_state = 62, .external_lex_state = 2}, + [541] = {.lex_state = 62, .external_lex_state = 3}, + [542] = {.lex_state = 62, .external_lex_state = 3}, [543] = {.lex_state = 62, .external_lex_state = 2}, - [544] = {.lex_state = 62, .external_lex_state = 3}, + [544] = {.lex_state = 62, .external_lex_state = 2}, [545] = {.lex_state = 62, .external_lex_state = 2}, - [546] = {.lex_state = 62, .external_lex_state = 2}, - [547] = {.lex_state = 62, .external_lex_state = 2}, + [546] = {.lex_state = 62, .external_lex_state = 3}, + [547] = {.lex_state = 62, .external_lex_state = 3}, [548] = {.lex_state = 62, .external_lex_state = 3}, [549] = {.lex_state = 62, .external_lex_state = 2}, - [550] = {.lex_state = 62, .external_lex_state = 2}, - [551] = {.lex_state = 62, .external_lex_state = 3}, + [550] = {.lex_state = 62, .external_lex_state = 3}, + [551] = {.lex_state = 62, .external_lex_state = 2}, [552] = {.lex_state = 62, .external_lex_state = 2}, [553] = {.lex_state = 62, .external_lex_state = 2}, - [554] = {.lex_state = 62, .external_lex_state = 3}, - [555] = {.lex_state = 62, .external_lex_state = 3}, - [556] = {.lex_state = 62, .external_lex_state = 2}, - [557] = {.lex_state = 62, .external_lex_state = 2}, + [554] = {.lex_state = 62, .external_lex_state = 2}, + [555] = {.lex_state = 62, .external_lex_state = 2}, + [556] = {.lex_state = 62, .external_lex_state = 3}, + [557] = {.lex_state = 62, .external_lex_state = 3}, [558] = {.lex_state = 62, .external_lex_state = 3}, - [559] = {.lex_state = 62, .external_lex_state = 2}, + [559] = {.lex_state = 62, .external_lex_state = 3}, [560] = {.lex_state = 62, .external_lex_state = 3}, [561] = {.lex_state = 62, .external_lex_state = 2}, [562] = {.lex_state = 62, .external_lex_state = 3}, [563] = {.lex_state = 62, .external_lex_state = 3}, [564] = {.lex_state = 62, .external_lex_state = 3}, - [565] = {.lex_state = 62, .external_lex_state = 3}, - [566] = {.lex_state = 62, .external_lex_state = 2}, - [567] = {.lex_state = 62, .external_lex_state = 3}, - [568] = {.lex_state = 62, .external_lex_state = 3}, + [565] = {.lex_state = 62, .external_lex_state = 2}, + [566] = {.lex_state = 62, .external_lex_state = 3}, + [567] = {.lex_state = 62, .external_lex_state = 2}, + [568] = {.lex_state = 62, .external_lex_state = 2}, [569] = {.lex_state = 62, .external_lex_state = 2}, - [570] = {.lex_state = 62, .external_lex_state = 3}, + [570] = {.lex_state = 62, .external_lex_state = 2}, [571] = {.lex_state = 62, .external_lex_state = 3}, [572] = {.lex_state = 62, .external_lex_state = 2}, - [573] = {.lex_state = 62, .external_lex_state = 2}, - [574] = {.lex_state = 62, .external_lex_state = 3}, - [575] = {.lex_state = 62, .external_lex_state = 2}, + [573] = {.lex_state = 62, .external_lex_state = 3}, + [574] = {.lex_state = 62, .external_lex_state = 2}, + [575] = {.lex_state = 62, .external_lex_state = 3}, [576] = {.lex_state = 62, .external_lex_state = 2}, [577] = {.lex_state = 62, .external_lex_state = 3}, [578] = {.lex_state = 62, .external_lex_state = 2}, - [579] = {.lex_state = 62, .external_lex_state = 3}, + [579] = {.lex_state = 62, .external_lex_state = 2}, [580] = {.lex_state = 62, .external_lex_state = 3}, - [581] = {.lex_state = 62, .external_lex_state = 3}, - [582] = {.lex_state = 62, .external_lex_state = 3}, + [581] = {.lex_state = 62, .external_lex_state = 2}, + [582] = {.lex_state = 62, .external_lex_state = 2}, [583] = {.lex_state = 62, .external_lex_state = 2}, [584] = {.lex_state = 62, .external_lex_state = 3}, - [585] = {.lex_state = 62, .external_lex_state = 2}, + [585] = {.lex_state = 62, .external_lex_state = 3}, [586] = {.lex_state = 62, .external_lex_state = 2}, [587] = {.lex_state = 62, .external_lex_state = 3}, [588] = {.lex_state = 62, .external_lex_state = 3}, - [589] = {.lex_state = 62, .external_lex_state = 2}, + [589] = {.lex_state = 62, .external_lex_state = 3}, [590] = {.lex_state = 62, .external_lex_state = 2}, [591] = {.lex_state = 62, .external_lex_state = 3}, [592] = {.lex_state = 62, .external_lex_state = 3}, [593] = {.lex_state = 62, .external_lex_state = 3}, [594] = {.lex_state = 62, .external_lex_state = 3}, - [595] = {.lex_state = 62, .external_lex_state = 2}, + [595] = {.lex_state = 62, .external_lex_state = 3}, [596] = {.lex_state = 62, .external_lex_state = 2}, [597] = {.lex_state = 62, .external_lex_state = 2}, - [598] = {.lex_state = 15, .external_lex_state = 2}, - [599] = {.lex_state = 15, .external_lex_state = 2}, + [598] = {.lex_state = 62, .external_lex_state = 2}, + [599] = {.lex_state = 62, .external_lex_state = 2}, [600] = {.lex_state = 15, .external_lex_state = 2}, - [601] = {.lex_state = 62, .external_lex_state = 2}, + [601] = {.lex_state = 15, .external_lex_state = 2}, [602] = {.lex_state = 62, .external_lex_state = 2}, [603] = {.lex_state = 62, .external_lex_state = 2}, [604] = {.lex_state = 62, .external_lex_state = 2}, [605] = {.lex_state = 62, .external_lex_state = 2}, [606] = {.lex_state = 62, .external_lex_state = 2}, - [607] = {.lex_state = 62, .external_lex_state = 2}, + [607] = {.lex_state = 15, .external_lex_state = 2}, [608] = {.lex_state = 62, .external_lex_state = 2}, - [609] = {.lex_state = 15, .external_lex_state = 2}, + [609] = {.lex_state = 62, .external_lex_state = 2}, [610] = {.lex_state = 15, .external_lex_state = 2}, - [611] = {.lex_state = 15}, + [611] = {.lex_state = 15, .external_lex_state = 2}, [612] = {.lex_state = 15}, [613] = {.lex_state = 15}, [614] = {.lex_state = 15}, @@ -9314,7 +6904,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [620] = {.lex_state = 15}, [621] = {.lex_state = 15}, [622] = {.lex_state = 15}, - [623] = {.lex_state = 15}, + [623] = {.lex_state = 16, .external_lex_state = 2}, [624] = {.lex_state = 15}, [625] = {.lex_state = 15}, [626] = {.lex_state = 15}, @@ -9327,7 +6917,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [633] = {.lex_state = 15}, [634] = {.lex_state = 15}, [635] = {.lex_state = 15}, - [636] = {.lex_state = 16, .external_lex_state = 2}, + [636] = {.lex_state = 15}, [637] = {.lex_state = 15}, [638] = {.lex_state = 15}, [639] = {.lex_state = 15}, @@ -9358,32 +6948,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [664] = {.lex_state = 15}, [665] = {.lex_state = 15}, [666] = {.lex_state = 15}, - [667] = {.lex_state = 14}, - [668] = {.lex_state = 14}, + [667] = {.lex_state = 15}, + [668] = {.lex_state = 62, .external_lex_state = 2}, [669] = {.lex_state = 62, .external_lex_state = 2}, - [670] = {.lex_state = 62, .external_lex_state = 2}, + [670] = {.lex_state = 14}, [671] = {.lex_state = 15}, - [672] = {.lex_state = 15}, - [673] = {.lex_state = 62, .external_lex_state = 2}, - [674] = {.lex_state = 14}, - [675] = {.lex_state = 14}, - [676] = {.lex_state = 62, .external_lex_state = 2}, - [677] = {.lex_state = 15, .external_lex_state = 2}, + [672] = {.lex_state = 62, .external_lex_state = 2}, + [673] = {.lex_state = 14}, + [674] = {.lex_state = 15, .external_lex_state = 2}, + [675] = {.lex_state = 15}, + [676] = {.lex_state = 14}, + [677] = {.lex_state = 14}, [678] = {.lex_state = 15, .external_lex_state = 2}, [679] = {.lex_state = 62, .external_lex_state = 2}, - [680] = {.lex_state = 62, .external_lex_state = 2}, + [680] = {.lex_state = 15, .external_lex_state = 4}, [681] = {.lex_state = 62, .external_lex_state = 2}, [682] = {.lex_state = 62, .external_lex_state = 2}, - [683] = {.lex_state = 62, .external_lex_state = 2}, - [684] = {.lex_state = 15, .external_lex_state = 6}, + [683] = {.lex_state = 15, .external_lex_state = 4}, + [684] = {.lex_state = 62, .external_lex_state = 2}, [685] = {.lex_state = 62, .external_lex_state = 2}, [686] = {.lex_state = 62, .external_lex_state = 2}, [687] = {.lex_state = 62, .external_lex_state = 2}, [688] = {.lex_state = 62, .external_lex_state = 2}, - [689] = {.lex_state = 15, .external_lex_state = 4}, + [689] = {.lex_state = 62, .external_lex_state = 2}, [690] = {.lex_state = 62, .external_lex_state = 2}, [691] = {.lex_state = 62, .external_lex_state = 2}, - [692] = {.lex_state = 62, .external_lex_state = 2}, + [692] = {.lex_state = 15, .external_lex_state = 4}, [693] = {.lex_state = 62, .external_lex_state = 2}, [694] = {.lex_state = 62, .external_lex_state = 2}, [695] = {.lex_state = 62, .external_lex_state = 2}, @@ -9392,85 +6982,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [698] = {.lex_state = 62, .external_lex_state = 2}, [699] = {.lex_state = 62, .external_lex_state = 2}, [700] = {.lex_state = 62, .external_lex_state = 2}, - [701] = {.lex_state = 62, .external_lex_state = 2}, + [701] = {.lex_state = 15}, [702] = {.lex_state = 62, .external_lex_state = 2}, - [703] = {.lex_state = 62, .external_lex_state = 2}, + [703] = {.lex_state = 15}, [704] = {.lex_state = 62, .external_lex_state = 2}, [705] = {.lex_state = 62, .external_lex_state = 2}, [706] = {.lex_state = 62, .external_lex_state = 2}, [707] = {.lex_state = 62, .external_lex_state = 2}, [708] = {.lex_state = 62, .external_lex_state = 2}, [709] = {.lex_state = 62, .external_lex_state = 2}, - [710] = {.lex_state = 62, .external_lex_state = 2}, + [710] = {.lex_state = 15, .external_lex_state = 6}, [711] = {.lex_state = 62, .external_lex_state = 2}, [712] = {.lex_state = 62, .external_lex_state = 2}, - [713] = {.lex_state = 15, .external_lex_state = 4}, + [713] = {.lex_state = 62, .external_lex_state = 2}, [714] = {.lex_state = 62, .external_lex_state = 2}, [715] = {.lex_state = 62, .external_lex_state = 2}, [716] = {.lex_state = 62, .external_lex_state = 2}, [717] = {.lex_state = 62, .external_lex_state = 2}, [718] = {.lex_state = 62, .external_lex_state = 2}, [719] = {.lex_state = 62, .external_lex_state = 2}, - [720] = {.lex_state = 15, .external_lex_state = 4}, + [720] = {.lex_state = 62, .external_lex_state = 2}, [721] = {.lex_state = 62, .external_lex_state = 2}, [722] = {.lex_state = 62, .external_lex_state = 2}, [723] = {.lex_state = 62, .external_lex_state = 2}, [724] = {.lex_state = 62, .external_lex_state = 2}, - [725] = {.lex_state = 15}, + [725] = {.lex_state = 62, .external_lex_state = 2}, [726] = {.lex_state = 62, .external_lex_state = 2}, - [727] = {.lex_state = 15}, + [727] = {.lex_state = 62, .external_lex_state = 2}, [728] = {.lex_state = 62, .external_lex_state = 2}, [729] = {.lex_state = 62, .external_lex_state = 2}, [730] = {.lex_state = 62, .external_lex_state = 2}, - [731] = {.lex_state = 15, .external_lex_state = 6}, + [731] = {.lex_state = 62, .external_lex_state = 2}, [732] = {.lex_state = 15, .external_lex_state = 6}, [733] = {.lex_state = 15, .external_lex_state = 6}, [734] = {.lex_state = 15, .external_lex_state = 6}, - [735] = {.lex_state = 15, .external_lex_state = 6}, - [736] = {.lex_state = 15, .external_lex_state = 2}, + [735] = {.lex_state = 15, .external_lex_state = 2}, + [736] = {.lex_state = 15, .external_lex_state = 6}, [737] = {.lex_state = 15, .external_lex_state = 6}, [738] = {.lex_state = 15, .external_lex_state = 6}, - [739] = {.lex_state = 15, .external_lex_state = 6}, + [739] = {.lex_state = 15, .external_lex_state = 2}, [740] = {.lex_state = 15}, [741] = {.lex_state = 15, .external_lex_state = 6}, - [742] = {.lex_state = 15, .external_lex_state = 2}, - [743] = {.lex_state = 15, .external_lex_state = 6}, - [744] = {.lex_state = 15, .external_lex_state = 2}, + [742] = {.lex_state = 15, .external_lex_state = 6}, + [743] = {.lex_state = 15, .external_lex_state = 2}, + [744] = {.lex_state = 15, .external_lex_state = 6}, [745] = {.lex_state = 15, .external_lex_state = 6}, - [746] = {.lex_state = 15}, + [746] = {.lex_state = 15, .external_lex_state = 6}, [747] = {.lex_state = 15}, [748] = {.lex_state = 15}, - [749] = {.lex_state = 14}, + [749] = {.lex_state = 15}, [750] = {.lex_state = 15}, [751] = {.lex_state = 15}, [752] = {.lex_state = 15}, [753] = {.lex_state = 15}, - [754] = {.lex_state = 14, .external_lex_state = 6}, - [755] = {.lex_state = 14, .external_lex_state = 6}, - [756] = {.lex_state = 15}, - [757] = {.lex_state = 15}, - [758] = {.lex_state = 15, .external_lex_state = 4}, - [759] = {.lex_state = 14}, + [754] = {.lex_state = 15}, + [755] = {.lex_state = 15}, + [756] = {.lex_state = 14, .external_lex_state = 6}, + [757] = {.lex_state = 15, .external_lex_state = 4}, + [758] = {.lex_state = 14}, + [759] = {.lex_state = 15}, [760] = {.lex_state = 14}, - [761] = {.lex_state = 15}, - [762] = {.lex_state = 15}, + [761] = {.lex_state = 14}, + [762] = {.lex_state = 14, .external_lex_state = 6}, [763] = {.lex_state = 15}, - [764] = {.lex_state = 14}, + [764] = {.lex_state = 15}, [765] = {.lex_state = 15}, - [766] = {.lex_state = 15}, + [766] = {.lex_state = 15, .external_lex_state = 4}, [767] = {.lex_state = 15}, [768] = {.lex_state = 15}, - [769] = {.lex_state = 15, .external_lex_state = 4}, + [769] = {.lex_state = 14}, [770] = {.lex_state = 15}, - [771] = {.lex_state = 15, .external_lex_state = 6}, + [771] = {.lex_state = 15}, [772] = {.lex_state = 15, .external_lex_state = 6}, [773] = {.lex_state = 15, .external_lex_state = 6}, [774] = {.lex_state = 15, .external_lex_state = 6}, - [775] = {.lex_state = 15, .external_lex_state = 6}, + [775] = {.lex_state = 14}, [776] = {.lex_state = 15, .external_lex_state = 6}, [777] = {.lex_state = 15, .external_lex_state = 6}, [778] = {.lex_state = 15, .external_lex_state = 6}, - [779] = {.lex_state = 15}, + [779] = {.lex_state = 15, .external_lex_state = 6}, [780] = {.lex_state = 15, .external_lex_state = 6}, [781] = {.lex_state = 15, .external_lex_state = 6}, [782] = {.lex_state = 15, .external_lex_state = 6}, @@ -9480,7 +7070,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [786] = {.lex_state = 15, .external_lex_state = 6}, [787] = {.lex_state = 15, .external_lex_state = 6}, [788] = {.lex_state = 15, .external_lex_state = 6}, - [789] = {.lex_state = 15}, + [789] = {.lex_state = 15, .external_lex_state = 6}, [790] = {.lex_state = 15, .external_lex_state = 6}, [791] = {.lex_state = 15, .external_lex_state = 6}, [792] = {.lex_state = 15, .external_lex_state = 6}, @@ -9488,22 +7078,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [794] = {.lex_state = 15, .external_lex_state = 6}, [795] = {.lex_state = 15, .external_lex_state = 6}, [796] = {.lex_state = 15, .external_lex_state = 6}, - [797] = {.lex_state = 15, .external_lex_state = 6}, - [798] = {.lex_state = 14}, + [797] = {.lex_state = 15}, + [798] = {.lex_state = 15, .external_lex_state = 6}, [799] = {.lex_state = 15, .external_lex_state = 6}, - [800] = {.lex_state = 15, .external_lex_state = 6}, - [801] = {.lex_state = 14}, - [802] = {.lex_state = 15, .external_lex_state = 6}, + [800] = {.lex_state = 15}, + [801] = {.lex_state = 15, .external_lex_state = 6}, + [802] = {.lex_state = 14}, [803] = {.lex_state = 15, .external_lex_state = 6}, [804] = {.lex_state = 15, .external_lex_state = 6}, [805] = {.lex_state = 15, .external_lex_state = 6}, - [806] = {.lex_state = 15}, + [806] = {.lex_state = 15, .external_lex_state = 6}, [807] = {.lex_state = 15, .external_lex_state = 6}, [808] = {.lex_state = 15, .external_lex_state = 6}, [809] = {.lex_state = 15}, [810] = {.lex_state = 15}, [811] = {.lex_state = 15}, - [812] = {.lex_state = 14}, + [812] = {.lex_state = 15}, [813] = {.lex_state = 15}, [814] = {.lex_state = 15}, [815] = {.lex_state = 15}, @@ -9522,13 +7112,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [828] = {.lex_state = 15}, [829] = {.lex_state = 15}, [830] = {.lex_state = 15}, - [831] = {.lex_state = 15}, + [831] = {.lex_state = 14}, [832] = {.lex_state = 15}, [833] = {.lex_state = 15}, [834] = {.lex_state = 15}, [835] = {.lex_state = 15}, [836] = {.lex_state = 15}, - [837] = {.lex_state = 14}, + [837] = {.lex_state = 15}, [838] = {.lex_state = 15}, [839] = {.lex_state = 15}, [840] = {.lex_state = 15}, @@ -9540,11 +7130,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [846] = {.lex_state = 15}, [847] = {.lex_state = 15}, [848] = {.lex_state = 15}, - [849] = {.lex_state = 62, .external_lex_state = 2}, + [849] = {.lex_state = 14}, [850] = {.lex_state = 16, .external_lex_state = 2}, - [851] = {.lex_state = 16, .external_lex_state = 2}, + [851] = {.lex_state = 62, .external_lex_state = 2}, [852] = {.lex_state = 62, .external_lex_state = 2}, - [853] = {.lex_state = 62, .external_lex_state = 2}, + [853] = {.lex_state = 16, .external_lex_state = 2}, [854] = {.lex_state = 62, .external_lex_state = 2}, [855] = {.lex_state = 62, .external_lex_state = 2}, [856] = {.lex_state = 62, .external_lex_state = 2}, @@ -9559,22 +7149,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [865] = {.lex_state = 62, .external_lex_state = 2}, [866] = {.lex_state = 62, .external_lex_state = 2}, [867] = {.lex_state = 62, .external_lex_state = 2}, - [868] = {.lex_state = 16}, + [868] = {.lex_state = 62, .external_lex_state = 2}, [869] = {.lex_state = 16}, [870] = {.lex_state = 16}, [871] = {.lex_state = 16}, [872] = {.lex_state = 16}, [873] = {.lex_state = 16}, - [874] = {.lex_state = 16}, + [874] = {.lex_state = 15}, [875] = {.lex_state = 16}, [876] = {.lex_state = 16}, - [877] = {.lex_state = 62, .external_lex_state = 6}, - [878] = {.lex_state = 62, .external_lex_state = 6}, - [879] = {.lex_state = 15}, - [880] = {.lex_state = 15}, - [881] = {.lex_state = 16}, - [882] = {.lex_state = 15}, - [883] = {.lex_state = 16}, + [877] = {.lex_state = 16}, + [878] = {.lex_state = 16}, + [879] = {.lex_state = 62, .external_lex_state = 6}, + [880] = {.lex_state = 62, .external_lex_state = 6}, + [881] = {.lex_state = 15}, + [882] = {.lex_state = 16}, + [883] = {.lex_state = 15}, [884] = {.lex_state = 16}, [885] = {.lex_state = 16}, [886] = {.lex_state = 16}, @@ -9582,72 +7172,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [888] = {.lex_state = 16}, [889] = {.lex_state = 16}, [890] = {.lex_state = 16}, - [891] = {.lex_state = 62, .external_lex_state = 2}, + [891] = {.lex_state = 16}, [892] = {.lex_state = 62, .external_lex_state = 2}, - [893] = {.lex_state = 62}, + [893] = {.lex_state = 62, .external_lex_state = 2}, [894] = {.lex_state = 62, .external_lex_state = 2}, [895] = {.lex_state = 62}, - [896] = {.lex_state = 16}, + [896] = {.lex_state = 62}, [897] = {.lex_state = 16}, [898] = {.lex_state = 16}, - [899] = {.lex_state = 62}, - [900] = {.lex_state = 16}, + [899] = {.lex_state = 16}, + [900] = {.lex_state = 62}, [901] = {.lex_state = 16}, [902] = {.lex_state = 62}, - [903] = {.lex_state = 62}, - [904] = {.lex_state = 16}, - [905] = {.lex_state = 62, .external_lex_state = 2}, - [906] = {.lex_state = 15}, - [907] = {.lex_state = 16}, + [903] = {.lex_state = 16}, + [904] = {.lex_state = 62}, + [905] = {.lex_state = 16}, + [906] = {.lex_state = 62, .external_lex_state = 2}, + [907] = {.lex_state = 15}, [908] = {.lex_state = 16}, - [909] = {.lex_state = 16}, - [910] = {.lex_state = 15}, - [911] = {.lex_state = 16}, - [912] = {.lex_state = 16}, - [913] = {.lex_state = 16, .external_lex_state = 2}, - [914] = {.lex_state = 16}, - [915] = {.lex_state = 62}, + [909] = {.lex_state = 18, .external_lex_state = 7}, + [910] = {.lex_state = 18, .external_lex_state = 7}, + [911] = {.lex_state = 62}, + [912] = {.lex_state = 15}, + [913] = {.lex_state = 16}, + [914] = {.lex_state = 18, .external_lex_state = 7}, + [915] = {.lex_state = 16}, [916] = {.lex_state = 16}, - [917] = {.lex_state = 15}, + [917] = {.lex_state = 16}, [918] = {.lex_state = 16}, [919] = {.lex_state = 16}, - [920] = {.lex_state = 16}, - [921] = {.lex_state = 16}, + [920] = {.lex_state = 18, .external_lex_state = 7}, + [921] = {.lex_state = 18, .external_lex_state = 7}, [922] = {.lex_state = 16}, - [923] = {.lex_state = 16}, + [923] = {.lex_state = 18, .external_lex_state = 7}, [924] = {.lex_state = 16}, - [925] = {.lex_state = 15}, - [926] = {.lex_state = 16}, - [927] = {.lex_state = 16}, + [925] = {.lex_state = 16}, + [926] = {.lex_state = 18, .external_lex_state = 7}, + [927] = {.lex_state = 18, .external_lex_state = 7}, [928] = {.lex_state = 16}, [929] = {.lex_state = 16}, - [930] = {.lex_state = 62}, - [931] = {.lex_state = 62}, - [932] = {.lex_state = 62}, - [933] = {.lex_state = 16}, - [934] = {.lex_state = 18, .external_lex_state = 7}, - [935] = {.lex_state = 62}, + [930] = {.lex_state = 15}, + [931] = {.lex_state = 16}, + [932] = {.lex_state = 16}, + [933] = {.lex_state = 16, .external_lex_state = 2}, + [934] = {.lex_state = 15}, + [935] = {.lex_state = 16}, [936] = {.lex_state = 18, .external_lex_state = 7}, - [937] = {.lex_state = 18, .external_lex_state = 7}, - [938] = {.lex_state = 18, .external_lex_state = 7}, + [937] = {.lex_state = 16}, + [938] = {.lex_state = 16}, [939] = {.lex_state = 16}, [940] = {.lex_state = 62}, - [941] = {.lex_state = 62}, - [942] = {.lex_state = 18, .external_lex_state = 7}, + [941] = {.lex_state = 16}, + [942] = {.lex_state = 62}, [943] = {.lex_state = 16}, - [944] = {.lex_state = 18, .external_lex_state = 7}, + [944] = {.lex_state = 62}, [945] = {.lex_state = 62}, - [946] = {.lex_state = 62}, - [947] = {.lex_state = 16}, - [948] = {.lex_state = 16}, - [949] = {.lex_state = 18, .external_lex_state = 7}, - [950] = {.lex_state = 18, .external_lex_state = 7}, + [946] = {.lex_state = 16}, + [947] = {.lex_state = 62}, + [948] = {.lex_state = 62}, + [949] = {.lex_state = 16}, + [950] = {.lex_state = 62}, [951] = {.lex_state = 16}, - [952] = {.lex_state = 18, .external_lex_state = 7}, + [952] = {.lex_state = 16}, [953] = {.lex_state = 62}, - [954] = {.lex_state = 16}, + [954] = {.lex_state = 62}, [955] = {.lex_state = 62}, - [956] = {.lex_state = 62}, + [956] = {.lex_state = 16}, [957] = {.lex_state = 16}, [958] = {.lex_state = 62}, [959] = {.lex_state = 62}, @@ -9655,619 +7245,574 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [961] = {.lex_state = 16}, [962] = {.lex_state = 62}, [963] = {.lex_state = 62}, - [964] = {.lex_state = 16}, - [965] = {.lex_state = 0}, + [964] = {.lex_state = 62}, + [965] = {.lex_state = 62, .external_lex_state = 6}, [966] = {.lex_state = 16}, - [967] = {.lex_state = 62, .external_lex_state = 6}, + [967] = {.lex_state = 62}, [968] = {.lex_state = 16}, - [969] = {.lex_state = 16}, + [969] = {.lex_state = 62, .external_lex_state = 6}, [970] = {.lex_state = 16}, [971] = {.lex_state = 16}, - [972] = {.lex_state = 16}, - [973] = {.lex_state = 16}, + [972] = {.lex_state = 62, .external_lex_state = 6}, + [973] = {.lex_state = 62, .external_lex_state = 6}, [974] = {.lex_state = 62, .external_lex_state = 6}, - [975] = {.lex_state = 16}, - [976] = {.lex_state = 62, .external_lex_state = 6}, + [975] = {.lex_state = 62, .external_lex_state = 6}, + [976] = {.lex_state = 0}, [977] = {.lex_state = 16}, - [978] = {.lex_state = 62}, - [979] = {.lex_state = 62}, - [980] = {.lex_state = 62, .external_lex_state = 6}, - [981] = {.lex_state = 16}, - [982] = {.lex_state = 62, .external_lex_state = 6}, - [983] = {.lex_state = 0}, + [978] = {.lex_state = 16}, + [979] = {.lex_state = 16}, + [980] = {.lex_state = 16}, + [981] = {.lex_state = 62}, + [982] = {.lex_state = 16}, + [983] = {.lex_state = 16}, [984] = {.lex_state = 16}, [985] = {.lex_state = 16}, [986] = {.lex_state = 16}, [987] = {.lex_state = 16}, - [988] = {.lex_state = 16}, - [989] = {.lex_state = 16}, - [990] = {.lex_state = 16}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 62, .external_lex_state = 6}, + [988] = {.lex_state = 62, .external_lex_state = 6}, + [989] = {.lex_state = 62}, + [990] = {.lex_state = 18, .external_lex_state = 7}, + [991] = {.lex_state = 16}, + [992] = {.lex_state = 16}, [993] = {.lex_state = 16}, - [994] = {.lex_state = 62}, - [995] = {.lex_state = 62}, + [994] = {.lex_state = 16}, + [995] = {.lex_state = 16}, [996] = {.lex_state = 62}, - [997] = {.lex_state = 62, .external_lex_state = 6}, - [998] = {.lex_state = 16}, - [999] = {.lex_state = 15}, - [1000] = {.lex_state = 62, .external_lex_state = 6}, - [1001] = {.lex_state = 62, .external_lex_state = 6}, - [1002] = {.lex_state = 62}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 16}, - [1005] = {.lex_state = 16}, - [1006] = {.lex_state = 16}, - [1007] = {.lex_state = 62, .external_lex_state = 6}, - [1008] = {.lex_state = 16}, - [1009] = {.lex_state = 62, .external_lex_state = 6}, - [1010] = {.lex_state = 16}, + [997] = {.lex_state = 62}, + [998] = {.lex_state = 15}, + [999] = {.lex_state = 62}, + [1000] = {.lex_state = 16}, + [1001] = {.lex_state = 0}, + [1002] = {.lex_state = 0}, + [1003] = {.lex_state = 16}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 62}, + [1006] = {.lex_state = 62, .external_lex_state = 6}, + [1007] = {.lex_state = 16}, + [1008] = {.lex_state = 62}, + [1009] = {.lex_state = 16}, + [1010] = {.lex_state = 18, .external_lex_state = 7}, [1011] = {.lex_state = 16}, - [1012] = {.lex_state = 62}, - [1013] = {.lex_state = 62}, - [1014] = {.lex_state = 62, .external_lex_state = 6}, + [1012] = {.lex_state = 62, .external_lex_state = 6}, + [1013] = {.lex_state = 62, .external_lex_state = 6}, + [1014] = {.lex_state = 16}, [1015] = {.lex_state = 16}, - [1016] = {.lex_state = 15}, + [1016] = {.lex_state = 62, .external_lex_state = 6}, [1017] = {.lex_state = 62}, [1018] = {.lex_state = 62}, [1019] = {.lex_state = 62, .external_lex_state = 6}, - [1020] = {.lex_state = 62}, - [1021] = {.lex_state = 16}, - [1022] = {.lex_state = 16}, - [1023] = {.lex_state = 16}, + [1020] = {.lex_state = 15}, + [1021] = {.lex_state = 62, .external_lex_state = 6}, + [1022] = {.lex_state = 62, .external_lex_state = 6}, + [1023] = {.lex_state = 62}, [1024] = {.lex_state = 16}, [1025] = {.lex_state = 16}, - [1026] = {.lex_state = 62, .external_lex_state = 6}, + [1026] = {.lex_state = 16}, [1027] = {.lex_state = 16}, [1028] = {.lex_state = 16}, [1029] = {.lex_state = 16}, - [1030] = {.lex_state = 16}, - [1031] = {.lex_state = 18, .external_lex_state = 7}, + [1030] = {.lex_state = 62}, + [1031] = {.lex_state = 16}, [1032] = {.lex_state = 16}, - [1033] = {.lex_state = 62}, - [1034] = {.lex_state = 62, .external_lex_state = 6}, - [1035] = {.lex_state = 16}, + [1033] = {.lex_state = 16}, + [1034] = {.lex_state = 16}, + [1035] = {.lex_state = 62, .external_lex_state = 6}, [1036] = {.lex_state = 62, .external_lex_state = 6}, - [1037] = {.lex_state = 62}, - [1038] = {.lex_state = 62}, + [1037] = {.lex_state = 62, .external_lex_state = 6}, + [1038] = {.lex_state = 16}, [1039] = {.lex_state = 62}, - [1040] = {.lex_state = 16}, - [1041] = {.lex_state = 16}, - [1042] = {.lex_state = 16}, - [1043] = {.lex_state = 62, .external_lex_state = 6}, - [1044] = {.lex_state = 62, .external_lex_state = 6}, - [1045] = {.lex_state = 62, .external_lex_state = 6}, - [1046] = {.lex_state = 62, .external_lex_state = 6}, + [1040] = {.lex_state = 62, .external_lex_state = 6}, + [1041] = {.lex_state = 62, .external_lex_state = 6}, + [1042] = {.lex_state = 62, .external_lex_state = 6}, + [1043] = {.lex_state = 16}, + [1044] = {.lex_state = 62}, + [1045] = {.lex_state = 62}, + [1046] = {.lex_state = 62}, [1047] = {.lex_state = 16}, - [1048] = {.lex_state = 62, .external_lex_state = 6}, - [1049] = {.lex_state = 62}, - [1050] = {.lex_state = 16}, + [1048] = {.lex_state = 62}, + [1049] = {.lex_state = 62, .external_lex_state = 6}, + [1050] = {.lex_state = 62}, [1051] = {.lex_state = 16}, - [1052] = {.lex_state = 62}, - [1053] = {.lex_state = 62}, - [1054] = {.lex_state = 62, .external_lex_state = 6}, - [1055] = {.lex_state = 18, .external_lex_state = 7}, + [1052] = {.lex_state = 16}, + [1053] = {.lex_state = 16}, + [1054] = {.lex_state = 16}, + [1055] = {.lex_state = 62, .external_lex_state = 6}, [1056] = {.lex_state = 62}, - [1057] = {.lex_state = 15, .external_lex_state = 6}, - [1058] = {.lex_state = 15}, - [1059] = {.lex_state = 16}, + [1057] = {.lex_state = 16}, + [1058] = {.lex_state = 16}, + [1059] = {.lex_state = 15}, [1060] = {.lex_state = 18, .external_lex_state = 7}, - [1061] = {.lex_state = 15}, - [1062] = {.lex_state = 62}, - [1063] = {.lex_state = 16}, - [1064] = {.lex_state = 16}, - [1065] = {.lex_state = 62, .external_lex_state = 6}, + [1061] = {.lex_state = 16}, + [1062] = {.lex_state = 16}, + [1063] = {.lex_state = 15, .external_lex_state = 6}, + [1064] = {.lex_state = 62, .external_lex_state = 6}, + [1065] = {.lex_state = 16}, [1066] = {.lex_state = 62, .external_lex_state = 6}, - [1067] = {.lex_state = 18, .external_lex_state = 7}, - [1068] = {.lex_state = 15, .external_lex_state = 6}, - [1069] = {.lex_state = 18, .external_lex_state = 7}, - [1070] = {.lex_state = 16}, - [1071] = {.lex_state = 62}, + [1067] = {.lex_state = 15, .external_lex_state = 6}, + [1068] = {.lex_state = 18, .external_lex_state = 7}, + [1069] = {.lex_state = 62, .external_lex_state = 6}, + [1070] = {.lex_state = 62}, + [1071] = {.lex_state = 16}, [1072] = {.lex_state = 18, .external_lex_state = 7}, [1073] = {.lex_state = 16}, - [1074] = {.lex_state = 18, .external_lex_state = 7}, - [1075] = {.lex_state = 16}, - [1076] = {.lex_state = 18, .external_lex_state = 7}, + [1074] = {.lex_state = 16}, + [1075] = {.lex_state = 62}, + [1076] = {.lex_state = 16}, [1077] = {.lex_state = 16}, [1078] = {.lex_state = 62, .external_lex_state = 6}, [1079] = {.lex_state = 16}, [1080] = {.lex_state = 16}, - [1081] = {.lex_state = 16}, - [1082] = {.lex_state = 62, .external_lex_state = 6}, + [1081] = {.lex_state = 18, .external_lex_state = 7}, + [1082] = {.lex_state = 16}, [1083] = {.lex_state = 16}, [1084] = {.lex_state = 16}, - [1085] = {.lex_state = 16}, - [1086] = {.lex_state = 16}, - [1087] = {.lex_state = 16}, - [1088] = {.lex_state = 15, .external_lex_state = 6}, - [1089] = {.lex_state = 16}, - [1090] = {.lex_state = 62}, - [1091] = {.lex_state = 62}, - [1092] = {.lex_state = 62, .external_lex_state = 6}, + [1085] = {.lex_state = 15, .external_lex_state = 6}, + [1086] = {.lex_state = 62}, + [1087] = {.lex_state = 15}, + [1088] = {.lex_state = 18, .external_lex_state = 7}, + [1089] = {.lex_state = 18, .external_lex_state = 7}, + [1090] = {.lex_state = 16}, + [1091] = {.lex_state = 16}, + [1092] = {.lex_state = 16}, [1093] = {.lex_state = 62, .external_lex_state = 6}, [1094] = {.lex_state = 62, .external_lex_state = 6}, [1095] = {.lex_state = 62, .external_lex_state = 6}, [1096] = {.lex_state = 62, .external_lex_state = 6}, [1097] = {.lex_state = 16}, - [1098] = {.lex_state = 62}, - [1099] = {.lex_state = 8}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 15, .external_lex_state = 6}, - [1102] = {.lex_state = 62}, - [1103] = {.lex_state = 62}, + [1098] = {.lex_state = 62, .external_lex_state = 6}, + [1099] = {.lex_state = 62}, + [1100] = {.lex_state = 16}, + [1101] = {.lex_state = 62}, + [1102] = {.lex_state = 62, .external_lex_state = 6}, + [1103] = {.lex_state = 15, .external_lex_state = 6}, [1104] = {.lex_state = 16}, - [1105] = {.lex_state = 62, .external_lex_state = 6}, - [1106] = {.lex_state = 16}, + [1105] = {.lex_state = 62}, + [1106] = {.lex_state = 62, .external_lex_state = 6}, [1107] = {.lex_state = 16}, - [1108] = {.lex_state = 16}, - [1109] = {.lex_state = 62, .external_lex_state = 6}, - [1110] = {.lex_state = 16}, + [1108] = {.lex_state = 62, .external_lex_state = 6}, + [1109] = {.lex_state = 8}, + [1110] = {.lex_state = 62, .external_lex_state = 6}, [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 62, .external_lex_state = 6}, - [1113] = {.lex_state = 62, .external_lex_state = 6}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 62}, - [1117] = {.lex_state = 8}, - [1118] = {.lex_state = 62, .external_lex_state = 6}, - [1119] = {.lex_state = 62}, - [1120] = {.lex_state = 16}, - [1121] = {.lex_state = 62, .external_lex_state = 6}, - [1122] = {.lex_state = 62, .external_lex_state = 6}, - [1123] = {.lex_state = 16}, - [1124] = {.lex_state = 62}, - [1125] = {.lex_state = 8}, + [1112] = {.lex_state = 16}, + [1113] = {.lex_state = 16}, + [1114] = {.lex_state = 8}, + [1115] = {.lex_state = 62}, + [1116] = {.lex_state = 0}, + [1117] = {.lex_state = 62}, + [1118] = {.lex_state = 0}, + [1119] = {.lex_state = 16}, + [1120] = {.lex_state = 0}, + [1121] = {.lex_state = 62}, + [1122] = {.lex_state = 62}, + [1123] = {.lex_state = 62}, + [1124] = {.lex_state = 62, .external_lex_state = 6}, + [1125] = {.lex_state = 62, .external_lex_state = 6}, [1126] = {.lex_state = 62}, [1127] = {.lex_state = 62}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 62}, - [1130] = {.lex_state = 62}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 16}, - [1134] = {.lex_state = 16}, - [1135] = {.lex_state = 16}, - [1136] = {.lex_state = 16}, - [1137] = {.lex_state = 0, .external_lex_state = 6}, + [1128] = {.lex_state = 62, .external_lex_state = 6}, + [1129] = {.lex_state = 8}, + [1130] = {.lex_state = 16}, + [1131] = {.lex_state = 16}, + [1132] = {.lex_state = 62}, + [1133] = {.lex_state = 62}, + [1134] = {.lex_state = 0, .external_lex_state = 6}, + [1135] = {.lex_state = 0, .external_lex_state = 6}, + [1136] = {.lex_state = 0, .external_lex_state = 6}, + [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0, .external_lex_state = 6}, [1139] = {.lex_state = 16}, - [1140] = {.lex_state = 16}, + [1140] = {.lex_state = 0, .external_lex_state = 6}, [1141] = {.lex_state = 16}, - [1142] = {.lex_state = 62}, - [1143] = {.lex_state = 0, .external_lex_state = 6}, - [1144] = {.lex_state = 15}, - [1145] = {.lex_state = 16}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 62}, - [1148] = {.lex_state = 16}, - [1149] = {.lex_state = 62}, - [1150] = {.lex_state = 0, .external_lex_state = 6}, + [1142] = {.lex_state = 16}, + [1143] = {.lex_state = 62}, + [1144] = {.lex_state = 62}, + [1145] = {.lex_state = 0}, + [1146] = {.lex_state = 0, .external_lex_state = 6}, + [1147] = {.lex_state = 16}, + [1148] = {.lex_state = 0, .external_lex_state = 6}, + [1149] = {.lex_state = 0, .external_lex_state = 6}, + [1150] = {.lex_state = 16}, [1151] = {.lex_state = 16}, [1152] = {.lex_state = 62}, - [1153] = {.lex_state = 16}, - [1154] = {.lex_state = 0, .external_lex_state = 6}, - [1155] = {.lex_state = 0, .external_lex_state = 6}, - [1156] = {.lex_state = 62, .external_lex_state = 6}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 16}, + [1155] = {.lex_state = 16}, + [1156] = {.lex_state = 0, .external_lex_state = 6}, [1157] = {.lex_state = 16}, - [1158] = {.lex_state = 16}, + [1158] = {.lex_state = 62}, [1159] = {.lex_state = 16}, - [1160] = {.lex_state = 0, .external_lex_state = 6}, - [1161] = {.lex_state = 62}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0, .external_lex_state = 6}, [1162] = {.lex_state = 0, .external_lex_state = 6}, - [1163] = {.lex_state = 0, .external_lex_state = 6}, - [1164] = {.lex_state = 0, .external_lex_state = 6}, - [1165] = {.lex_state = 15}, - [1166] = {.lex_state = 0}, + [1163] = {.lex_state = 16}, + [1164] = {.lex_state = 62}, + [1165] = {.lex_state = 0, .external_lex_state = 6}, + [1166] = {.lex_state = 16}, [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 16, .external_lex_state = 2}, + [1168] = {.lex_state = 16}, [1169] = {.lex_state = 62}, - [1170] = {.lex_state = 0}, + [1170] = {.lex_state = 62}, [1171] = {.lex_state = 0, .external_lex_state = 6}, [1172] = {.lex_state = 0, .external_lex_state = 6}, - [1173] = {.lex_state = 16}, - [1174] = {.lex_state = 0, .external_lex_state = 6}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 16}, - [1178] = {.lex_state = 16}, - [1179] = {.lex_state = 62}, - [1180] = {.lex_state = 62}, - [1181] = {.lex_state = 16}, - [1182] = {.lex_state = 62}, - [1183] = {.lex_state = 62, .external_lex_state = 6}, - [1184] = {.lex_state = 62}, - [1185] = {.lex_state = 62}, - [1186] = {.lex_state = 62}, - [1187] = {.lex_state = 62, .external_lex_state = 6}, - [1188] = {.lex_state = 62}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 62}, + [1175] = {.lex_state = 0, .external_lex_state = 6}, + [1176] = {.lex_state = 62}, + [1177] = {.lex_state = 62}, + [1178] = {.lex_state = 0, .external_lex_state = 6}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 62, .external_lex_state = 6}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 16, .external_lex_state = 2}, + [1183] = {.lex_state = 62}, + [1184] = {.lex_state = 0, .external_lex_state = 6}, + [1185] = {.lex_state = 0, .external_lex_state = 6}, + [1186] = {.lex_state = 15}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 0, .external_lex_state = 6}, [1189] = {.lex_state = 0, .external_lex_state = 6}, - [1190] = {.lex_state = 16}, - [1191] = {.lex_state = 0, .external_lex_state = 6}, - [1192] = {.lex_state = 0, .external_lex_state = 6}, - [1193] = {.lex_state = 62}, + [1190] = {.lex_state = 62, .external_lex_state = 6}, + [1191] = {.lex_state = 16}, + [1192] = {.lex_state = 16}, + [1193] = {.lex_state = 0, .external_lex_state = 6}, [1194] = {.lex_state = 0, .external_lex_state = 6}, - [1195] = {.lex_state = 62}, + [1195] = {.lex_state = 0, .external_lex_state = 6}, [1196] = {.lex_state = 0}, [1197] = {.lex_state = 62}, [1198] = {.lex_state = 0, .external_lex_state = 6}, [1199] = {.lex_state = 62}, - [1200] = {.lex_state = 0, .external_lex_state = 6}, - [1201] = {.lex_state = 16}, - [1202] = {.lex_state = 0}, + [1200] = {.lex_state = 62}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 0, .external_lex_state = 6}, [1203] = {.lex_state = 0}, [1204] = {.lex_state = 16}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 16}, - [1208] = {.lex_state = 0}, + [1205] = {.lex_state = 15}, + [1206] = {.lex_state = 16}, + [1207] = {.lex_state = 0, .external_lex_state = 6}, + [1208] = {.lex_state = 0, .external_lex_state = 6}, [1209] = {.lex_state = 0, .external_lex_state = 6}, - [1210] = {.lex_state = 16}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0, .external_lex_state = 6}, - [1215] = {.lex_state = 62}, + [1210] = {.lex_state = 0, .external_lex_state = 6}, + [1211] = {.lex_state = 0, .external_lex_state = 6}, + [1212] = {.lex_state = 62, .external_lex_state = 6}, + [1213] = {.lex_state = 0, .external_lex_state = 6}, + [1214] = {.lex_state = 16}, + [1215] = {.lex_state = 16}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0}, + [1217] = {.lex_state = 0, .external_lex_state = 6}, [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 16}, - [1222] = {.lex_state = 8}, - [1223] = {.lex_state = 0, .external_lex_state = 6}, - [1224] = {.lex_state = 16}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0, .external_lex_state = 6}, - [1227] = {.lex_state = 0}, + [1221] = {.lex_state = 62}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 62}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 8}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 62}, [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0, .external_lex_state = 6}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 16}, + [1233] = {.lex_state = 62}, + [1234] = {.lex_state = 16}, [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 62}, - [1237] = {.lex_state = 0, .external_lex_state = 6}, - [1238] = {.lex_state = 0, .external_lex_state = 6}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 16}, + [1238] = {.lex_state = 62}, [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0, .external_lex_state = 6}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0, .external_lex_state = 6}, - [1245] = {.lex_state = 62}, - [1246] = {.lex_state = 0, .external_lex_state = 6}, + [1240] = {.lex_state = 0, .external_lex_state = 6}, + [1241] = {.lex_state = 16}, + [1242] = {.lex_state = 62, .external_lex_state = 6}, + [1243] = {.lex_state = 0, .external_lex_state = 6}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 62, .external_lex_state = 6}, + [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0, .external_lex_state = 6}, + [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 16}, + [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 8}, - [1254] = {.lex_state = 0, .external_lex_state = 6}, - [1255] = {.lex_state = 0}, + [1253] = {.lex_state = 62, .external_lex_state = 6}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 16}, [1256] = {.lex_state = 0}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 0}, [1259] = {.lex_state = 62}, - [1260] = {.lex_state = 16}, - [1261] = {.lex_state = 0, .external_lex_state = 6}, - [1262] = {.lex_state = 15}, - [1263] = {.lex_state = 0, .external_lex_state = 6}, + [1260] = {.lex_state = 62}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 62}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 16}, + [1266] = {.lex_state = 0}, [1267] = {.lex_state = 16}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 8}, + [1268] = {.lex_state = 62}, + [1269] = {.lex_state = 0}, [1270] = {.lex_state = 16}, - [1271] = {.lex_state = 0}, + [1271] = {.lex_state = 62}, [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 62}, + [1276] = {.lex_state = 16}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 16}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 16}, + [1281] = {.lex_state = 0}, [1282] = {.lex_state = 0}, [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 16}, + [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 16}, - [1287] = {.lex_state = 16}, - [1288] = {.lex_state = 62, .external_lex_state = 6}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 62, .external_lex_state = 6}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 62}, + [1291] = {.lex_state = 16}, + [1292] = {.lex_state = 16}, + [1293] = {.lex_state = 0}, [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 16}, + [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, + [1297] = {.lex_state = 16}, + [1298] = {.lex_state = 16}, [1299] = {.lex_state = 0}, [1300] = {.lex_state = 0}, [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, + [1302] = {.lex_state = 0, .external_lex_state = 6}, + [1303] = {.lex_state = 62}, + [1304] = {.lex_state = 8}, [1305] = {.lex_state = 62}, - [1306] = {.lex_state = 62}, - [1307] = {.lex_state = 8}, + [1306] = {.lex_state = 62, .external_lex_state = 6}, + [1307] = {.lex_state = 0}, [1308] = {.lex_state = 16}, - [1309] = {.lex_state = 0, .external_lex_state = 6}, - [1310] = {.lex_state = 0}, + [1309] = {.lex_state = 16}, + [1310] = {.lex_state = 16}, [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 62}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 62}, - [1315] = {.lex_state = 16}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 62}, - [1318] = {.lex_state = 62, .external_lex_state = 6}, - [1319] = {.lex_state = 0, .external_lex_state = 6}, - [1320] = {.lex_state = 16}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 8}, + [1319] = {.lex_state = 16}, + [1320] = {.lex_state = 0}, [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 16}, + [1322] = {.lex_state = 62}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, + [1325] = {.lex_state = 62}, [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 62}, + [1329] = {.lex_state = 0}, [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 8}, - [1333] = {.lex_state = 16}, - [1334] = {.lex_state = 16}, - [1335] = {.lex_state = 62, .external_lex_state = 6}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 62}, + [1331] = {.lex_state = 62}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 15}, + [1334] = {.lex_state = 62}, + [1335] = {.lex_state = 0}, + [1336] = {.lex_state = 16}, + [1337] = {.lex_state = 8}, + [1338] = {.lex_state = 16}, [1339] = {.lex_state = 16}, - [1340] = {.lex_state = 16}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 0, .external_lex_state = 6}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 17}, - [1345] = {.lex_state = 0, .external_lex_state = 6}, - [1346] = {.lex_state = 0, .external_lex_state = 6}, - [1347] = {.lex_state = 16}, + [1340] = {.lex_state = 0}, + [1341] = {.lex_state = 8}, + [1342] = {.lex_state = 16}, + [1343] = {.lex_state = 16}, + [1344] = {.lex_state = 16}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 17}, + [1347] = {.lex_state = 0}, [1348] = {.lex_state = 0, .external_lex_state = 6}, - [1349] = {.lex_state = 0, .external_lex_state = 6}, - [1350] = {.lex_state = 0, .external_lex_state = 6}, - [1351] = {.lex_state = 0, .external_lex_state = 6}, + [1349] = {.lex_state = 16}, + [1350] = {.lex_state = 17}, + [1351] = {.lex_state = 17}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 62}, + [1353] = {.lex_state = 0}, [1354] = {.lex_state = 0}, [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 62}, - [1358] = {.lex_state = 0}, + [1356] = {.lex_state = 17}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 0, .external_lex_state = 6}, [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0, .external_lex_state = 6}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 17}, + [1361] = {.lex_state = 17}, + [1362] = {.lex_state = 0, .external_lex_state = 6}, + [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 15}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0, .external_lex_state = 6}, - [1370] = {.lex_state = 0}, + [1368] = {.lex_state = 17}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 17}, [1371] = {.lex_state = 17}, [1372] = {.lex_state = 17}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 17}, - [1375] = {.lex_state = 17}, - [1376] = {.lex_state = 17}, - [1377] = {.lex_state = 17}, - [1378] = {.lex_state = 17}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 0, .external_lex_state = 6}, + [1376] = {.lex_state = 0, .external_lex_state = 6}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 17}, + [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, [1383] = {.lex_state = 0, .external_lex_state = 6}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0, .external_lex_state = 6}, - [1386] = {.lex_state = 0, .external_lex_state = 6}, + [1384] = {.lex_state = 17}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0, .external_lex_state = 6}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0, .external_lex_state = 6}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 0, .external_lex_state = 6}, + [1391] = {.lex_state = 62}, [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0, .external_lex_state = 6}, + [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0, .external_lex_state = 6}, - [1395] = {.lex_state = 0, .external_lex_state = 6}, - [1396] = {.lex_state = 0}, + [1395] = {.lex_state = 62}, + [1396] = {.lex_state = 0, .external_lex_state = 6}, [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 0}, + [1398] = {.lex_state = 0, .external_lex_state = 6}, + [1399] = {.lex_state = 0, .external_lex_state = 6}, [1400] = {.lex_state = 0, .external_lex_state = 6}, - [1401] = {.lex_state = 0}, + [1401] = {.lex_state = 15}, [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, + [1404] = {.lex_state = 0, .external_lex_state = 6}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 0}, + [1406] = {.lex_state = 0, .external_lex_state = 6}, [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 62}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 0}, + [1408] = {.lex_state = 0, .external_lex_state = 6}, + [1409] = {.lex_state = 0, .external_lex_state = 6}, + [1410] = {.lex_state = 0, .external_lex_state = 6}, + [1411] = {.lex_state = 0, .external_lex_state = 6}, [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 16}, - [1414] = {.lex_state = 0}, + [1413] = {.lex_state = 62}, + [1414] = {.lex_state = 16}, [1415] = {.lex_state = 0}, [1416] = {.lex_state = 62}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 62}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 62}, - [1422] = {.lex_state = 16}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 16}, + [1421] = {.lex_state = 0}, + [1422] = {.lex_state = 62}, [1423] = {.lex_state = 16}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 0}, + [1424] = {.lex_state = 62}, + [1425] = {.lex_state = 16}, [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 16}, - [1428] = {.lex_state = 16}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 62}, - [1431] = {.lex_state = 0}, + [1430] = {.lex_state = 16}, + [1431] = {.lex_state = 16}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 0}, + [1433] = {.lex_state = 62}, + [1434] = {.lex_state = 16}, [1435] = {.lex_state = 16}, - [1436] = {.lex_state = 62}, + [1436] = {.lex_state = 16}, [1437] = {.lex_state = 0}, [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 62}, - [1441] = {.lex_state = 62}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 62}, - [1444] = {.lex_state = 62}, - [1445] = {.lex_state = 62}, - [1446] = {.lex_state = 62}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 16}, + [1442] = {.lex_state = 16}, + [1443] = {.lex_state = 16}, + [1444] = {.lex_state = 16}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, [1447] = {.lex_state = 0}, [1448] = {.lex_state = 62}, [1449] = {.lex_state = 62}, - [1450] = {.lex_state = 62}, - [1451] = {.lex_state = 16}, - [1452] = {.lex_state = 16}, - [1453] = {.lex_state = 16}, - [1454] = {.lex_state = 62}, - [1455] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 62}, + [1452] = {.lex_state = 62}, + [1453] = {.lex_state = 62}, + [1454] = {.lex_state = 16}, + [1455] = {.lex_state = 16}, [1456] = {.lex_state = 62}, [1457] = {.lex_state = 62}, [1458] = {.lex_state = 16}, [1459] = {.lex_state = 16}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 16}, + [1460] = {.lex_state = 16}, + [1461] = {.lex_state = 62}, + [1462] = {.lex_state = 62}, + [1463] = {.lex_state = 0}, [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 16}, - [1466] = {.lex_state = 62}, + [1465] = {.lex_state = 62}, + [1466] = {.lex_state = 16}, [1467] = {.lex_state = 0}, - [1468] = {.lex_state = 16}, + [1468] = {.lex_state = 62}, [1469] = {.lex_state = 0}, [1470] = {.lex_state = 16}, - [1471] = {.lex_state = 16}, + [1471] = {.lex_state = 0}, [1472] = {.lex_state = 16}, - [1473] = {.lex_state = 0}, + [1473] = {.lex_state = 16}, [1474] = {.lex_state = 16}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 16}, - [1477] = {.lex_state = 62}, + [1475] = {.lex_state = 16}, + [1476] = {.lex_state = 62}, + [1477] = {.lex_state = 16}, [1478] = {.lex_state = 16}, - [1479] = {.lex_state = 0}, + [1479] = {.lex_state = 16}, [1480] = {.lex_state = 16}, - [1481] = {.lex_state = 16}, - [1482] = {.lex_state = 16}, - [1483] = {.lex_state = 16}, + [1481] = {.lex_state = 62}, + [1482] = {.lex_state = 62}, + [1483] = {.lex_state = 0}, [1484] = {.lex_state = 0}, [1485] = {.lex_state = 16}, - [1486] = {.lex_state = 16}, + [1486] = {.lex_state = 0}, [1487] = {.lex_state = 16}, - [1488] = {.lex_state = 62}, + [1488] = {.lex_state = 16}, [1489] = {.lex_state = 16}, - [1490] = {.lex_state = 62}, - [1491] = {.lex_state = 16}, + [1490] = {.lex_state = 16}, + [1491] = {.lex_state = 0}, [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 16}, + [1493] = {.lex_state = 0}, [1494] = {.lex_state = 62}, [1495] = {.lex_state = 16}, - [1496] = {.lex_state = 0}, + [1496] = {.lex_state = 16}, [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 62}, - [1499] = {.lex_state = 16}, - [1500] = {.lex_state = 62}, - [1501] = {.lex_state = 16}, - [1502] = {.lex_state = 0}, + [1498] = {.lex_state = 16}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 16}, + [1501] = {.lex_state = 62}, + [1502] = {.lex_state = 16}, [1503] = {.lex_state = 0}, [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 16}, - [1506] = {.lex_state = 16}, - [1507] = {.lex_state = 16}, - [1508] = {.lex_state = 62}, - [1509] = {.lex_state = 62}, + [1505] = {.lex_state = 62}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, [1510] = {.lex_state = 62}, - [1511] = {.lex_state = 62}, - [1512] = {.lex_state = 16}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 62}, [1513] = {.lex_state = 0}, [1514] = {.lex_state = 62}, - [1515] = {.lex_state = 0}, + [1515] = {.lex_state = 62}, [1516] = {.lex_state = 62}, [1517] = {.lex_state = 62}, - [1518] = {.lex_state = 16}, - [1519] = {.lex_state = 62}, + [1518] = {.lex_state = 62}, + [1519] = {.lex_state = 16}, [1520] = {.lex_state = 62}, [1521] = {.lex_state = 16}, - [1522] = {.lex_state = 62}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 16}, -}; - -enum { - ts_external_token__newline = 0, - ts_external_token__indent = 1, - ts_external_token__dedent = 2, - ts_external_token__string_start = 3, - ts_external_token__string_content = 4, - ts_external_token__string_end = 5, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__newline] = sym__newline, - [ts_external_token__indent] = sym__indent, - [ts_external_token__dedent] = sym__dedent, - [ts_external_token__string_start] = sym__string_start, - [ts_external_token__string_content] = sym__string_content, - [ts_external_token__string_end] = sym__string_end, -}; - -static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__newline] = true, - [ts_external_token__indent] = true, - [ts_external_token__dedent] = true, - [ts_external_token__string_start] = true, - [ts_external_token__string_content] = true, - [ts_external_token__string_end] = true, - }, - [2] = { - [ts_external_token__string_start] = true, - }, - [3] = { - [ts_external_token__dedent] = true, - [ts_external_token__string_start] = true, - }, - [4] = { - [ts_external_token__newline] = true, - [ts_external_token__string_start] = true, - }, - [5] = { - [ts_external_token__newline] = true, - [ts_external_token__indent] = true, - [ts_external_token__string_start] = true, - }, - [6] = { - [ts_external_token__newline] = true, - }, - [7] = { - [ts_external_token__string_content] = true, - [ts_external_token__string_end] = true, - }, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 62}, + [1524] = {.lex_state = 62}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 62}, + [1527] = {.lex_state = 62}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 62}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -10369,7 +7914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1), [sym_none] = ACTIONS(1), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), [sym__newline] = ACTIONS(1), [sym__indent] = ACTIONS(1), [sym__dedent] = ACTIONS(1), @@ -10378,73 +7923,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1502), - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), + [sym_module] = STATE(1511), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1002), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1002), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(981), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(981), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -10493,73 +8038,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [2] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(996), - [sym_block] = STATE(357), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(594), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10608,73 +8153,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [3] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(587), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(967), + [sym_block] = STATE(1001), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10723,73 +8268,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [4] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(540), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(506), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10834,77 +8379,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [5] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(534), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(508), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10949,77 +8494,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [6] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(996), - [sym_block] = STATE(373), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(497), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11064,77 +8609,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [7] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(403), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(516), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11179,77 +8724,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [8] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(509), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(967), + [sym_block] = STATE(379), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11294,77 +8839,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), }, [9] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(996), - [sym_block] = STATE(372), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(527), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11413,73 +8958,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [10] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(546), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(967), + [sym_block] = STATE(378), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11524,77 +9069,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(109), [sym__string_start] = ACTIONS(81), }, [11] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(279), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(588), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11639,77 +9184,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [12] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(491), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(967), + [sym_block] = STATE(370), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11754,77 +9299,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(111), [sym__string_start] = ACTIONS(81), }, [13] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(495), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(967), + [sym_block] = STATE(369), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11869,77 +9414,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(113), [sym__string_start] = ACTIONS(81), }, [14] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(506), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(538), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11984,77 +9529,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [15] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(505), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(415), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12099,77 +9644,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [16] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(408), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(489), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12214,77 +9759,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [17] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(536), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(549), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12329,77 +9874,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [18] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(488), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(554), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12444,77 +9989,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [19] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(556), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(498), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12559,77 +10104,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [20] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(528), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(967), + [sym_block] = STATE(359), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12674,77 +10219,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(113), [sym__string_start] = ACTIONS(81), }, [21] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(414), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(571), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12789,77 +10334,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [22] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(996), - [sym_block] = STATE(366), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(436), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12904,77 +10449,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [23] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(996), - [sym_block] = STATE(363), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(570), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13023,73 +10568,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [24] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(512), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(581), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13134,77 +10679,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [25] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(996), - [sym_block] = STATE(320), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(583), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13249,77 +10794,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [26] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), [sym_block] = STATE(590), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13364,77 +10909,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [27] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(494), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(553), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13479,77 +11024,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [28] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(557), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(551), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13594,77 +11139,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [29] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(549), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(514), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13709,77 +11254,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [30] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(586), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(547), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13824,77 +11369,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [31] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(996), - [sym_block] = STATE(328), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(421), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13939,25 +11484,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [32] = { [sym__statement] = STATE(66), [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), [sym_if_statement] = STATE(66), [sym_for_statement] = STATE(66), [sym_while_statement] = STATE(66), @@ -13965,51 +11510,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(66), [sym_match_statement] = STATE(66), [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), [sym_class_definition] = STATE(66), [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(996), - [sym_block] = STATE(329), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_decorator] = STATE(967), + [sym_block] = STATE(281), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14054,25 +11599,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [33] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -14080,51 +11625,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(583), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_decorator] = STATE(967), + [sym_block] = STATE(382), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14169,77 +11714,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(111), [sym__string_start] = ACTIONS(81), }, [34] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(418), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(272), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14284,77 +11829,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [35] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(489), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(454), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14399,77 +11944,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [36] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(498), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(398), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14514,77 +12059,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [37] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(555), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(967), + [sym_block] = STATE(377), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14629,77 +12174,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(113), [sym__string_start] = ACTIONS(81), }, [38] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(565), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(967), + [sym_block] = STATE(494), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14744,77 +12289,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [39] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(428), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(558), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14859,77 +12404,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [40] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(515), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(536), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14974,77 +12519,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [41] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(574), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(493), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15089,77 +12634,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [42] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(996), - [sym_block] = STATE(318), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(512), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15204,77 +12749,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [43] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(513), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(534), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15319,77 +12864,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [44] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(533), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(528), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15434,77 +12979,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [45] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(573), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(519), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15549,77 +13094,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [46] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), [sym_block] = STATE(427), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15664,77 +13209,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [47] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(387), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(967), + [sym_block] = STATE(355), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15779,77 +13324,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(109), [sym__string_start] = ACTIONS(81), }, [48] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(496), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(502), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15894,77 +13439,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [49] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(566), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(523), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16009,77 +13554,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [50] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(996), - [sym_block] = STATE(333), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(540), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16124,77 +13669,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [51] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(407), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(463), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16239,77 +13784,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [52] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(579), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(486), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16354,77 +13899,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [53] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(581), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(478), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16469,77 +14014,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [54] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(996), - [sym_block] = STATE(1003), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(557), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16584,140 +14129,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [55] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(996), - [sym_block] = STATE(983), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(996), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__dedent] = ACTIONS(113), - [sym__string_start] = ACTIONS(81), - }, - [56] = { [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), [sym_if_statement] = STATE(68), [sym_for_statement] = STATE(68), [sym_while_statement] = STATE(68), @@ -16725,51 +14155,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(265), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_decorator] = STATE(967), + [sym_block] = STATE(366), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16814,77 +14244,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(109), [sym__string_start] = ACTIONS(81), }, - [57] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(996), - [sym_block] = STATE(561), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [56] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(967), + [sym_block] = STATE(368), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16932,74 +14362,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), }, - [58] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(517), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [57] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(967), + [sym_block] = STATE(1002), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17047,74 +14477,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, - [59] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(996), - [sym_block] = STATE(554), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [58] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(487), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17159,76 +14589,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [60] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(996), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [59] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(967), + [sym_block] = STATE(566), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17273,76 +14704,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [61] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(996), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [60] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(981), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(981), + [ts_builtin_sym_end] = ACTIONS(115), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17356,24 +14788,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(33), + [anon_sym_async] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_with] = ACTIONS(43), + [anon_sym_match] = ACTIONS(45), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(55), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(65), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -17387,76 +14819,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(117), [sym__string_start] = ACTIONS(81), }, - [62] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(996), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [61] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(967), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17501,76 +14932,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(119), + [sym__dedent] = ACTIONS(117), [sym__string_start] = ACTIONS(81), }, - [63] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(996), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [62] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(981), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(981), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(121), [anon_sym_import] = ACTIONS(124), [anon_sym_from] = ACTIONS(127), @@ -17615,190 +15047,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(226), [sym_none] = ACTIONS(226), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(232), - [sym__string_start] = ACTIONS(234), - }, - [64] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1002), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_with] = ACTIONS(43), - [anon_sym_match] = ACTIONS(45), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(55), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(232), }, - [65] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(996), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [63] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(967), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17843,76 +15160,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(239), + [sym__dedent] = ACTIONS(235), [sym__string_start] = ACTIONS(81), }, - [66] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(996), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [64] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(967), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17957,77 +15274,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(241), + [sym__dedent] = ACTIONS(237), [sym__string_start] = ACTIONS(81), }, - [67] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_if_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1002), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(232), + [65] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(967), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(121), [anon_sym_import] = ACTIONS(124), [anon_sym_from] = ACTIONS(127), @@ -18041,24 +15357,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(151), [anon_sym_break] = ACTIONS(154), [anon_sym_continue] = ACTIONS(157), - [anon_sym_if] = ACTIONS(243), - [anon_sym_async] = ACTIONS(246), - [anon_sym_for] = ACTIONS(249), - [anon_sym_while] = ACTIONS(252), - [anon_sym_try] = ACTIONS(255), - [anon_sym_with] = ACTIONS(258), - [anon_sym_match] = ACTIONS(261), + [anon_sym_if] = 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_match] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(181), [anon_sym_PLUS] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(184), [anon_sym_LBRACE] = ACTIONS(187), [anon_sym_STAR_STAR] = ACTIONS(190), - [anon_sym_def] = ACTIONS(264), + [anon_sym_def] = ACTIONS(260), [anon_sym_global] = ACTIONS(196), [anon_sym_nonlocal] = ACTIONS(199), [anon_sym_exec] = ACTIONS(202), [anon_sym_type] = ACTIONS(205), - [anon_sym_class] = ACTIONS(267), + [anon_sym_class] = ACTIONS(263), [anon_sym_AT] = ACTIONS(211), [anon_sym_not] = ACTIONS(214), [anon_sym_TILDE] = ACTIONS(181), @@ -18072,75 +15388,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(226), [sym_none] = ACTIONS(226), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(234), + [sym__dedent] = ACTIONS(119), + [sym__string_start] = ACTIONS(232), }, - [68] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(996), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [66] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(967), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18185,76 +15502,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(270), + [sym__dedent] = ACTIONS(266), [sym__string_start] = ACTIONS(81), }, - [69] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(996), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(996), + [67] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(967), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(268), + [sym__string_start] = ACTIONS(81), + }, + [68] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(967), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(967), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__dedent] = ACTIONS(270), + [sym__string_start] = ACTIONS(81), + }, + [69] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(967), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(967), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18303,34 +15848,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [70] = { - [sym_named_expression] = STATE(900), - [sym_list_splat] = STATE(1366), - [sym_dictionary_splat] = STATE(1366), - [sym_expression_list] = STATE(1452), - [sym_expression] = STATE(1079), + [sym_named_expression] = STATE(905), + [sym_list_splat] = STATE(1373), + [sym_dictionary_splat] = STATE(1373), + [sym_expression_list] = STATE(1459), + [sym_expression] = STATE(1058), [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(900), - [sym_boolean_operator] = STATE(900), - [sym_binary_operator] = STATE(642), - [sym_unary_operator] = STATE(642), - [sym_comparison_operator] = STATE(900), - [sym_lambda] = STATE(900), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(642), - [sym_list] = STATE(642), - [sym_set] = STATE(642), - [sym_tuple] = STATE(642), - [sym_dictionary] = STATE(642), - [sym_list_comprehension] = STATE(642), - [sym_dictionary_comprehension] = STATE(642), - [sym_set_comprehension] = STATE(642), - [sym_generator_expression] = STATE(642), - [sym_parenthesized_expression] = STATE(642), - [sym_conditional_expression] = STATE(900), - [sym_concatenated_string] = STATE(642), - [sym_string] = STATE(600), - [sym_await] = STATE(900), + [sym_not_operator] = STATE(905), + [sym_boolean_operator] = STATE(905), + [sym_binary_operator] = STATE(622), + [sym_unary_operator] = STATE(622), + [sym_comparison_operator] = STATE(905), + [sym_lambda] = STATE(905), + [sym_attribute] = STATE(622), + [sym_subscript] = STATE(622), + [sym_call] = STATE(622), + [sym_list] = STATE(622), + [sym_set] = STATE(622), + [sym_tuple] = STATE(622), + [sym_dictionary] = STATE(622), + [sym_list_comprehension] = STATE(622), + [sym_dictionary_comprehension] = STATE(622), + [sym_set_comprehension] = STATE(622), + [sym_generator_expression] = STATE(622), + [sym_parenthesized_expression] = STATE(622), + [sym_conditional_expression] = STATE(905), + [sym_concatenated_string] = STATE(622), + [sym_string] = STATE(607), + [sym_await] = STATE(905), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -18394,39 +15939,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(303), [sym__newline] = ACTIONS(303), [sym__string_start] = ACTIONS(315), }, [71] = { - [sym_named_expression] = STATE(900), - [sym_list_splat] = STATE(1366), - [sym_dictionary_splat] = STATE(1366), - [sym_expression_list] = STATE(1493), - [sym_expression] = STATE(1080), + [sym_named_expression] = STATE(905), + [sym_list_splat] = STATE(1373), + [sym_dictionary_splat] = STATE(1373), + [sym_expression_list] = STATE(1423), + [sym_expression] = STATE(1092), [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(900), - [sym_boolean_operator] = STATE(900), - [sym_binary_operator] = STATE(642), - [sym_unary_operator] = STATE(642), - [sym_comparison_operator] = STATE(900), - [sym_lambda] = STATE(900), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(642), - [sym_list] = STATE(642), - [sym_set] = STATE(642), - [sym_tuple] = STATE(642), - [sym_dictionary] = STATE(642), - [sym_list_comprehension] = STATE(642), - [sym_dictionary_comprehension] = STATE(642), - [sym_set_comprehension] = STATE(642), - [sym_generator_expression] = STATE(642), - [sym_parenthesized_expression] = STATE(642), - [sym_conditional_expression] = STATE(900), - [sym_concatenated_string] = STATE(642), - [sym_string] = STATE(600), - [sym_await] = STATE(900), + [sym_not_operator] = STATE(905), + [sym_boolean_operator] = STATE(905), + [sym_binary_operator] = STATE(622), + [sym_unary_operator] = STATE(622), + [sym_comparison_operator] = STATE(905), + [sym_lambda] = STATE(905), + [sym_attribute] = STATE(622), + [sym_subscript] = STATE(622), + [sym_call] = STATE(622), + [sym_list] = STATE(622), + [sym_set] = STATE(622), + [sym_tuple] = STATE(622), + [sym_dictionary] = STATE(622), + [sym_list_comprehension] = STATE(622), + [sym_dictionary_comprehension] = STATE(622), + [sym_set_comprehension] = STATE(622), + [sym_generator_expression] = STATE(622), + [sym_parenthesized_expression] = STATE(622), + [sym_conditional_expression] = STATE(905), + [sym_concatenated_string] = STATE(622), + [sym_string] = STATE(607), + [sym_await] = STATE(905), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -18490,64 +16035,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(311), [sym_none] = ACTIONS(311), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(303), [sym__newline] = ACTIONS(303), [sym__string_start] = ACTIONS(315), }, [72] = { - [sym__simple_statements] = STATE(550), + [sym__simple_statements] = STATE(569), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18589,59 +16134,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [73] = { - [sym__simple_statements] = STATE(432), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(490), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18683,59 +16228,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [74] = { - [sym__simple_statements] = STATE(327), - [sym_import_statement] = STATE(1248), - [sym_future_import_statement] = STATE(1248), - [sym_import_from_statement] = STATE(1248), - [sym_print_statement] = STATE(1248), - [sym_assert_statement] = STATE(1248), - [sym_expression_statement] = STATE(1248), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1248), - [sym_delete_statement] = STATE(1248), - [sym_raise_statement] = STATE(1248), - [sym_pass_statement] = STATE(1248), - [sym_break_statement] = STATE(1248), - [sym_continue_statement] = STATE(1248), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1248), - [sym_nonlocal_statement] = STATE(1248), - [sym_exec_statement] = STATE(1248), - [sym_type_alias_statement] = STATE(1248), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(461), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18777,153 +16322,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [75] = { - [sym_chevron] = STATE(1150), - [sym_named_expression] = STATE(1009), - [sym_expression] = STATE(1043), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_attribute] = STATE(797), - [sym_subscript] = STATE(797), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [sym_identifier] = ACTIONS(331), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(280), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_COLON_EQ] = ACTIONS(287), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(289), - [anon_sym_async] = ACTIONS(333), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(333), - [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(276), - [anon_sym_PLUS] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_exec] = ACTIONS(333), - [anon_sym_type] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_not] = ACTIONS(276), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(276), - [anon_sym_CARET] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(307), - [anon_sym_DASH_EQ] = ACTIONS(307), - [anon_sym_STAR_EQ] = ACTIONS(307), - [anon_sym_SLASH_EQ] = ACTIONS(307), - [anon_sym_AT_EQ] = ACTIONS(307), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(307), - [anon_sym_PERCENT_EQ] = ACTIONS(307), - [anon_sym_STAR_STAR_EQ] = ACTIONS(307), - [anon_sym_GT_GT_EQ] = ACTIONS(307), - [anon_sym_LT_LT_EQ] = ACTIONS(307), - [anon_sym_AMP_EQ] = ACTIONS(307), - [anon_sym_CARET_EQ] = ACTIONS(307), - [anon_sym_PIPE_EQ] = ACTIONS(307), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(337), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(303), - [sym__newline] = ACTIONS(303), - [sym__string_start] = ACTIONS(81), - }, - [76] = { - [sym__simple_statements] = STATE(340), - [sym_import_statement] = STATE(1261), - [sym_future_import_statement] = STATE(1261), - [sym_import_from_statement] = STATE(1261), - [sym_print_statement] = STATE(1261), - [sym_assert_statement] = STATE(1261), - [sym_expression_statement] = STATE(1261), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1261), - [sym_delete_statement] = STATE(1261), - [sym_raise_statement] = STATE(1261), - [sym_pass_statement] = STATE(1261), - [sym_break_statement] = STATE(1261), - [sym_continue_statement] = STATE(1261), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1261), - [sym_nonlocal_statement] = STATE(1261), - [sym_exec_statement] = STATE(1261), - [sym_type_alias_statement] = STATE(1261), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(505), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18960,64 +16411,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(339), - [sym__indent] = ACTIONS(341), + [sym__newline] = ACTIONS(331), + [sym__indent] = ACTIONS(333), [sym__string_start] = ACTIONS(81), }, - [77] = { - [sym__simple_statements] = STATE(530), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [76] = { + [sym__simple_statements] = STATE(533), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19054,64 +16505,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__indent] = ACTIONS(345), + [sym__newline] = ACTIONS(335), + [sym__indent] = ACTIONS(337), [sym__string_start] = ACTIONS(81), }, - [78] = { - [sym__simple_statements] = STATE(521), + [77] = { + [sym__simple_statements] = STATE(586), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19148,64 +16599,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(347), - [sym__indent] = ACTIONS(349), + [sym__newline] = ACTIONS(339), + [sym__indent] = ACTIONS(341), [sym__string_start] = ACTIONS(81), }, - [79] = { - [sym__simple_statements] = STATE(548), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [78] = { + [sym__simple_statements] = STATE(279), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19242,64 +16693,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(351), - [sym__indent] = ACTIONS(353), + [sym__newline] = ACTIONS(343), + [sym__indent] = ACTIONS(345), [sym__string_start] = ACTIONS(81), }, - [80] = { - [sym__simple_statements] = STATE(325), - [sym_import_statement] = STATE(1261), - [sym_future_import_statement] = STATE(1261), - [sym_import_from_statement] = STATE(1261), - [sym_print_statement] = STATE(1261), - [sym_assert_statement] = STATE(1261), - [sym_expression_statement] = STATE(1261), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1261), - [sym_delete_statement] = STATE(1261), - [sym_raise_statement] = STATE(1261), - [sym_pass_statement] = STATE(1261), - [sym_break_statement] = STATE(1261), - [sym_continue_statement] = STATE(1261), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1261), - [sym_nonlocal_statement] = STATE(1261), - [sym_exec_statement] = STATE(1261), - [sym_type_alias_statement] = STATE(1261), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [79] = { + [sym__simple_statements] = STATE(582), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19336,64 +16787,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), + [sym__newline] = ACTIONS(347), + [sym__indent] = ACTIONS(349), [sym__string_start] = ACTIONS(81), }, - [81] = { - [sym__simple_statements] = STATE(535), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [80] = { + [sym__simple_statements] = STATE(332), + [sym_import_statement] = STATE(1140), + [sym_future_import_statement] = STATE(1140), + [sym_import_from_statement] = STATE(1140), + [sym_print_statement] = STATE(1140), + [sym_assert_statement] = STATE(1140), + [sym_expression_statement] = STATE(1140), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1140), + [sym_delete_statement] = STATE(1140), + [sym_raise_statement] = STATE(1140), + [sym_pass_statement] = STATE(1140), + [sym_break_statement] = STATE(1140), + [sym_continue_statement] = STATE(1140), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1140), + [sym_nonlocal_statement] = STATE(1140), + [sym_exec_statement] = STATE(1140), + [sym_type_alias_statement] = STATE(1140), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19430,64 +16881,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__newline] = ACTIONS(351), + [sym__indent] = ACTIONS(353), [sym__string_start] = ACTIONS(81), }, - [82] = { - [sym__simple_statements] = STATE(508), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [81] = { + [sym__simple_statements] = STATE(374), + [sym_import_statement] = STATE(1149), + [sym_future_import_statement] = STATE(1149), + [sym_import_from_statement] = STATE(1149), + [sym_print_statement] = STATE(1149), + [sym_assert_statement] = STATE(1149), + [sym_expression_statement] = STATE(1149), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1149), + [sym_delete_statement] = STATE(1149), + [sym_raise_statement] = STATE(1149), + [sym_pass_statement] = STATE(1149), + [sym_break_statement] = STATE(1149), + [sym_continue_statement] = STATE(1149), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1149), + [sym_nonlocal_statement] = STATE(1149), + [sym_exec_statement] = STATE(1149), + [sym_type_alias_statement] = STATE(1149), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19524,64 +16975,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), + [sym__newline] = ACTIONS(355), + [sym__indent] = ACTIONS(357), [sym__string_start] = ACTIONS(81), }, - [83] = { - [sym__simple_statements] = STATE(377), - [sym_import_statement] = STATE(1244), - [sym_future_import_statement] = STATE(1244), - [sym_import_from_statement] = STATE(1244), - [sym_print_statement] = STATE(1244), - [sym_assert_statement] = STATE(1244), - [sym_expression_statement] = STATE(1244), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1244), - [sym_delete_statement] = STATE(1244), - [sym_raise_statement] = STATE(1244), - [sym_pass_statement] = STATE(1244), - [sym_break_statement] = STATE(1244), - [sym_continue_statement] = STATE(1244), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1244), - [sym_nonlocal_statement] = STATE(1244), - [sym_exec_statement] = STATE(1244), - [sym_type_alias_statement] = STATE(1244), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [82] = { + [sym__simple_statements] = STATE(499), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19618,64 +17069,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), + [sym__newline] = ACTIONS(359), + [sym__indent] = ACTIONS(361), [sym__string_start] = ACTIONS(81), }, - [84] = { - [sym__simple_statements] = STATE(524), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [83] = { + [sym__simple_statements] = STATE(564), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19712,64 +17163,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), + [sym__newline] = ACTIONS(363), + [sym__indent] = ACTIONS(365), [sym__string_start] = ACTIONS(81), }, - [85] = { - [sym__simple_statements] = STATE(316), - [sym_import_statement] = STATE(1238), - [sym_future_import_statement] = STATE(1238), - [sym_import_from_statement] = STATE(1238), - [sym_print_statement] = STATE(1238), - [sym_assert_statement] = STATE(1238), - [sym_expression_statement] = STATE(1238), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1238), - [sym_delete_statement] = STATE(1238), - [sym_raise_statement] = STATE(1238), - [sym_pass_statement] = STATE(1238), - [sym_break_statement] = STATE(1238), - [sym_continue_statement] = STATE(1238), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1238), - [sym_nonlocal_statement] = STATE(1238), - [sym_exec_statement] = STATE(1238), - [sym_type_alias_statement] = STATE(1238), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [84] = { + [sym__simple_statements] = STATE(589), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19806,64 +17257,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__newline] = ACTIONS(367), + [sym__indent] = ACTIONS(369), [sym__string_start] = ACTIONS(81), }, - [86] = { - [sym__simple_statements] = STATE(532), + [85] = { + [sym__simple_statements] = STATE(552), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19900,64 +17351,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), + [sym__newline] = ACTIONS(371), + [sym__indent] = ACTIONS(373), [sym__string_start] = ACTIONS(81), }, - [87] = { - [sym__simple_statements] = STATE(547), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [86] = { + [sym__simple_statements] = STATE(445), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19994,64 +17445,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), + [sym__string_start] = ACTIONS(81), + }, + [87] = { + [sym_chevron] = STATE(1184), + [sym_named_expression] = STATE(974), + [sym_expression] = STATE(1055), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_attribute] = STATE(795), + [sym_subscript] = STATE(795), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_COMMA] = ACTIONS(280), + [anon_sym_STAR] = ACTIONS(276), + [anon_sym_print] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(383), + [anon_sym_COLON_EQ] = ACTIONS(287), + [anon_sym_if] = ACTIONS(276), + [anon_sym_COLON] = ACTIONS(289), + [anon_sym_async] = ACTIONS(381), + [anon_sym_in] = ACTIONS(276), + [anon_sym_match] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(276), + [anon_sym_DASH] = ACTIONS(276), + [anon_sym_PLUS] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(276), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_exec] = ACTIONS(381), + [anon_sym_type] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_not] = ACTIONS(276), + [anon_sym_and] = ACTIONS(276), + [anon_sym_or] = ACTIONS(276), + [anon_sym_SLASH] = ACTIONS(276), + [anon_sym_PERCENT] = ACTIONS(276), + [anon_sym_SLASH_SLASH] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(276), + [anon_sym_CARET] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(303), + [anon_sym_EQ_EQ] = ACTIONS(303), + [anon_sym_BANG_EQ] = ACTIONS(303), + [anon_sym_GT_EQ] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_LT_GT] = ACTIONS(303), + [anon_sym_is] = ACTIONS(276), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(307), + [anon_sym_DASH_EQ] = ACTIONS(307), + [anon_sym_STAR_EQ] = ACTIONS(307), + [anon_sym_SLASH_EQ] = ACTIONS(307), + [anon_sym_AT_EQ] = ACTIONS(307), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(307), + [anon_sym_PERCENT_EQ] = ACTIONS(307), + [anon_sym_STAR_STAR_EQ] = ACTIONS(307), + [anon_sym_GT_GT_EQ] = ACTIONS(307), + [anon_sym_LT_LT_EQ] = ACTIONS(307), + [anon_sym_AMP_EQ] = ACTIONS(307), + [anon_sym_CARET_EQ] = ACTIONS(307), + [anon_sym_PIPE_EQ] = ACTIONS(307), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(385), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(303), + [sym__newline] = ACTIONS(303), [sym__string_start] = ACTIONS(81), }, [88] = { - [sym__simple_statements] = STATE(401), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(577), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20093,59 +17638,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [89] = { - [sym__simple_statements] = STATE(502), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(976), + [sym_import_statement] = STATE(1207), + [sym_future_import_statement] = STATE(1207), + [sym_import_from_statement] = STATE(1207), + [sym_print_statement] = STATE(1207), + [sym_assert_statement] = STATE(1207), + [sym_expression_statement] = STATE(1207), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1207), + [sym_delete_statement] = STATE(1207), + [sym_raise_statement] = STATE(1207), + [sym_pass_statement] = STATE(1207), + [sym_break_statement] = STATE(1207), + [sym_continue_statement] = STATE(1207), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1207), + [sym_nonlocal_statement] = STATE(1207), + [sym_exec_statement] = STATE(1207), + [sym_type_alias_statement] = STATE(1207), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20187,59 +17732,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [90] = { - [sym__simple_statements] = STATE(526), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(491), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20281,59 +17826,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [91] = { - [sym__simple_statements] = STATE(527), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(587), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20375,59 +17920,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [92] = { - [sym__simple_statements] = STATE(531), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(373), + [sym_import_statement] = STATE(1178), + [sym_future_import_statement] = STATE(1178), + [sym_import_from_statement] = STATE(1178), + [sym_print_statement] = STATE(1178), + [sym_assert_statement] = STATE(1178), + [sym_expression_statement] = STATE(1178), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1178), + [sym_delete_statement] = STATE(1178), + [sym_raise_statement] = STATE(1178), + [sym_pass_statement] = STATE(1178), + [sym_break_statement] = STATE(1178), + [sym_continue_statement] = STATE(1178), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1178), + [sym_nonlocal_statement] = STATE(1178), + [sym_exec_statement] = STATE(1178), + [sym_type_alias_statement] = STATE(1178), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20469,59 +18014,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [93] = { - [sym__simple_statements] = STATE(268), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(372), + [sym_import_statement] = STATE(1156), + [sym_future_import_statement] = STATE(1156), + [sym_import_from_statement] = STATE(1156), + [sym_print_statement] = STATE(1156), + [sym_assert_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1156), + [sym_delete_statement] = STATE(1156), + [sym_raise_statement] = STATE(1156), + [sym_pass_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1156), + [sym_nonlocal_statement] = STATE(1156), + [sym_exec_statement] = STATE(1156), + [sym_type_alias_statement] = STATE(1156), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20563,59 +18108,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [94] = { - [sym__simple_statements] = STATE(538), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(584), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20657,59 +18202,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [95] = { - [sym__simple_statements] = STATE(594), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(438), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20751,59 +18296,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [96] = { - [sym__simple_statements] = STATE(965), - [sym_import_statement] = STATE(1214), - [sym_future_import_statement] = STATE(1214), - [sym_import_from_statement] = STATE(1214), - [sym_print_statement] = STATE(1214), - [sym_assert_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1214), - [sym_delete_statement] = STATE(1214), - [sym_raise_statement] = STATE(1214), - [sym_pass_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1214), - [sym_nonlocal_statement] = STATE(1214), - [sym_exec_statement] = STATE(1214), - [sym_type_alias_statement] = STATE(1214), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(591), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20845,59 +18390,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [97] = { - [sym__simple_statements] = STATE(464), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(515), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20939,59 +18484,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [98] = { - [sym__simple_statements] = STATE(353), - [sym_import_statement] = STATE(1244), - [sym_future_import_statement] = STATE(1244), - [sym_import_from_statement] = STATE(1244), - [sym_print_statement] = STATE(1244), - [sym_assert_statement] = STATE(1244), - [sym_expression_statement] = STATE(1244), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1244), - [sym_delete_statement] = STATE(1244), - [sym_raise_statement] = STATE(1244), - [sym_pass_statement] = STATE(1244), - [sym_break_statement] = STATE(1244), - [sym_continue_statement] = STATE(1244), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1244), - [sym_nonlocal_statement] = STATE(1244), - [sym_exec_statement] = STATE(1244), - [sym_type_alias_statement] = STATE(1244), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21033,59 +18578,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [99] = { - [sym__simple_statements] = STATE(542), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(476), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21127,59 +18672,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [100] = { - [sym__simple_statements] = STATE(331), - [sym_import_statement] = STATE(1248), - [sym_future_import_statement] = STATE(1248), - [sym_import_from_statement] = STATE(1248), - [sym_print_statement] = STATE(1248), - [sym_assert_statement] = STATE(1248), - [sym_expression_statement] = STATE(1248), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1248), - [sym_delete_statement] = STATE(1248), - [sym_raise_statement] = STATE(1248), - [sym_pass_statement] = STATE(1248), - [sym_break_statement] = STATE(1248), - [sym_continue_statement] = STATE(1248), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1248), - [sym_nonlocal_statement] = STATE(1248), - [sym_exec_statement] = STATE(1248), - [sym_type_alias_statement] = STATE(1248), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(348), + [sym_import_statement] = STATE(1149), + [sym_future_import_statement] = STATE(1149), + [sym_import_from_statement] = STATE(1149), + [sym_print_statement] = STATE(1149), + [sym_assert_statement] = STATE(1149), + [sym_expression_statement] = STATE(1149), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1149), + [sym_delete_statement] = STATE(1149), + [sym_raise_statement] = STATE(1149), + [sym_pass_statement] = STATE(1149), + [sym_break_statement] = STATE(1149), + [sym_continue_statement] = STATE(1149), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1149), + [sym_nonlocal_statement] = STATE(1149), + [sym_exec_statement] = STATE(1149), + [sym_type_alias_statement] = STATE(1149), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21221,59 +18766,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [101] = { - [sym__simple_statements] = STATE(592), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(595), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21315,59 +18860,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [102] = { - [sym__simple_statements] = STATE(492), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(509), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21409,59 +18954,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [103] = { - [sym__simple_statements] = STATE(332), - [sym_import_statement] = STATE(1261), - [sym_future_import_statement] = STATE(1261), - [sym_import_from_statement] = STATE(1261), - [sym_print_statement] = STATE(1261), - [sym_assert_statement] = STATE(1261), - [sym_expression_statement] = STATE(1261), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1261), - [sym_delete_statement] = STATE(1261), - [sym_raise_statement] = STATE(1261), - [sym_pass_statement] = STATE(1261), - [sym_break_statement] = STATE(1261), - [sym_continue_statement] = STATE(1261), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1261), - [sym_nonlocal_statement] = STATE(1261), - [sym_exec_statement] = STATE(1261), - [sym_type_alias_statement] = STATE(1261), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(542), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21503,59 +19048,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [104] = { - [sym__simple_statements] = STATE(544), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(488), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21597,59 +19142,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [105] = { - [sym__simple_statements] = STATE(582), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(526), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21691,59 +19236,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [106] = { - [sym__simple_statements] = STATE(493), + [sym__simple_statements] = STATE(544), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21785,59 +19330,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [107] = { - [sym__simple_statements] = STATE(563), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(535), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21879,59 +19424,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [108] = { - [sym__simple_statements] = STATE(580), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(402), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21973,59 +19518,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [109] = { - [sym__simple_statements] = STATE(991), - [sym_import_statement] = STATE(1214), - [sym_future_import_statement] = STATE(1214), - [sym_import_from_statement] = STATE(1214), - [sym_print_statement] = STATE(1214), - [sym_assert_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1214), - [sym_delete_statement] = STATE(1214), - [sym_raise_statement] = STATE(1214), - [sym_pass_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1214), - [sym_nonlocal_statement] = STATE(1214), - [sym_exec_statement] = STATE(1214), - [sym_type_alias_statement] = STATE(1214), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(1004), + [sym_import_statement] = STATE(1207), + [sym_future_import_statement] = STATE(1207), + [sym_import_from_statement] = STATE(1207), + [sym_print_statement] = STATE(1207), + [sym_assert_statement] = STATE(1207), + [sym_expression_statement] = STATE(1207), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1207), + [sym_delete_statement] = STATE(1207), + [sym_raise_statement] = STATE(1207), + [sym_pass_statement] = STATE(1207), + [sym_break_statement] = STATE(1207), + [sym_continue_statement] = STATE(1207), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1207), + [sym_nonlocal_statement] = STATE(1207), + [sym_exec_statement] = STATE(1207), + [sym_type_alias_statement] = STATE(1207), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22067,59 +19612,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [110] = { - [sym__simple_statements] = STATE(478), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(567), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22161,59 +19706,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [111] = { - [sym__simple_statements] = STATE(272), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(363), + [sym_import_statement] = STATE(1156), + [sym_future_import_statement] = STATE(1156), + [sym_import_from_statement] = STATE(1156), + [sym_print_statement] = STATE(1156), + [sym_assert_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1156), + [sym_delete_statement] = STATE(1156), + [sym_raise_statement] = STATE(1156), + [sym_pass_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1156), + [sym_nonlocal_statement] = STATE(1156), + [sym_exec_statement] = STATE(1156), + [sym_type_alias_statement] = STATE(1156), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22255,59 +19800,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [112] = { - [sym__simple_statements] = STATE(490), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(529), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22349,59 +19894,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [113] = { - [sym__simple_statements] = STATE(589), + [sym__simple_statements] = STATE(275), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22443,59 +19988,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [114] = { - [sym__simple_statements] = STATE(388), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(365), + [sym_import_statement] = STATE(1178), + [sym_future_import_statement] = STATE(1178), + [sym_import_from_statement] = STATE(1178), + [sym_print_statement] = STATE(1178), + [sym_assert_statement] = STATE(1178), + [sym_expression_statement] = STATE(1178), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1178), + [sym_delete_statement] = STATE(1178), + [sym_raise_statement] = STATE(1178), + [sym_pass_statement] = STATE(1178), + [sym_break_statement] = STATE(1178), + [sym_continue_statement] = STATE(1178), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1178), + [sym_nonlocal_statement] = STATE(1178), + [sym_exec_statement] = STATE(1178), + [sym_type_alias_statement] = STATE(1178), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22537,59 +20082,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [115] = { - [sym__simple_statements] = STATE(572), + [sym__simple_statements] = STATE(575), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [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__newline] = ACTIONS(495), + [sym__indent] = ACTIONS(497), + [sym__string_start] = ACTIONS(81), + }, + [116] = { + [sym__simple_statements] = STATE(492), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22626,64 +20265,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(495), - [sym__indent] = ACTIONS(497), + [sym__newline] = ACTIONS(499), + [sym__indent] = ACTIONS(501), [sym__string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(485), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [117] = { + [sym__simple_statements] = STATE(556), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22720,64 +20359,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(499), - [sym__indent] = ACTIONS(501), + [sym__newline] = ACTIONS(503), + [sym__indent] = ACTIONS(505), [sym__string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(501), + [118] = { + [sym__simple_statements] = STATE(495), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22814,64 +20453,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(503), - [sym__indent] = ACTIONS(505), + [sym__newline] = ACTIONS(507), + [sym__indent] = ACTIONS(509), [sym__string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(430), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [119] = { + [sym__simple_statements] = STATE(323), + [sym_import_statement] = STATE(1156), + [sym_future_import_statement] = STATE(1156), + [sym_import_from_statement] = STATE(1156), + [sym_print_statement] = STATE(1156), + [sym_assert_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1156), + [sym_delete_statement] = STATE(1156), + [sym_raise_statement] = STATE(1156), + [sym_pass_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1156), + [sym_nonlocal_statement] = STATE(1156), + [sym_exec_statement] = STATE(1156), + [sym_type_alias_statement] = STATE(1156), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22908,64 +20547,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(507), - [sym__indent] = ACTIONS(509), + [sym__newline] = ACTIONS(511), + [sym__indent] = ACTIONS(513), [sym__string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(497), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [120] = { + [sym__simple_statements] = STATE(439), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23002,158 +20641,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(511), - [sym__indent] = ACTIONS(513), + [sym__newline] = ACTIONS(515), + [sym__indent] = ACTIONS(517), [sym__string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(553), + [121] = { + [sym__simple_statements] = STATE(561), [sym_import_statement] = STATE(1209), [sym_future_import_statement] = STATE(1209), [sym_import_from_statement] = STATE(1209), [sym_print_statement] = STATE(1209), [sym_assert_statement] = STATE(1209), [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), + [sym_named_expression] = STATE(974), [sym_return_statement] = STATE(1209), [sym_delete_statement] = STATE(1209), [sym_raise_statement] = STATE(1209), [sym_pass_statement] = STATE(1209), [sym_break_statement] = STATE(1209), [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), [sym_global_statement] = STATE(1209), [sym_nonlocal_statement] = STATE(1209), [sym_exec_statement] = STATE(1209), [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(317), - [anon_sym_match] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [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__newline] = ACTIONS(515), - [sym__indent] = ACTIONS(517), - [sym__string_start] = ACTIONS(81), - }, - [121] = { - [sym__simple_statements] = STATE(486), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23195,59 +20740,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [122] = { - [sym__simple_statements] = STATE(571), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(482), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23289,59 +20834,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [123] = { - [sym__simple_statements] = STATE(578), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(522), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23383,59 +20928,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [124] = { - [sym__simple_statements] = STATE(472), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(518), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23477,59 +21022,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [125] = { - [sym__simple_statements] = STATE(317), - [sym_import_statement] = STATE(1244), - [sym_future_import_statement] = STATE(1244), - [sym_import_from_statement] = STATE(1244), - [sym_print_statement] = STATE(1244), - [sym_assert_statement] = STATE(1244), - [sym_expression_statement] = STATE(1244), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1244), - [sym_delete_statement] = STATE(1244), - [sym_raise_statement] = STATE(1244), - [sym_pass_statement] = STATE(1244), - [sym_break_statement] = STATE(1244), - [sym_continue_statement] = STATE(1244), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1244), - [sym_nonlocal_statement] = STATE(1244), - [sym_exec_statement] = STATE(1244), - [sym_type_alias_statement] = STATE(1244), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(496), + [sym_import_statement] = STATE(1138), + [sym_future_import_statement] = STATE(1138), + [sym_import_from_statement] = STATE(1138), + [sym_print_statement] = STATE(1138), + [sym_assert_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1138), + [sym_delete_statement] = STATE(1138), + [sym_raise_statement] = STATE(1138), + [sym_pass_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1138), + [sym_nonlocal_statement] = STATE(1138), + [sym_exec_statement] = STATE(1138), + [sym_type_alias_statement] = STATE(1138), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23571,59 +21116,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [126] = { - [sym__simple_statements] = STATE(384), - [sym_import_statement] = STATE(1238), - [sym_future_import_statement] = STATE(1238), - [sym_import_from_statement] = STATE(1238), - [sym_print_statement] = STATE(1238), - [sym_assert_statement] = STATE(1238), - [sym_expression_statement] = STATE(1238), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1238), - [sym_delete_statement] = STATE(1238), - [sym_raise_statement] = STATE(1238), - [sym_pass_statement] = STATE(1238), - [sym_break_statement] = STATE(1238), - [sym_continue_statement] = STATE(1238), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1238), - [sym_nonlocal_statement] = STATE(1238), - [sym_exec_statement] = STATE(1238), - [sym_type_alias_statement] = STATE(1238), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(543), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23665,59 +21210,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [127] = { - [sym__simple_statements] = STATE(552), - [sym_import_statement] = STATE(1209), - [sym_future_import_statement] = STATE(1209), - [sym_import_from_statement] = STATE(1209), - [sym_print_statement] = STATE(1209), - [sym_assert_statement] = STATE(1209), - [sym_expression_statement] = STATE(1209), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1209), - [sym_delete_statement] = STATE(1209), - [sym_raise_statement] = STATE(1209), - [sym_pass_statement] = STATE(1209), - [sym_break_statement] = STATE(1209), - [sym_continue_statement] = STATE(1209), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1209), - [sym_nonlocal_statement] = STATE(1209), - [sym_exec_statement] = STATE(1209), - [sym_type_alias_statement] = STATE(1209), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(357), + [sym_import_statement] = STATE(1149), + [sym_future_import_statement] = STATE(1149), + [sym_import_from_statement] = STATE(1149), + [sym_print_statement] = STATE(1149), + [sym_assert_statement] = STATE(1149), + [sym_expression_statement] = STATE(1149), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1149), + [sym_delete_statement] = STATE(1149), + [sym_raise_statement] = STATE(1149), + [sym_pass_statement] = STATE(1149), + [sym_break_statement] = STATE(1149), + [sym_continue_statement] = STATE(1149), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1149), + [sym_nonlocal_statement] = STATE(1149), + [sym_exec_statement] = STATE(1149), + [sym_type_alias_statement] = STATE(1149), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23759,59 +21304,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [128] = { - [sym__simple_statements] = STATE(487), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(419), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23853,59 +21398,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [129] = { - [sym__simple_statements] = STATE(558), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(358), + [sym_import_statement] = STATE(1140), + [sym_future_import_statement] = STATE(1140), + [sym_import_from_statement] = STATE(1140), + [sym_print_statement] = STATE(1140), + [sym_assert_statement] = STATE(1140), + [sym_expression_statement] = STATE(1140), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1140), + [sym_delete_statement] = STATE(1140), + [sym_raise_statement] = STATE(1140), + [sym_pass_statement] = STATE(1140), + [sym_break_statement] = STATE(1140), + [sym_continue_statement] = STATE(1140), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1140), + [sym_nonlocal_statement] = STATE(1140), + [sym_exec_statement] = STATE(1140), + [sym_type_alias_statement] = STATE(1140), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -23947,59 +21492,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [130] = { - [sym__simple_statements] = STATE(421), - [sym_import_statement] = STATE(1319), - [sym_future_import_statement] = STATE(1319), - [sym_import_from_statement] = STATE(1319), - [sym_print_statement] = STATE(1319), - [sym_assert_statement] = STATE(1319), - [sym_expression_statement] = STATE(1319), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1319), - [sym_delete_statement] = STATE(1319), - [sym_raise_statement] = STATE(1319), - [sym_pass_statement] = STATE(1319), - [sym_break_statement] = STATE(1319), - [sym_continue_statement] = STATE(1319), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1319), - [sym_nonlocal_statement] = STATE(1319), - [sym_exec_statement] = STATE(1319), - [sym_type_alias_statement] = STATE(1319), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym__simple_statements] = STATE(520), + [sym_import_statement] = STATE(1209), + [sym_future_import_statement] = STATE(1209), + [sym_import_from_statement] = STATE(1209), + [sym_print_statement] = STATE(1209), + [sym_assert_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1209), + [sym_delete_statement] = STATE(1209), + [sym_raise_statement] = STATE(1209), + [sym_pass_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1209), + [sym_nonlocal_statement] = STATE(1209), + [sym_exec_statement] = STATE(1209), + [sym_type_alias_statement] = STATE(1209), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24041,53 +21586,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [131] = { - [sym_named_expression] = STATE(1009), - [sym_expression] = STATE(976), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_attribute] = STATE(797), - [sym_subscript] = STATE(797), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [sym_identifier] = ACTIONS(331), + [sym_named_expression] = STATE(905), + [sym_expression] = STATE(903), + [sym_primary_expression] = STATE(630), + [sym_not_operator] = STATE(905), + [sym_boolean_operator] = STATE(905), + [sym_binary_operator] = STATE(622), + [sym_unary_operator] = STATE(622), + [sym_comparison_operator] = STATE(905), + [sym_lambda] = STATE(905), + [sym_attribute] = STATE(622), + [sym_subscript] = STATE(622), + [sym_call] = STATE(622), + [sym_list] = STATE(622), + [sym_set] = STATE(622), + [sym_tuple] = STATE(622), + [sym_dictionary] = STATE(622), + [sym_list_comprehension] = STATE(622), + [sym_dictionary_comprehension] = STATE(622), + [sym_set_comprehension] = STATE(622), + [sym_generator_expression] = STATE(622), + [sym_parenthesized_expression] = STATE(622), + [sym_conditional_expression] = STATE(905), + [sym_concatenated_string] = STATE(622), + [sym_string] = STATE(607), + [sym_await] = STATE(905), + [sym_identifier] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_STAR] = ACTIONS(276), + [anon_sym_print] = ACTIONS(285), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_COLON_EQ] = ACTIONS(562), + [anon_sym_if] = ACTIONS(276), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_async] = ACTIONS(285), + [anon_sym_in] = ACTIONS(276), + [anon_sym_match] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(276), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_LBRACE] = ACTIONS(295), + [anon_sym_STAR_STAR] = ACTIONS(276), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_exec] = ACTIONS(285), + [anon_sym_type] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_not] = ACTIONS(299), + [anon_sym_and] = ACTIONS(276), + [anon_sym_or] = ACTIONS(276), + [anon_sym_SLASH] = ACTIONS(276), + [anon_sym_PERCENT] = ACTIONS(276), + [anon_sym_SLASH_SLASH] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(276), + [anon_sym_CARET] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(303), + [anon_sym_EQ_EQ] = ACTIONS(303), + [anon_sym_BANG_EQ] = ACTIONS(303), + [anon_sym_GT_EQ] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_LT_GT] = ACTIONS(303), + [anon_sym_is] = ACTIONS(276), + [anon_sym_lambda] = ACTIONS(305), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_AT_EQ] = ACTIONS(566), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_STAR_STAR_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [sym_ellipsis] = ACTIONS(309), + [sym_integer] = ACTIONS(311), + [sym_float] = ACTIONS(309), + [anon_sym_await] = ACTIONS(313), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_none] = ACTIONS(311), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(315), + }, + [132] = { + [sym_named_expression] = STATE(974), + [sym_expression] = STATE(1012), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_attribute] = STATE(795), + [sym_subscript] = STATE(795), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [sym_identifier] = ACTIONS(379), [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(568), [anon_sym_COMMA] = ACTIONS(280), [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(333), + [anon_sym_print] = ACTIONS(381), [anon_sym_GT_GT] = ACTIONS(276), [anon_sym_COLON_EQ] = ACTIONS(287), [anon_sym_if] = ACTIONS(276), [anon_sym_COLON] = ACTIONS(289), - [anon_sym_async] = ACTIONS(333), + [anon_sym_async] = ACTIONS(381), [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(333), + [anon_sym_match] = ACTIONS(381), [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(572), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(276), [anon_sym_EQ] = ACTIONS(289), - [anon_sym_exec] = ACTIONS(333), - [anon_sym_type] = ACTIONS(333), + [anon_sym_exec] = ACTIONS(381), + [anon_sym_type] = ACTIONS(381), [anon_sym_AT] = ACTIONS(276), [anon_sym_not] = ACTIONS(69), [anon_sym_and] = ACTIONS(276), @@ -24124,161 +21762,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(337), + [anon_sym_await] = ACTIONS(385), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(303), [sym__newline] = ACTIONS(303), [sym__string_start] = ACTIONS(81), }, - [132] = { - [sym_named_expression] = STATE(900), - [sym_expression] = STATE(901), - [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(900), - [sym_boolean_operator] = STATE(900), - [sym_binary_operator] = STATE(642), - [sym_unary_operator] = STATE(642), - [sym_comparison_operator] = STATE(900), - [sym_lambda] = STATE(900), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(642), - [sym_list] = STATE(642), - [sym_set] = STATE(642), - [sym_tuple] = STATE(642), - [sym_dictionary] = STATE(642), - [sym_list_comprehension] = STATE(642), - [sym_dictionary_comprehension] = STATE(642), - [sym_set_comprehension] = STATE(642), - [sym_generator_expression] = STATE(642), - [sym_parenthesized_expression] = STATE(642), - [sym_conditional_expression] = STATE(900), - [sym_concatenated_string] = STATE(642), - [sym_string] = STATE(600), - [sym_await] = STATE(900), - [sym_identifier] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_COLON_EQ] = ACTIONS(568), - [anon_sym_if] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_async] = ACTIONS(285), - [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(285), - [anon_sym_PIPE] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(293), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(295), - [anon_sym_STAR_STAR] = ACTIONS(276), - [anon_sym_EQ] = ACTIONS(570), - [anon_sym_exec] = ACTIONS(285), - [anon_sym_type] = ACTIONS(285), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_not] = ACTIONS(299), - [anon_sym_and] = ACTIONS(276), - [anon_sym_or] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(276), - [anon_sym_PERCENT] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(276), - [anon_sym_CARET] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT_GT] = ACTIONS(303), - [anon_sym_is] = ACTIONS(276), - [anon_sym_lambda] = ACTIONS(305), - [anon_sym_PLUS_EQ] = ACTIONS(572), - [anon_sym_DASH_EQ] = ACTIONS(572), - [anon_sym_STAR_EQ] = ACTIONS(572), - [anon_sym_SLASH_EQ] = ACTIONS(572), - [anon_sym_AT_EQ] = ACTIONS(572), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(572), - [anon_sym_PERCENT_EQ] = ACTIONS(572), - [anon_sym_STAR_STAR_EQ] = ACTIONS(572), - [anon_sym_GT_GT_EQ] = ACTIONS(572), - [anon_sym_LT_LT_EQ] = ACTIONS(572), - [anon_sym_AMP_EQ] = ACTIONS(572), - [anon_sym_CARET_EQ] = ACTIONS(572), - [anon_sym_PIPE_EQ] = ACTIONS(572), - [sym_ellipsis] = ACTIONS(309), - [sym_integer] = ACTIONS(311), - [sym_float] = ACTIONS(309), - [anon_sym_await] = ACTIONS(313), - [sym_true] = ACTIONS(311), - [sym_false] = ACTIONS(311), - [sym_none] = ACTIONS(311), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(315), - }, [133] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24319,58 +21864,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [134] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24411,58 +21956,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [135] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24503,58 +22048,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [136] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24595,58 +22140,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [137] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24687,58 +22232,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [138] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24779,58 +22324,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [139] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24871,58 +22416,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [140] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -24963,58 +22508,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [141] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -25055,58 +22600,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [142] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -25147,58 +22692,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [143] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -25239,58 +22784,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [144] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -25331,58 +22876,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [145] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -25423,58 +22968,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [146] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -25515,58 +23060,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [147] = { - [sym_import_statement] = STATE(1351), - [sym_future_import_statement] = STATE(1351), - [sym_import_from_statement] = STATE(1351), - [sym_print_statement] = STATE(1351), - [sym_assert_statement] = STATE(1351), - [sym_expression_statement] = STATE(1351), - [sym_named_expression] = STATE(1009), - [sym_return_statement] = STATE(1351), - [sym_delete_statement] = STATE(1351), - [sym_raise_statement] = STATE(1351), - [sym_pass_statement] = STATE(1351), - [sym_break_statement] = STATE(1351), - [sym_continue_statement] = STATE(1351), - [sym_list_splat] = STATE(1360), - [sym_dictionary_splat] = STATE(1360), - [sym_global_statement] = STATE(1351), - [sym_nonlocal_statement] = STATE(1351), - [sym_exec_statement] = STATE(1351), - [sym_type_alias_statement] = STATE(1351), - [sym_expression_list] = STATE(1361), - [sym_pattern] = STATE(889), - [sym_tuple_pattern] = STATE(875), - [sym_list_pattern] = STATE(875), - [sym_list_splat_pattern] = STATE(875), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_assignment] = STATE(1361), - [sym_augmented_assignment] = STATE(1361), - [sym_pattern_list] = STATE(897), - [sym_yield] = STATE(1361), - [sym_attribute] = STATE(431), - [sym_subscript] = STATE(431), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), + [sym_import_statement] = STATE(1404), + [sym_future_import_statement] = STATE(1404), + [sym_import_from_statement] = STATE(1404), + [sym_print_statement] = STATE(1404), + [sym_assert_statement] = STATE(1404), + [sym_expression_statement] = STATE(1404), + [sym_named_expression] = STATE(974), + [sym_return_statement] = STATE(1404), + [sym_delete_statement] = STATE(1404), + [sym_raise_statement] = STATE(1404), + [sym_pass_statement] = STATE(1404), + [sym_break_statement] = STATE(1404), + [sym_continue_statement] = STATE(1404), + [sym_list_splat] = STATE(1397), + [sym_dictionary_splat] = STATE(1397), + [sym_global_statement] = STATE(1404), + [sym_nonlocal_statement] = STATE(1404), + [sym_exec_statement] = STATE(1404), + [sym_type_alias_statement] = STATE(1404), + [sym_expression_list] = STATE(1396), + [sym_pattern] = STATE(887), + [sym_tuple_pattern] = STATE(878), + [sym_list_pattern] = STATE(878), + [sym_list_splat_pattern] = STATE(878), + [sym_expression] = STATE(1037), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_assignment] = STATE(1396), + [sym_augmented_assignment] = STATE(1396), + [sym_pattern_list] = STATE(898), + [sym_yield] = STATE(1396), + [sym_attribute] = STATE(444), + [sym_subscript] = STATE(444), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -25606,31 +23151,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [148] = { - [sym_named_expression] = STATE(900), - [sym_expression] = STATE(901), + [sym_named_expression] = STATE(905), + [sym_expression] = STATE(903), [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(900), - [sym_boolean_operator] = STATE(900), - [sym_binary_operator] = STATE(642), - [sym_unary_operator] = STATE(642), - [sym_comparison_operator] = STATE(900), - [sym_lambda] = STATE(900), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(642), - [sym_list] = STATE(642), - [sym_set] = STATE(642), - [sym_tuple] = STATE(642), - [sym_dictionary] = STATE(642), - [sym_list_comprehension] = STATE(642), - [sym_dictionary_comprehension] = STATE(642), - [sym_set_comprehension] = STATE(642), - [sym_generator_expression] = STATE(642), - [sym_parenthesized_expression] = STATE(642), - [sym_conditional_expression] = STATE(900), - [sym_concatenated_string] = STATE(642), - [sym_string] = STATE(600), - [sym_await] = STATE(900), + [sym_not_operator] = STATE(905), + [sym_boolean_operator] = STATE(905), + [sym_binary_operator] = STATE(622), + [sym_unary_operator] = STATE(622), + [sym_comparison_operator] = STATE(905), + [sym_lambda] = STATE(905), + [sym_attribute] = STATE(622), + [sym_subscript] = STATE(622), + [sym_call] = STATE(622), + [sym_list] = STATE(622), + [sym_set] = STATE(622), + [sym_tuple] = STATE(622), + [sym_dictionary] = STATE(622), + [sym_list_comprehension] = STATE(622), + [sym_dictionary_comprehension] = STATE(622), + [sym_set_comprehension] = STATE(622), + [sym_generator_expression] = STATE(622), + [sym_parenthesized_expression] = STATE(622), + [sym_conditional_expression] = STATE(905), + [sym_concatenated_string] = STATE(622), + [sym_string] = STATE(607), + [sym_await] = STATE(905), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -25639,7 +23184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(276), [anon_sym_print] = ACTIONS(285), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(568), + [anon_sym_COLON_EQ] = ACTIONS(562), [anon_sym_if] = ACTIONS(276), [anon_sym_COLON] = ACTIONS(276), [anon_sym_else] = ACTIONS(276), @@ -25689,31 +23234,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [149] = { - [sym_named_expression] = STATE(900), - [sym_expression] = STATE(901), - [sym_primary_expression] = STATE(643), - [sym_not_operator] = STATE(900), - [sym_boolean_operator] = STATE(900), - [sym_binary_operator] = STATE(642), - [sym_unary_operator] = STATE(642), - [sym_comparison_operator] = STATE(900), - [sym_lambda] = STATE(900), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(642), - [sym_list] = STATE(642), - [sym_set] = STATE(642), - [sym_tuple] = STATE(642), - [sym_dictionary] = STATE(642), - [sym_list_comprehension] = STATE(642), - [sym_dictionary_comprehension] = STATE(642), - [sym_set_comprehension] = STATE(642), - [sym_generator_expression] = STATE(642), - [sym_parenthesized_expression] = STATE(642), - [sym_conditional_expression] = STATE(900), - [sym_concatenated_string] = STATE(642), - [sym_string] = STATE(600), - [sym_await] = STATE(900), + [sym_named_expression] = STATE(905), + [sym_expression] = STATE(903), + [sym_primary_expression] = STATE(621), + [sym_not_operator] = STATE(905), + [sym_boolean_operator] = STATE(905), + [sym_binary_operator] = STATE(622), + [sym_unary_operator] = STATE(622), + [sym_comparison_operator] = STATE(905), + [sym_lambda] = STATE(905), + [sym_attribute] = STATE(622), + [sym_subscript] = STATE(622), + [sym_call] = STATE(622), + [sym_list] = STATE(622), + [sym_set] = STATE(622), + [sym_tuple] = STATE(622), + [sym_dictionary] = STATE(622), + [sym_list_comprehension] = STATE(622), + [sym_dictionary_comprehension] = STATE(622), + [sym_set_comprehension] = STATE(622), + [sym_generator_expression] = STATE(622), + [sym_parenthesized_expression] = STATE(622), + [sym_conditional_expression] = STATE(905), + [sym_concatenated_string] = STATE(622), + [sym_string] = STATE(607), + [sym_await] = STATE(905), [sym_identifier] = ACTIONS(602), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(604), @@ -25771,53 +23316,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [150] = { - [sym_named_expression] = STATE(1009), - [sym_expression] = STATE(976), - [sym_primary_expression] = STATE(684), - [sym_not_operator] = STATE(1009), - [sym_boolean_operator] = STATE(1009), - [sym_binary_operator] = STATE(797), - [sym_unary_operator] = STATE(797), - [sym_comparison_operator] = STATE(1009), - [sym_lambda] = STATE(1009), - [sym_attribute] = STATE(797), - [sym_subscript] = STATE(797), - [sym_call] = STATE(797), - [sym_list] = STATE(797), - [sym_set] = STATE(797), - [sym_tuple] = STATE(797), - [sym_dictionary] = STATE(797), - [sym_list_comprehension] = STATE(797), - [sym_dictionary_comprehension] = STATE(797), - [sym_set_comprehension] = STATE(797), - [sym_generator_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_conditional_expression] = STATE(1009), - [sym_concatenated_string] = STATE(797), - [sym_string] = STATE(713), - [sym_await] = STATE(1009), - [sym_identifier] = ACTIONS(331), + [sym_named_expression] = STATE(974), + [sym_expression] = STATE(1012), + [sym_primary_expression] = STATE(710), + [sym_not_operator] = STATE(974), + [sym_boolean_operator] = STATE(974), + [sym_binary_operator] = STATE(795), + [sym_unary_operator] = STATE(795), + [sym_comparison_operator] = STATE(974), + [sym_lambda] = STATE(974), + [sym_attribute] = STATE(795), + [sym_subscript] = STATE(795), + [sym_call] = STATE(795), + [sym_list] = STATE(795), + [sym_set] = STATE(795), + [sym_tuple] = STATE(795), + [sym_dictionary] = STATE(795), + [sym_list_comprehension] = STATE(795), + [sym_dictionary_comprehension] = STATE(795), + [sym_set_comprehension] = STATE(795), + [sym_generator_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_conditional_expression] = STATE(974), + [sym_concatenated_string] = STATE(795), + [sym_string] = STATE(683), + [sym_await] = STATE(974), + [sym_identifier] = ACTIONS(379), [anon_sym_DOT] = ACTIONS(276), [anon_sym_from] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(568), [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(276), - [anon_sym_print] = ACTIONS(333), + [anon_sym_print] = ACTIONS(381), [anon_sym_GT_GT] = ACTIONS(303), [anon_sym_COLON_EQ] = ACTIONS(287), [anon_sym_if] = ACTIONS(276), - [anon_sym_async] = ACTIONS(333), + [anon_sym_async] = ACTIONS(381), [anon_sym_in] = ACTIONS(276), - [anon_sym_match] = ACTIONS(333), + [anon_sym_match] = ACTIONS(381), [anon_sym_PIPE] = ACTIONS(303), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(572), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(303), [anon_sym_EQ] = ACTIONS(276), - [anon_sym_exec] = ACTIONS(333), - [anon_sym_type] = ACTIONS(333), + [anon_sym_exec] = ACTIONS(381), + [anon_sym_type] = ACTIONS(381), [anon_sym_AT] = ACTIONS(303), [anon_sym_not] = ACTIONS(69), [anon_sym_and] = ACTIONS(276), @@ -25841,46 +23386,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(337), + [anon_sym_await] = ACTIONS(385), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(303), [sym__newline] = ACTIONS(303), [sym__string_start] = ACTIONS(81), }, [151] = { - [sym_named_expression] = STATE(900), - [sym_expression] = STATE(901), - [sym_primary_expression] = STATE(643), - [sym_not_operator] = STATE(900), - [sym_boolean_operator] = STATE(900), - [sym_binary_operator] = STATE(642), - [sym_unary_operator] = STATE(642), - [sym_comparison_operator] = STATE(900), - [sym_lambda] = STATE(900), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(642), - [sym_list] = STATE(642), - [sym_set] = STATE(642), - [sym_tuple] = STATE(642), - [sym_dictionary] = STATE(642), - [sym_list_comprehension] = STATE(642), - [sym_dictionary_comprehension] = STATE(642), - [sym_set_comprehension] = STATE(642), - [sym_generator_expression] = STATE(642), - [sym_parenthesized_expression] = STATE(642), - [sym_conditional_expression] = STATE(900), - [sym_concatenated_string] = STATE(642), - [sym_string] = STATE(600), - [sym_await] = STATE(900), + [sym_named_expression] = STATE(905), + [sym_expression] = STATE(903), + [sym_primary_expression] = STATE(621), + [sym_not_operator] = STATE(905), + [sym_boolean_operator] = STATE(905), + [sym_binary_operator] = STATE(622), + [sym_unary_operator] = STATE(622), + [sym_comparison_operator] = STATE(905), + [sym_lambda] = STATE(905), + [sym_attribute] = STATE(622), + [sym_subscript] = STATE(622), + [sym_call] = STATE(622), + [sym_list] = STATE(622), + [sym_set] = STATE(622), + [sym_tuple] = STATE(622), + [sym_dictionary] = STATE(622), + [sym_list_comprehension] = STATE(622), + [sym_dictionary_comprehension] = STATE(622), + [sym_set_comprehension] = STATE(622), + [sym_generator_expression] = STATE(622), + [sym_parenthesized_expression] = STATE(622), + [sym_conditional_expression] = STATE(905), + [sym_concatenated_string] = STATE(622), + [sym_string] = STATE(607), + [sym_await] = STATE(905), [sym_identifier] = ACTIONS(602), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_RPAREN] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(303), + [anon_sym_RPAREN] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(280), [anon_sym_STAR] = ACTIONS(276), [anon_sym_print] = ACTIONS(606), [anon_sym_GT_GT] = ACTIONS(303), @@ -25894,9 +23439,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(610), [anon_sym_PLUS] = ACTIONS(610), [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_RBRACK] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_STAR_STAR] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(620), [anon_sym_exec] = ACTIONS(606), [anon_sym_type] = ACTIONS(606), [anon_sym_AT] = ACTIONS(303), @@ -25930,36 +23475,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [152] = { - [sym_named_expression] = STATE(900), - [sym_expression] = STATE(901), - [sym_primary_expression] = STATE(643), - [sym_not_operator] = STATE(900), - [sym_boolean_operator] = STATE(900), - [sym_binary_operator] = STATE(642), - [sym_unary_operator] = STATE(642), - [sym_comparison_operator] = STATE(900), - [sym_lambda] = STATE(900), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(642), - [sym_list] = STATE(642), - [sym_set] = STATE(642), - [sym_tuple] = STATE(642), - [sym_dictionary] = STATE(642), - [sym_list_comprehension] = STATE(642), - [sym_dictionary_comprehension] = STATE(642), - [sym_set_comprehension] = STATE(642), - [sym_generator_expression] = STATE(642), - [sym_parenthesized_expression] = STATE(642), - [sym_conditional_expression] = STATE(900), - [sym_concatenated_string] = STATE(642), - [sym_string] = STATE(600), - [sym_await] = STATE(900), + [sym_named_expression] = STATE(905), + [sym_expression] = STATE(903), + [sym_primary_expression] = STATE(621), + [sym_not_operator] = STATE(905), + [sym_boolean_operator] = STATE(905), + [sym_binary_operator] = STATE(622), + [sym_unary_operator] = STATE(622), + [sym_comparison_operator] = STATE(905), + [sym_lambda] = STATE(905), + [sym_attribute] = STATE(622), + [sym_subscript] = STATE(622), + [sym_call] = STATE(622), + [sym_list] = STATE(622), + [sym_set] = STATE(622), + [sym_tuple] = STATE(622), + [sym_dictionary] = STATE(622), + [sym_list_comprehension] = STATE(622), + [sym_dictionary_comprehension] = STATE(622), + [sym_set_comprehension] = STATE(622), + [sym_generator_expression] = STATE(622), + [sym_parenthesized_expression] = STATE(622), + [sym_conditional_expression] = STATE(905), + [sym_concatenated_string] = STATE(622), + [sym_string] = STATE(607), + [sym_await] = STATE(905), [sym_identifier] = ACTIONS(602), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_RPAREN] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(280), + [anon_sym_RPAREN] = ACTIONS(303), + [anon_sym_COMMA] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(276), [anon_sym_print] = ACTIONS(606), [anon_sym_GT_GT] = ACTIONS(303), @@ -25973,9 +23518,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(610), [anon_sym_PLUS] = ACTIONS(610), [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(280), [anon_sym_LBRACE] = ACTIONS(295), [anon_sym_STAR_STAR] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(620), [anon_sym_exec] = ACTIONS(606), [anon_sym_type] = ACTIONS(606), [anon_sym_AT] = ACTIONS(303), @@ -26009,31 +23554,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(315), }, [153] = { - [sym_named_expression] = STATE(1015), - [sym_expression] = STATE(1042), + [sym_named_expression] = STATE(1053), + [sym_expression] = STATE(1054), [sym_primary_expression] = STATE(740), - [sym_not_operator] = STATE(1015), - [sym_boolean_operator] = STATE(1015), - [sym_binary_operator] = STATE(811), - [sym_unary_operator] = STATE(811), - [sym_comparison_operator] = STATE(1015), - [sym_lambda] = STATE(1015), - [sym_attribute] = STATE(811), - [sym_subscript] = STATE(811), - [sym_call] = STATE(811), - [sym_list] = STATE(811), - [sym_set] = STATE(811), - [sym_tuple] = STATE(811), - [sym_dictionary] = STATE(811), - [sym_list_comprehension] = STATE(811), - [sym_dictionary_comprehension] = STATE(811), - [sym_set_comprehension] = STATE(811), - [sym_generator_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_conditional_expression] = STATE(1015), - [sym_concatenated_string] = STATE(811), - [sym_string] = STATE(742), - [sym_await] = STATE(1015), + [sym_not_operator] = STATE(1053), + [sym_boolean_operator] = STATE(1053), + [sym_binary_operator] = STATE(813), + [sym_unary_operator] = STATE(813), + [sym_comparison_operator] = STATE(1053), + [sym_lambda] = STATE(1053), + [sym_attribute] = STATE(813), + [sym_subscript] = STATE(813), + [sym_call] = STATE(813), + [sym_list] = STATE(813), + [sym_set] = STATE(813), + [sym_tuple] = STATE(813), + [sym_dictionary] = STATE(813), + [sym_list_comprehension] = STATE(813), + [sym_dictionary_comprehension] = STATE(813), + [sym_set_comprehension] = STATE(813), + [sym_generator_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_conditional_expression] = STATE(1053), + [sym_concatenated_string] = STATE(813), + [sym_string] = STATE(739), + [sym_await] = STATE(1053), [sym_identifier] = ACTIONS(622), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(624), @@ -26088,31 +23633,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(646), }, [154] = { - [sym_named_expression] = STATE(900), - [sym_expression] = STATE(901), + [sym_named_expression] = STATE(905), + [sym_expression] = STATE(903), [sym_primary_expression] = STATE(630), - [sym_not_operator] = STATE(900), - [sym_boolean_operator] = STATE(900), - [sym_binary_operator] = STATE(642), - [sym_unary_operator] = STATE(642), - [sym_comparison_operator] = STATE(900), - [sym_lambda] = STATE(900), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(642), - [sym_list] = STATE(642), - [sym_set] = STATE(642), - [sym_tuple] = STATE(642), - [sym_dictionary] = STATE(642), - [sym_list_comprehension] = STATE(642), - [sym_dictionary_comprehension] = STATE(642), - [sym_set_comprehension] = STATE(642), - [sym_generator_expression] = STATE(642), - [sym_parenthesized_expression] = STATE(642), - [sym_conditional_expression] = STATE(900), - [sym_concatenated_string] = STATE(642), - [sym_string] = STATE(600), - [sym_await] = STATE(900), + [sym_not_operator] = STATE(905), + [sym_boolean_operator] = STATE(905), + [sym_binary_operator] = STATE(622), + [sym_unary_operator] = STATE(622), + [sym_comparison_operator] = STATE(905), + [sym_lambda] = STATE(905), + [sym_attribute] = STATE(622), + [sym_subscript] = STATE(622), + [sym_call] = STATE(622), + [sym_list] = STATE(622), + [sym_set] = STATE(622), + [sym_tuple] = STATE(622), + [sym_dictionary] = STATE(622), + [sym_list_comprehension] = STATE(622), + [sym_dictionary_comprehension] = STATE(622), + [sym_set_comprehension] = STATE(622), + [sym_generator_expression] = STATE(622), + [sym_parenthesized_expression] = STATE(622), + [sym_conditional_expression] = STATE(905), + [sym_concatenated_string] = STATE(622), + [sym_string] = STATE(607), + [sym_await] = STATE(905), [sym_identifier] = ACTIONS(274), [anon_sym_DOT] = ACTIONS(276), [anon_sym_LPAREN] = ACTIONS(278), @@ -26121,7 +23666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(276), [anon_sym_print] = ACTIONS(285), [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_COLON_EQ] = ACTIONS(568), + [anon_sym_COLON_EQ] = ACTIONS(562), [anon_sym_if] = ACTIONS(276), [anon_sym_async] = ACTIONS(285), [anon_sym_in] = ACTIONS(276), @@ -26193,30 +23738,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(889), 1, + STATE(710), 1, + sym_primary_expression, + STATE(887), 1, sym_pattern, - STATE(897), 1, + STATE(898), 1, sym_pattern_list, - STATE(1034), 1, + STATE(1022), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(431), 2, + STATE(444), 2, sym_attribute, sym_subscript, - STATE(1360), 2, + STATE(1397), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -26231,13 +23776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1369), 5, + STATE(1362), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26245,7 +23790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 13, + STATE(795), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -26284,30 +23829,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(889), 1, + STATE(710), 1, + sym_primary_expression, + STATE(887), 1, sym_pattern, - STATE(897), 1, + STATE(898), 1, sym_pattern_list, - STATE(1034), 1, + STATE(1022), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(431), 2, + STATE(444), 2, sym_attribute, sym_subscript, - STATE(1360), 2, + STATE(1397), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -26322,13 +23867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1391), 5, + STATE(1409), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26336,7 +23881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 13, + STATE(795), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -26375,30 +23920,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(889), 1, + STATE(710), 1, + sym_primary_expression, + STATE(887), 1, sym_pattern, - STATE(897), 1, + STATE(898), 1, sym_pattern_list, - STATE(1034), 1, + STATE(1022), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(431), 2, + STATE(444), 2, sym_attribute, sym_subscript, - STATE(1360), 2, + STATE(1397), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -26413,13 +23958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1386), 5, + STATE(1411), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26427,7 +23972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 13, + STATE(795), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -26466,18 +24011,18 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(648), 1, anon_sym_from, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(929), 1, + STATE(928), 1, sym_expression, - STATE(1041), 1, + STATE(1043), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1366), 2, + STATE(1373), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -26503,7 +24048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26511,7 +24056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26527,7 +24072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [464] = 27, + [464] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -26543,307 +24088,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(654), 1, anon_sym_LPAREN, ACTIONS(656), 1, + anon_sym_RPAREN, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, ACTIONS(662), 1, - anon_sym_RBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - STATE(600), 1, - sym_string, - STATE(643), 1, - sym_primary_expression, - STATE(932), 1, - sym_expression, - STATE(1146), 1, - sym_pattern, - STATE(1497), 1, - sym__patterns, - STATE(1503), 1, - sym__collection_elements, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(806), 2, - sym_attribute, - sym_subscript, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(875), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1100), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 13, - 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, - [579] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(668), 1, - anon_sym_RBRACK, - STATE(600), 1, - sym_string, - STATE(643), 1, - sym_primary_expression, - STATE(941), 1, - sym_expression, - STATE(1146), 1, - sym_pattern, - STATE(1467), 1, - sym__collection_elements, - STATE(1497), 1, - sym__patterns, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(806), 2, - sym_attribute, - sym_subscript, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(875), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1100), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 13, - 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, - [694] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, ACTIONS(666), 1, anon_sym_await, - ACTIONS(670), 1, - anon_sym_RBRACK, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(941), 1, - sym_expression, - STATE(1146), 1, - sym_pattern, - STATE(1467), 1, - sym__collection_elements, - STATE(1497), 1, - sym__patterns, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(806), 2, - sym_attribute, - sym_subscript, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(875), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - STATE(1100), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(658), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 13, - 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, - [809] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(652), 1, - sym_identifier, - ACTIONS(654), 1, - anon_sym_LPAREN, - ACTIONS(656), 1, - anon_sym_STAR, - ACTIONS(660), 1, - anon_sym_LBRACK, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(666), 1, - anon_sym_await, - ACTIONS(672), 1, - anon_sym_RPAREN, - STATE(600), 1, - sym_string, - STATE(643), 1, - sym_primary_expression, - STATE(930), 1, + STATE(947), 1, sym_expression, - STATE(1146), 1, + STATE(1167), 1, sym_pattern, STATE(1219), 1, sym_yield, - STATE(1434), 1, - sym__patterns, - STATE(1484), 1, + STATE(1445), 1, sym__collection_elements, + STATE(1446), 1, + sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(806), 2, + STATE(797), 2, sym_attribute, sym_subscript, - STATE(1100), 2, + STATE(1118), 2, sym_list_splat, sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -26852,13 +24133,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(658), 5, + ACTIONS(660), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26866,7 +24147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -26880,7 +24161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [926] = 29, + [581] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -26895,45 +24176,44 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(660), 1, + ACTIONS(662), 1, anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, ACTIONS(666), 1, anon_sym_await, - ACTIONS(674), 1, + ACTIONS(668), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(930), 1, + STATE(950), 1, sym_expression, - STATE(1146), 1, + STATE(1167), 1, sym_pattern, - STATE(1219), 1, + STATE(1279), 1, sym_yield, - STATE(1301), 1, - sym_parenthesized_list_splat, - STATE(1303), 1, - sym_list_splat, - STATE(1434), 1, - sym__patterns, - STATE(1484), 1, + STATE(1440), 1, sym__collection_elements, + STATE(1446), 1, + sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(806), 2, + STATE(797), 2, sym_attribute, sym_subscript, + STATE(1118), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -26942,13 +24222,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(658), 5, + ACTIONS(660), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -26956,7 +24236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -26970,7 +24250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1045] = 28, + [698] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -26985,59 +24265,58 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(654), 1, anon_sym_LPAREN, - ACTIONS(656), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(660), 1, + ACTIONS(662), 1, anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, ACTIONS(666), 1, anon_sym_await, - ACTIONS(676), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(670), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(931), 1, + STATE(944), 1, sym_expression, - STATE(1146), 1, + STATE(1167), 1, sym_pattern, - STATE(1251), 1, - sym_yield, - STATE(1431), 1, - sym__collection_elements, - STATE(1434), 1, + STATE(1429), 1, sym__patterns, + STATE(1528), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(806), 2, + STATE(797), 2, sym_attribute, sym_subscript, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(658), 5, + ACTIONS(660), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27045,7 +24324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -27059,135 +24338,58 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1162] = 20, + [813] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(301), 1, - anon_sym_TILDE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(680), 1, - anon_sym_LPAREN, - ACTIONS(682), 1, - anon_sym_STAR, - ACTIONS(688), 1, - anon_sym_in, - ACTIONS(690), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_string, - STATE(876), 1, - sym_pattern, - STATE(882), 1, - sym_primary_expression, - ACTIONS(291), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - STATE(875), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(684), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(642), 13, - 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, - ACTIONS(686), 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, - [1262] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, ACTIONS(614), 1, anon_sym_not, ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, + ACTIONS(652), 1, + sym_identifier, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_LBRACK, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(694), 1, - anon_sym_COMMA, - ACTIONS(696), 1, - anon_sym_RBRACE, - STATE(600), 1, + ACTIONS(666), 1, + anon_sym_await, + ACTIONS(672), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(907), 1, + STATE(953), 1, sym_expression, - STATE(1052), 1, - sym_pair, - STATE(1327), 1, - sym_dictionary_splat, - STATE(1513), 1, + STATE(1167), 1, + sym_pattern, + STATE(1412), 1, sym__collection_elements, + STATE(1429), 1, + sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(797), 2, + sym_attribute, + sym_subscript, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(878), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1118), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -27196,13 +24398,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(660), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27210,11 +24412,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -27226,65 +24426,75 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1376] = 22, + [928] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(652), 1, + sym_identifier, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, + ACTIONS(674), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(933), 1, + STATE(947), 1, sym_expression, + STATE(1167), 1, + sym_pattern, + STATE(1219), 1, + sym_yield, + STATE(1320), 1, + sym_parenthesized_list_splat, + STATE(1321), 1, + sym_list_splat, + STATE(1445), 1, + sym__collection_elements, + STATE(1446), 1, + sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1023), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, + STATE(797), 2, + sym_attribute, + sym_subscript, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(878), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(660), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(698), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27292,11 +24502,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -27308,65 +24516,73 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1480] = 22, + [1047] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(652), 1, + sym_identifier, + ACTIONS(654), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(662), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(666), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, + ACTIONS(676), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(933), 1, + STATE(944), 1, sym_expression, + STATE(1167), 1, + sym_pattern, + STATE(1429), 1, + sym__patterns, + STATE(1528), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1023), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, + STATE(797), 2, + sym_attribute, + sym_subscript, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(878), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(660), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(700), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27374,11 +24590,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -27390,7 +24604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1584] = 27, + [1162] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27413,23 +24627,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(692), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(702), 1, + ACTIONS(680), 1, anon_sym_COMMA, - ACTIONS(704), 1, + ACTIONS(682), 1, anon_sym_RBRACE, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(911), 1, + STATE(913), 1, sym_expression, - STATE(1038), 1, + STATE(1039), 1, sym_pair, - STATE(1225), 1, + STATE(1265), 1, sym_dictionary_splat, - STATE(1460), 1, + STATE(1426), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -27438,7 +24652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1118), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -27453,7 +24667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27461,7 +24675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27477,7 +24691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1698] = 27, + [1276] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27500,23 +24714,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(692), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(706), 1, + ACTIONS(684), 1, anon_sym_COMMA, - ACTIONS(708), 1, + ACTIONS(686), 1, anon_sym_RBRACE, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(918), 1, + STATE(929), 1, sym_expression, - STATE(1049), 1, + STATE(1050), 1, sym_pair, - STATE(1311), 1, + STATE(1294), 1, sym_dictionary_splat, - STATE(1461), 1, + STATE(1439), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -27525,7 +24739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1118), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -27540,7 +24754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27548,7 +24762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27564,7 +24778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1812] = 22, + [1390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27587,16 +24801,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(933), 1, + STATE(941), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1023), 2, + STATE(1052), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -27614,7 +24828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(700), 7, + ACTIONS(688), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -27622,7 +24836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27630,7 +24844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27646,7 +24860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [1916] = 20, + [1494] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -27655,21 +24869,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(682), 1, + ACTIONS(694), 1, anon_sym_STAR, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(712), 1, + ACTIONS(700), 1, anon_sym_in, - STATE(600), 1, + ACTIONS(702), 1, + anon_sym_LBRACK, + STATE(607), 1, sym_string, - STATE(876), 1, + STATE(877), 1, sym_pattern, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, ACTIONS(291), 2, anon_sym_DASH, @@ -27680,7 +24894,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(770), 2, sym_attribute, sym_subscript, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -27689,14 +24903,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -27710,7 +24924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - ACTIONS(710), 15, + ACTIONS(698), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -27726,77 +24940,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [2016] = 25, + [1594] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, + ACTIONS(301), 1, + anon_sym_TILDE, ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(714), 1, - anon_sym_RPAREN, - ACTIONS(716), 1, + ACTIONS(694), 1, anon_sym_STAR, - STATE(600), 1, + ACTIONS(702), 1, + anon_sym_LBRACK, + ACTIONS(706), 1, + anon_sym_in, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(877), 1, + sym_pattern, + STATE(883), 1, sym_primary_expression, - STATE(915), 1, - sym_expression, - STATE(1268), 1, - sym_with_item, - STATE(1313), 1, - sym_yield, - STATE(1475), 1, - sym__collection_elements, + ACTIONS(291), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, + STATE(770), 2, + sym_attribute, + sym_subscript, + STATE(878), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, + anon_sym_await, + STATE(622), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -27808,11 +25004,33 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2123] = 22, + ACTIONS(704), 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, + [1694] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -27825,33 +25043,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(718), 1, - anon_sym_LPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1053), 1, + STATE(941), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1052), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(720), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1166), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -27863,7 +25070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + ACTIONS(708), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27871,7 +25086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27887,11 +25102,17 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2224] = 22, + [1798] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -27904,33 +25125,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(718), 1, - anon_sym_LPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1053), 1, + STATE(941), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1052), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(720), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1166), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -27942,7 +25152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + ACTIONS(688), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -27950,7 +25168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27966,64 +25184,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2325] = 24, + [1902] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, ACTIONS(283), 1, anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(724), 1, - anon_sym_RPAREN, - ACTIONS(726), 1, - anon_sym_COMMA, - ACTIONS(730), 1, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, anon_sym_await, - STATE(600), 1, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(710), 1, + anon_sym_COMMA, + ACTIONS(712), 1, + anon_sym_RBRACE, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1071), 1, + STATE(932), 1, sym_expression, - STATE(1256), 1, - sym_parenthesized_list_splat, + STATE(1023), 1, + sym_pair, + STATE(1226), 1, + sym_dictionary_splat, + STATE(1522), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1255), 3, + STATE(1118), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28031,7 +25255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28047,7 +25271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2430] = 24, + [2016] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -28064,23 +25288,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(692), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_RPAREN, - ACTIONS(726), 1, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(732), 1, - sym_identifier, - ACTIONS(736), 1, + ACTIONS(722), 1, anon_sym_await, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(953), 1, + STATE(942), 1, sym_expression, - STATE(1256), 1, + STATE(1262), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -28089,7 +25313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1255), 3, + STATE(1261), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28098,13 +25322,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(734), 5, + ACTIONS(720), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28112,7 +25336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28128,63 +25352,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2535] = 23, + [2121] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, ACTIONS(283), 1, anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + sym_identifier, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - STATE(600), 1, + ACTIONS(724), 1, + anon_sym_RPAREN, + ACTIONS(726), 1, + anon_sym_COMMA, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(960), 1, + STATE(948), 1, sym_expression, + STATE(1216), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1366), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1120), 3, - sym_expression_list, - sym_yield, - sym__f_expression, + STATE(1218), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(720), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28192,7 +25417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28208,64 +25433,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2638] = 24, + [2226] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(692), 1, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(728), 1, anon_sym_LPAREN, ACTIONS(732), 1, - sym_identifier, - ACTIONS(736), 1, - anon_sym_await, - ACTIONS(738), 1, - anon_sym_RPAREN, - ACTIONS(740), 1, - anon_sym_COMMA, - STATE(600), 1, + anon_sym_STAR, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(940), 1, + STATE(1044), 1, sym_expression, - STATE(1328), 1, - sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1239), 3, + ACTIONS(730), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1137), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(734), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28273,7 +25496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28289,64 +25512,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2743] = 24, + [2327] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - ACTIONS(742), 1, - anon_sym_from, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(732), 1, + anon_sym_STAR, + STATE(607), 1, sym_string, - STATE(1014), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1044), 1, sym_expression, - STATE(1348), 1, - sym_expression_list, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(650), 2, - sym__newline, - sym__semicolon, - STATE(1360), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(730), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1137), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28354,7 +25575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28370,7 +25591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2848] = 24, + [2428] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -28385,31 +25606,31 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(283), 1, anon_sym_STAR, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(744), 1, + ACTIONS(734), 1, anon_sym_from, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(982), 1, + STATE(710), 1, + sym_primary_expression, + STATE(969), 1, sym_expression, - STATE(1288), 1, + STATE(1253), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(746), 2, + ACTIONS(736), 2, sym__newline, - sym__semicolon, - STATE(1360), 2, + anon_sym_SEMI, + STATE(1397), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -28421,13 +25642,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28435,7 +25656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28451,7 +25672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [2953] = 22, + [2533] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -28470,15 +25691,15 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1053), 1, + STATE(1044), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -28487,11 +25708,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(748), 3, + ACTIONS(738), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1166), 3, + STATE(1137), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -28506,7 +25727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28514,7 +25735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28530,15 +25751,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3054] = 23, + [2634] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, ACTIONS(283), 1, anon_sym_STAR, ACTIONS(293), 1, @@ -28549,44 +25766,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - STATE(600), 1, + ACTIONS(716), 1, + anon_sym_RPAREN, + ACTIONS(718), 1, + anon_sym_COMMA, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(744), 1, + anon_sym_await, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(960), 1, + STATE(1086), 1, sym_expression, + STATE(1262), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1366), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1097), 3, - sym_expression_list, - sym_yield, - sym__f_expression, + STATE(1261), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28594,7 +25816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28610,7 +25832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3157] = 24, + [2739] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -28627,23 +25849,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(692), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(732), 1, + ACTIONS(714), 1, sym_identifier, - ACTIONS(736), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(750), 1, + ACTIONS(746), 1, anon_sym_RPAREN, - ACTIONS(752), 1, + ACTIONS(748), 1, anon_sym_COMMA, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(946), 1, + STATE(945), 1, sym_expression, - STATE(1297), 1, + STATE(1229), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -28652,7 +25874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1298), 3, + STATE(1231), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28661,13 +25883,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(734), 5, + ACTIONS(720), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28675,7 +25897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28691,60 +25913,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3262] = 21, + [2844] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, + ACTIONS(305), 1, anon_sym_lambda, - STATE(600), 1, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(664), 1, + anon_sym_yield, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(962), 1, + STATE(961), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1018), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, + STATE(1373), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(754), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(756), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(1119), 3, + sym_expression_list, + sym_yield, + sym__f_expression, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 4, + ACTIONS(285), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28752,7 +25977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28768,62 +25993,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3360] = 23, + [2947] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(379), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(760), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(750), 1, + anon_sym_from, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1035), 1, sym_expression, - STATE(1379), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, + STATE(1348), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(650), 2, + sym__newline, + anon_sym_SEMI, + STATE(1397), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28831,7 +26058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28847,7 +26074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3462] = 23, + [3052] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -28866,31 +26093,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(692), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(732), 1, anon_sym_STAR, - ACTIONS(762), 1, - anon_sym_RBRACK, - STATE(600), 1, + ACTIONS(752), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(941), 1, + STATE(911), 1, sym_expression, - STATE(1467), 1, + STATE(1280), 1, + sym_yield, + STATE(1300), 1, + sym_with_item, + STATE(1432), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1118), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -28902,7 +26132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28910,7 +26140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28926,63 +26156,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3564] = 24, + [3159] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, sym_identifier, - ACTIONS(612), 1, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(313), 1, anon_sym_await, + ACTIONS(315), 1, + sym__string_start, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(714), 1, - anon_sym_RPAREN, - ACTIONS(716), 1, - anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(930), 1, + STATE(961), 1, sym_expression, - STATE(1219), 1, - sym_yield, - STATE(1484), 1, - sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1100), 2, + STATE(1373), 2, sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, + sym_dictionary_splat, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1100), 3, + sym_expression_list, + sym_yield, + sym__f_expression, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -28990,7 +26220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29006,62 +26236,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3668] = 23, + [3262] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(764), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(758), 1, + anon_sym_lambda, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1124), 1, + STATE(963), 1, sym_expression, - STATE(1379), 1, - sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + ACTIONS(754), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(756), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(606), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29069,7 +26297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29085,62 +26313,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3770] = 23, + [3360] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(740), 1, sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(766), 1, - anon_sym_RBRACK, - STATE(600), 1, + ACTIONS(760), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(941), 1, + STATE(1115), 1, sym_expression, - STATE(1467), 1, - sym__collection_elements, + STATE(1366), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1363), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29148,7 +26376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29164,62 +26392,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3872] = 23, + [3462] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(740), 1, sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(768), 1, - anon_sym_RBRACK, - STATE(600), 1, + ACTIONS(762), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(932), 1, + STATE(1115), 1, sym_expression, - STATE(1503), 1, - sym__collection_elements, + STATE(1366), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1363), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29227,7 +26455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29243,7 +26471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [3974] = 21, + [3564] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -29252,51 +26480,54 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(602), 1, sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, ACTIONS(614), 1, anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, ACTIONS(618), 1, anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(600), 1, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(752), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(962), 1, + STATE(940), 1, sym_expression, + STATE(1280), 1, + sym_yield, + STATE(1432), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1018), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, + STATE(1118), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(770), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(772), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 4, + ACTIONS(606), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29304,7 +26535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29320,7 +26551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4072] = 24, + [3668] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -29339,32 +26570,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(692), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(732), 1, anon_sym_STAR, - ACTIONS(774), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(764), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(931), 1, + STATE(954), 1, sym_expression, - STATE(1251), 1, - sym_yield, - STATE(1431), 1, + STATE(1428), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -29376,7 +26606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29384,7 +26614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29400,7 +26630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4176] = 23, + [3770] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -29417,21 +26647,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(776), 1, + ACTIONS(766), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1115), 1, sym_expression, - STATE(1379), 1, + STATE(1366), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -29440,7 +26670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1363), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -29449,13 +26679,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29463,7 +26693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29479,44 +26709,44 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4278] = 23, + [3872] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(69), 1, anon_sym_not, ACTIONS(71), 1, anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(778), 1, - anon_sym_from, - ACTIONS(780), 1, - anon_sym_STAR, - ACTIONS(782), 1, - anon_sym_STAR_STAR, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, + STATE(710), 1, + sym_primary_expression, STATE(1036), 1, sym_expression, + STATE(1383), 1, + sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(700), 2, + ACTIONS(768), 2, sym__newline, - sym__semicolon, - STATE(1187), 2, + anon_sym_SEMI, + STATE(1397), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -29528,13 +26758,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29542,7 +26772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29558,62 +26788,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4380] = 23, + [3974] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(784), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(770), 1, + anon_sym_from, + ACTIONS(772), 1, + anon_sym_STAR, + ACTIONS(774), 1, + anon_sym_STAR_STAR, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1019), 1, sym_expression, - STATE(1379), 1, - sym_parenthesized_list_splat, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(688), 2, + sym__newline, + anon_sym_SEMI, + STATE(1212), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29621,7 +26851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29637,7 +26867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4482] = 23, + [4076] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -29654,21 +26884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(786), 1, + ACTIONS(776), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1115), 1, sym_expression, - STATE(1379), 1, + STATE(1366), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -29677,7 +26907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1363), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -29686,13 +26916,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29700,7 +26930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29716,62 +26946,63 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4584] = 23, + [4178] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(788), 1, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(778), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1124), 1, + STATE(950), 1, sym_expression, - STATE(1379), 1, - sym_parenthesized_list_splat, + STATE(1279), 1, + sym_yield, + STATE(1440), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1118), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29779,7 +27010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29795,62 +27026,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4686] = 23, + [4282] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(790), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(758), 1, + anon_sym_lambda, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1124), 1, + STATE(963), 1, sym_expression, - STATE(1379), 1, - sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + ACTIONS(780), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(782), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(606), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29858,7 +27087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29874,64 +27103,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4788] = 25, + [4380] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(740), 1, sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(792), 1, + ACTIONS(784), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(930), 1, + STATE(1115), 1, sym_expression, - STATE(1219), 1, - sym_yield, - STATE(1301), 1, + STATE(1366), 1, sym_parenthesized_list_splat, - STATE(1303), 1, - sym_list_splat, - STATE(1484), 1, - sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1363), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -29939,7 +27166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29955,44 +27182,44 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4894] = 23, + [4482] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(69), 1, anon_sym_not, ACTIONS(71), 1, anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(770), 1, + anon_sym_from, + ACTIONS(772), 1, + anon_sym_STAR, + ACTIONS(774), 1, + anon_sym_STAR_STAR, + STATE(683), 1, sym_string, - STATE(1045), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1019), 1, sym_expression, - STATE(1394), 1, - sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(794), 2, + ACTIONS(688), 2, sym__newline, - sym__semicolon, - STATE(1360), 2, + anon_sym_SEMI, + STATE(1212), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -30004,13 +27231,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30018,7 +27245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30034,60 +27261,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [4996] = 21, + [4584] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(600), 1, + ACTIONS(786), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(962), 1, + STATE(1115), 1, sym_expression, + STATE(1366), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1018), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(796), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(798), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(1363), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 4, + ACTIONS(742), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30095,7 +27324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30111,7 +27340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5094] = 23, + [4686] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30128,21 +27357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(788), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1115), 1, sym_expression, - STATE(1379), 1, + STATE(1366), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -30151,7 +27380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1363), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -30160,13 +27389,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30174,7 +27403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30190,7 +27419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5196] = 24, + [4788] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -30209,28 +27438,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(692), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(732), 1, anon_sym_STAR, - ACTIONS(792), 1, + ACTIONS(752), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(930), 1, + STATE(947), 1, sym_expression, STATE(1219), 1, sym_yield, - STATE(1484), 1, + STATE(1320), 1, + sym_parenthesized_list_splat, + STATE(1321), 1, + sym_list_splat, + STATE(1445), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, @@ -30246,7 +27476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30254,7 +27484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30270,7 +27500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5300] = 23, + [4894] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -30281,33 +27511,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(778), 1, - anon_sym_from, - ACTIONS(780), 1, + ACTIONS(772), 1, anon_sym_STAR, - ACTIONS(782), 1, + ACTIONS(774), 1, anon_sym_STAR_STAR, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(790), 1, + anon_sym_from, + STATE(683), 1, sym_string, - STATE(1036), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1019), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(700), 2, + ACTIONS(708), 2, sym__newline, - sym__semicolon, - STATE(1187), 2, + anon_sym_SEMI, + STATE(1212), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -30319,13 +27549,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30333,7 +27563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30349,7 +27579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5402] = 23, + [4996] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30366,21 +27596,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(802), 1, + ACTIONS(792), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1115), 1, sym_expression, - STATE(1379), 1, + STATE(1366), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -30389,7 +27619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1363), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -30398,13 +27628,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30412,7 +27642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30428,62 +27658,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5504] = 23, + [5098] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(804), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(794), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1124), 1, + STATE(944), 1, sym_expression, - STATE(1379), 1, - sym_parenthesized_list_splat, + STATE(1528), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1118), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30491,7 +27721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30507,7 +27737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5606] = 23, + [5200] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30524,21 +27754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(806), 1, + ACTIONS(796), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1115), 1, sym_expression, - STATE(1379), 1, + STATE(1366), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -30547,7 +27777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1363), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -30556,13 +27786,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30570,7 +27800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30586,7 +27816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5708] = 23, + [5302] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30603,21 +27833,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(808), 1, + ACTIONS(798), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1115), 1, sym_expression, - STATE(1379), 1, + STATE(1366), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -30626,7 +27856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1363), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -30635,13 +27865,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30649,7 +27879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30665,62 +27895,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5810] = 23, + [5404] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(740), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, - anon_sym_STAR, - ACTIONS(782), 1, - anon_sym_STAR_STAR, - ACTIONS(810), 1, - anon_sym_from, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(800), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(1036), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1115), 1, sym_expression, - ACTIONS(75), 2, + STATE(1366), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(698), 2, - sym__newline, - sym__semicolon, - STATE(1187), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(1363), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30728,7 +27958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30744,64 +27974,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [5912] = 25, + [5506] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(740), 1, sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(714), 1, + ACTIONS(802), 1, anon_sym_RPAREN, - ACTIONS(716), 1, - anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(930), 1, + STATE(1115), 1, sym_expression, - STATE(1219), 1, - sym_yield, - STATE(1301), 1, + STATE(1366), 1, sym_parenthesized_list_splat, - STATE(1303), 1, - sym_list_splat, - STATE(1484), 1, - sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1363), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30809,7 +28037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30825,63 +28053,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6018] = 24, + [5608] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(740), 1, sym_identifier, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(692), 1, - anon_sym_LPAREN, - ACTIONS(714), 1, + ACTIONS(804), 1, anon_sym_RPAREN, - ACTIONS(716), 1, - anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(945), 1, + STATE(1115), 1, sym_expression, - STATE(1313), 1, - sym_yield, - STATE(1475), 1, - sym__collection_elements, + STATE(1366), 1, + sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1363), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30889,7 +28116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30905,7 +28132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6122] = 21, + [5710] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -30914,51 +28141,54 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(602), 1, sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, ACTIONS(612), 1, anon_sym_LBRACK, ACTIONS(614), 1, anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, ACTIONS(618), 1, anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(600), 1, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(806), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(962), 1, + STATE(947), 1, sym_expression, + STATE(1219), 1, + sym_yield, + STATE(1445), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1018), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, + STATE(1118), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(812), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(814), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 4, + ACTIONS(606), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -30966,7 +28196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30982,7 +28212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6220] = 23, + [5814] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30999,21 +28229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(744), 1, anon_sym_await, - ACTIONS(816), 1, + ACTIONS(808), 1, anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1115), 1, sym_expression, - STATE(1379), 1, + STATE(1366), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -31022,7 +28252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1363), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -31031,13 +28261,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31045,7 +28275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31061,62 +28291,60 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6322] = 23, + [5916] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(818), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(758), 1, + anon_sym_lambda, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1124), 1, + STATE(963), 1, sym_expression, - STATE(1379), 1, - sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + STATE(1045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + ACTIONS(810), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(812), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(606), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31124,7 +28352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31140,62 +28368,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6424] = 23, + [6014] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, - anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(820), 1, - anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(814), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1124), 1, + STATE(953), 1, sym_expression, - STATE(1379), 1, - sym_parenthesized_list_splat, + STATE(1412), 1, + sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1118), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31203,7 +28431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31219,7 +28447,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6526] = 23, + [6116] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(740), 1, + sym_identifier, + ACTIONS(744), 1, + anon_sym_await, + ACTIONS(816), 1, + anon_sym_RPAREN, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1115), 1, + sym_expression, + STATE(1366), 1, + sym_parenthesized_list_splat, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1363), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(742), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [6218] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -31238,19 +28545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(692), 1, + ACTIONS(678), 1, anon_sym_LPAREN, - ACTIONS(716), 1, + ACTIONS(732), 1, anon_sym_STAR, - ACTIONS(766), 1, - anon_sym_RBRACK, - STATE(600), 1, + ACTIONS(806), 1, + anon_sym_RPAREN, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(935), 1, + STATE(947), 1, sym_expression, - STATE(1473), 1, + STATE(1219), 1, + sym_yield, + STATE(1320), 1, + sym_parenthesized_list_splat, + STATE(1321), 1, + sym_list_splat, + STATE(1445), 1, sym__collection_elements, ACTIONS(309), 2, sym_ellipsis, @@ -31259,10 +28572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -31274,7 +28583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31282,7 +28591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31298,184 +28607,246 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6628] = 3, + [6324] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 17, - anon_sym_as, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(752), 1, + anon_sym_RPAREN, + STATE(607), 1, + sym_string, + STATE(621), 1, + sym_primary_expression, + STATE(947), 1, + sym_expression, + STATE(1219), 1, + sym_yield, + STATE(1445), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1118), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(822), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym_type_conversion, - [6689] = 3, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [6428] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(758), 1, + anon_sym_lambda, + STATE(607), 1, + sym_string, + STATE(621), 1, + sym_primary_expression, + STATE(963), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(826), 36, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_TILDE, + ACTIONS(818), 3, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(820), 3, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym_type_conversion, - [6750] = 3, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 4, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [6526] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 17, - anon_sym_as, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(678), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(764), 1, + anon_sym_RBRACK, + STATE(607), 1, + sym_string, + STATE(621), 1, + sym_primary_expression, + STATE(944), 1, + sym_expression, + STATE(1528), 1, + sym__collection_elements, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(830), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + STATE(1118), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym_type_conversion, - [6811] = 3, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [6628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 17, + ACTIONS(824), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -31493,7 +28864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(830), 36, + ACTIONS(822), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -31530,7 +28901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [6872] = 22, + [6689] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -31547,19 +28918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(315), 1, sym__string_start, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, sym_identifier, - ACTIONS(730), 1, + ACTIONS(744), 1, anon_sym_await, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1124), 1, + STATE(1115), 1, sym_expression, - STATE(1379), 1, + STATE(1366), 1, sym_parenthesized_list_splat, ACTIONS(309), 2, sym_ellipsis, @@ -31568,7 +28939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1373), 3, + STATE(1363), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -31577,13 +28948,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(728), 5, + ACTIONS(742), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31591,7 +28962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31607,10 +28978,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [6971] = 3, + [6788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(836), 17, + ACTIONS(828), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -31628,7 +28999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 36, + ACTIONS(826), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -31665,7 +29036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [7032] = 22, + [6849] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -31684,17 +29055,17 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(730), 1, anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1053), 1, + STATE(1044), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -31703,7 +29074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1166), 3, + STATE(1137), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -31718,7 +29089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31726,7 +29097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31742,7 +29113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7131] = 22, + [6948] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -31761,17 +29132,17 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(664), 1, anon_sym_yield, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(718), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(730), 1, anon_sym_RPAREN, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1053), 1, + STATE(1044), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -31780,7 +29151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1166), 3, + STATE(1137), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -31795,7 +29166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -31803,7 +29174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31819,10 +29190,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7230] = 3, + [7047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 17, + ACTIONS(832), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -31840,7 +29211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(822), 36, + ACTIONS(830), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -31877,10 +29248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [7291] = 3, + [7108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 17, + ACTIONS(832), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -31898,7 +29269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(838), 36, + ACTIONS(830), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -31935,86 +29306,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [7352] = 9, + [7169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, - anon_sym_else, - ACTIONS(848), 1, - anon_sym_except, - ACTIONS(850), 1, - anon_sym_finally, - STATE(440), 1, - sym_else_clause, - STATE(504), 1, - sym_finally_clause, - STATE(271), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(842), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(836), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(844), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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(834), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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_RBRACK, + anon_sym_RBRACE, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7424] = 9, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + sym_type_conversion, + [7230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + 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(838), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + sym_type_conversion, + [7291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(828), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + 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(826), 36, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + sym_type_conversion, + [7352] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_else, - ACTIONS(854), 1, + ACTIONS(848), 1, anon_sym_except_STAR, - ACTIONS(856), 1, + ACTIONS(850), 1, anon_sym_finally, - STATE(413), 1, + STATE(386), 1, sym_else_clause, - STATE(520), 1, + STATE(539), 1, sym_finally_clause, - STATE(267), 2, + STATE(271), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(842), 12, + ACTIONS(844), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -32027,7 +29509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(844), 33, + ACTIONS(842), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32061,11 +29543,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [7496] = 21, + [7424] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -32078,29 +29566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(664), 1, - anon_sym_yield, - ACTIONS(716), 1, - anon_sym_STAR, - ACTIONS(718), 1, - anon_sym_LPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1053), 1, + STATE(1074), 1, sym_expression, + STATE(1472), 1, + sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1373), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1166), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -32112,7 +29595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32120,7 +29603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32136,7 +29619,70 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7592] = 22, + [7522] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(846), 1, + anon_sym_else, + ACTIONS(850), 1, + anon_sym_finally, + ACTIONS(856), 1, + anon_sym_except, + STATE(455), 1, + sym_else_clause, + STATE(504), 1, + sym_finally_clause, + STATE(268), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(854), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(852), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, + [7594] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -32151,26 +29697,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(283), 1, anon_sym_STAR, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(1046), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1021), 1, sym_expression, - STATE(1389), 1, + STATE(1390), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1360), 2, + STATE(1397), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -32182,13 +29728,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32196,7 +29742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32212,23 +29758,23 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [7690] = 9, + [7692] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_else, - ACTIONS(856), 1, + ACTIONS(848), 1, + anon_sym_except_STAR, + ACTIONS(850), 1, anon_sym_finally, - ACTIONS(862), 1, - anon_sym_except, - STATE(454), 1, + STATE(455), 1, sym_else_clause, - STATE(588), 1, + STATE(504), 1, sym_finally_clause, - STATE(266), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(860), 12, + STATE(271), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(854), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -32241,7 +29787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(858), 33, + ACTIONS(852), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32275,101 +29821,214 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [7762] = 22, + [7764] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, + ACTIONS(858), 1, + anon_sym_else, + ACTIONS(860), 1, + anon_sym_except, + ACTIONS(862), 1, + anon_sym_finally, + STATE(395), 1, + sym_else_clause, + STATE(507), 1, + sym_finally_clause, + STATE(282), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(854), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, - ACTIONS(293), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(852), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(313), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(315), 1, + sym_true, + sym_false, + sym_none, + [7836] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + ACTIONS(862), 1, + anon_sym_finally, + ACTIONS(864), 1, + anon_sym_except_STAR, + STATE(395), 1, + sym_else_clause, + STATE(507), 1, + sym_finally_clause, + STATE(283), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(854), 12, sym__string_start, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1070), 1, - sym_expression, - STATE(1472), 1, - sym_expression_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1366), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(301), 3, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(311), 4, + sym_ellipsis, + sym_float, + ACTIONS(852), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, - ACTIONS(285), 5, + [7908] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + ACTIONS(862), 1, + anon_sym_finally, + ACTIONS(864), 1, + anon_sym_except_STAR, + STATE(456), 1, + sym_else_clause, + STATE(524), 1, + sym_finally_clause, + STATE(283), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(844), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(842), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [7860] = 9, + 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, + [7980] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, + ACTIONS(858), 1, anon_sym_else, - ACTIONS(854), 1, - anon_sym_except_STAR, - ACTIONS(856), 1, + ACTIONS(860), 1, + anon_sym_except, + ACTIONS(862), 1, anon_sym_finally, - STATE(454), 1, + STATE(456), 1, sym_else_clause, - STATE(588), 1, + STATE(524), 1, sym_finally_clause, - STATE(267), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(860), 12, - sym__dedent, + STATE(282), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(844), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32380,7 +30039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(858), 33, + ACTIONS(842), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32414,17 +30073,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [7932] = 22, + [8052] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -32437,24 +30090,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(664), 1, + anon_sym_yield, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(732), 1, + anon_sym_STAR, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1085), 1, + STATE(1044), 1, sym_expression, - STATE(1518), 1, - sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1366), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1137), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(311), 4, sym_integer, sym_true, @@ -32466,7 +30124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32474,7 +30132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32490,7 +30148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8030] = 22, + [8148] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -32513,18 +30171,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1059), 1, + STATE(1079), 1, sym_expression, - STATE(1507), 1, + STATE(1500), 1, sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1366), 2, + STATE(1373), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(301), 3, @@ -32542,7 +30200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32550,7 +30208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32566,143 +30224,89 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8128] = 9, + [8246] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, - anon_sym_else, - ACTIONS(850), 1, - anon_sym_finally, - ACTIONS(864), 1, - anon_sym_except_STAR, - STATE(467), 1, - sym_else_clause, - STATE(523), 1, - sym_finally_clause, - STATE(270), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(860), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(283), 1, + anon_sym_STAR, + ACTIONS(293), 1, anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(858), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(299), 1, anon_sym_not, + ACTIONS(305), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(313), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [8200] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - ACTIONS(848), 1, - anon_sym_except, - ACTIONS(850), 1, - anon_sym_finally, - STATE(467), 1, - sym_else_clause, - STATE(523), 1, - sym_finally_clause, - STATE(271), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(860), 12, + ACTIONS(315), 1, sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1080), 1, + sym_expression, + STATE(1479), 1, + sym_expression_list, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1373), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(858), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - 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, - [8272] = 22, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [8344] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -32715,20 +30319,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(868), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1075), 1, + STATE(1073), 1, sym_expression, - STATE(1465), 1, - sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1366), 2, + STATE(1369), 2, sym_list_splat, - sym_dictionary_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32744,7 +30352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32752,7 +30360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32768,86 +30376,99 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8370] = 9, + [8442] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, - anon_sym_else, - ACTIONS(850), 1, - anon_sym_finally, - ACTIONS(864), 1, - anon_sym_except_STAR, - STATE(440), 1, - sym_else_clause, - STATE(504), 1, - sym_finally_clause, - STATE(270), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(842), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(293), 1, anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(870), 1, + anon_sym_RBRACK, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1073), 1, + sym_expression, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(844), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(1369), 2, + sym_list_splat, + sym_slice, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - 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, - [8442] = 9, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [8540] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_else, - ACTIONS(856), 1, + ACTIONS(850), 1, anon_sym_finally, - ACTIONS(862), 1, + ACTIONS(856), 1, anon_sym_except, - STATE(413), 1, + STATE(386), 1, sym_else_clause, - STATE(520), 1, + STATE(539), 1, sym_finally_clause, - STATE(266), 2, + STATE(268), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(842), 12, + ACTIONS(844), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -32860,7 +30481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(844), 33, + ACTIONS(842), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32894,11 +30515,9 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8514] = 21, + [8612] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -32915,20 +30534,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, + ACTIONS(732), 1, + anon_sym_STAR, ACTIONS(866), 1, - anon_sym_RBRACE, - STATE(600), 1, + anon_sym_COLON, + ACTIONS(872), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1073), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, - sym_dictionary_splat, - sym_pair, + STATE(1369), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32944,7 +30567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -32952,7 +30575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32968,11 +30591,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8609] = 21, + [8710] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -32989,20 +30610,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(868), 1, - anon_sym_RBRACE, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(874), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1073), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, - sym_dictionary_splat, - sym_pair, + STATE(1369), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33018,7 +30643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33026,7 +30651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33042,57 +30667,59 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8704] = 21, + [8808] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - ACTIONS(780), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(732), 1, anon_sym_STAR, - ACTIONS(782), 1, - anon_sym_STAR_STAR, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(876), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, - STATE(1036), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1073), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1187), 2, + STATE(1369), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + sym_slice, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33100,7 +30727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33116,17 +30743,13 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8799] = 21, + [8906] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(283), 1, - anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -33139,18 +30762,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(878), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(933), 1, + STATE(1073), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1023), 2, + STATE(1369), 2, sym_list_splat, - sym_dictionary_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33166,7 +30795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33174,7 +30803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33190,7 +30819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8894] = 21, + [9004] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -33199,6 +30828,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(278), 1, anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -33211,20 +30842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(870), 1, - anon_sym_RBRACE, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1062), 1, sym_expression, + STATE(1455), 1, + sym_expression_list, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, + STATE(1373), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33240,7 +30871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33248,7 +30879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33264,74 +30895,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [8989] = 10, + [9102] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(872), 1, - anon_sym_for, - ACTIONS(874), 1, - anon_sym_with, - ACTIONS(876), 1, - anon_sym_def, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 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(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - 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(303), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [9062] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -33348,20 +30914,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(878), 1, - anon_sym_RBRACE, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(880), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1073), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, - sym_dictionary_splat, - sym_pair, + STATE(1369), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33377,7 +30947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33385,7 +30955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33401,11 +30971,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9157] = 21, + [9200] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -33422,20 +30990,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(880), 1, - anon_sym_RBRACE, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(882), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1073), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, - sym_dictionary_splat, - sym_pair, + STATE(1369), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33451,7 +31023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33459,7 +31031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33475,11 +31047,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9252] = 21, + [9298] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -33496,20 +31066,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(882), 1, - anon_sym_RBRACE, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + ACTIONS(884), 1, + anon_sym_RBRACK, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1073), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, - sym_dictionary_splat, - sym_pair, + STATE(1369), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33525,7 +31099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33533,7 +31107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33549,11 +31123,9 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9347] = 21, + [9396] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -33570,20 +31142,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(884), 1, - anon_sym_RBRACE, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1024), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, - sym_dictionary_splat, - sym_pair, + STATE(1228), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33599,7 +31173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33607,7 +31181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33623,7 +31197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9442] = 21, + [9491] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -33646,16 +31220,16 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(886), 1, anon_sym_RBRACE, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1131), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, + STATE(1379), 2, sym_dictionary_splat, sym_pair, ACTIONS(301), 3, @@ -33673,7 +31247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33681,7 +31255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33697,11 +31271,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9537] = 21, + [9586] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + ACTIONS(772), 1, + anon_sym_STAR, + ACTIONS(774), 1, anon_sym_STAR_STAR, + STATE(683), 1, + sym_string, + STATE(710), 1, + sym_primary_expression, + STATE(1019), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + STATE(1212), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(381), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(974), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(795), 15, + 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, + [9681] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -33718,20 +31364,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(888), 1, - anon_sym_RBRACE, - STATE(600), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_COLON, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1073), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, - sym_dictionary_splat, - sym_pair, + STATE(1369), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33747,7 +31395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33755,7 +31403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33771,76 +31419,17 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9632] = 10, + [9776] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(890), 1, - anon_sym_for, - ACTIONS(892), 1, - anon_sym_with, - ACTIONS(894), 1, - anon_sym_def, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 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(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - 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(303), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [9705] = 21, - ACTIONS(3), 1, - sym_comment, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, anon_sym_LPAREN, + ACTIONS(283), 1, + anon_sym_STAR, ACTIONS(293), 1, anon_sym_LBRACK, ACTIONS(295), 1, @@ -33853,21 +31442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - ACTIONS(898), 1, - anon_sym_RBRACK, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1086), 1, + STATE(941), 1, sym_expression, - STATE(1398), 1, - sym_slice, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1052), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33883,7 +31469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33891,7 +31477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33907,7 +31493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9799] = 21, + [9871] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -33926,21 +31512,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(896), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, anon_sym_COLON, - ACTIONS(900), 1, - anon_sym_RBRACK, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1086), 1, + STATE(1025), 1, sym_expression, - STATE(1398), 1, - sym_slice, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1224), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33956,7 +31543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -33964,7 +31551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33980,9 +31567,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9893] = 21, + [9966] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -33999,21 +31588,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - ACTIONS(902), 1, - anon_sym_RBRACK, - STATE(600), 1, + ACTIONS(888), 1, + anon_sym_RBRACE, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1086), 1, + STATE(1131), 1, sym_expression, - STATE(1398), 1, - sym_slice, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34029,7 +31617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34037,7 +31625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34053,67 +31641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [9987] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(852), 1, - anon_sym_else, - ACTIONS(908), 1, - anon_sym_elif, - STATE(307), 1, - aux_sym_if_statement_repeat1, - STATE(420), 1, - sym_elif_clause, - STATE(577), 1, - sym_else_clause, - ACTIONS(906), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(904), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [10055] = 20, + [10061] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -34132,20 +31660,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(912), 1, + ACTIONS(732), 1, + anon_sym_STAR, + ACTIONS(866), 1, anon_sym_COLON, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1064), 1, + STATE(1047), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(910), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(1264), 2, + sym_list_splat, + sym_slice, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34161,7 +31691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34169,7 +31699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34185,9 +31715,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10147] = 21, + [10156] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -34204,21 +31736,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - ACTIONS(914), 1, - anon_sym_RBRACK, - STATE(600), 1, + ACTIONS(890), 1, + anon_sym_RBRACE, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1086), 1, + STATE(1131), 1, sym_expression, - STATE(1398), 1, - sym_slice, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34234,7 +31765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34242,7 +31773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34258,9 +31789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10241] = 21, + [10251] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -34277,21 +31810,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - ACTIONS(916), 1, - anon_sym_RBRACK, - STATE(600), 1, + ACTIONS(892), 1, + anon_sym_RBRACE, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1086), 1, + STATE(1131), 1, sym_expression, - STATE(1398), 1, - sym_slice, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34307,7 +31839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34315,7 +31847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34331,9 +31863,85 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10335] = 21, + [10346] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(894), 1, + anon_sym_RBRACE, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1131), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [10441] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -34351,20 +31959,230 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(315), 1, sym__string_start, ACTIONS(896), 1, + anon_sym_RBRACE, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1131), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [10536] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(898), 1, + anon_sym_RBRACE, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1131), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [10631] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(280), 1, + anon_sym_COMMA, + ACTIONS(287), 1, + anon_sym_COLON_EQ, + ACTIONS(900), 1, + anon_sym_for, + ACTIONS(902), 1, + anon_sym_with, + ACTIONS(904), 1, + anon_sym_def, + ACTIONS(289), 2, anon_sym_COLON, - ACTIONS(918), 1, - anon_sym_RBRACK, - STATE(600), 1, + anon_sym_EQ, + ACTIONS(307), 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(276), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + 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(303), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [10704] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(906), 1, + anon_sym_RBRACE, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1086), 1, + STATE(1131), 1, sym_expression, - STATE(1398), 1, - sym_slice, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34380,7 +32198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34388,7 +32206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34404,20 +32222,152 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10429] = 8, + [10799] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, - anon_sym_else, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, ACTIONS(908), 1, - anon_sym_elif, - STATE(307), 1, - aux_sym_if_statement_repeat1, - STATE(420), 1, - sym_elif_clause, - STATE(570), 1, - sym_else_clause, - ACTIONS(922), 12, + anon_sym_RBRACE, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1131), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [10894] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(280), 1, + anon_sym_COMMA, + ACTIONS(287), 1, + anon_sym_COLON_EQ, + ACTIONS(910), 1, + anon_sym_for, + ACTIONS(912), 1, + anon_sym_with, + ACTIONS(914), 1, + anon_sym_def, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(307), 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(276), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + 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(303), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [10967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(920), 1, + anon_sym_except, + STATE(268), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(918), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -34430,7 +32380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(920), 33, + ACTIONS(916), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34443,10 +32393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -34464,7 +32416,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10497] = 20, + [11029] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1131), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(1379), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [11121] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -34483,18 +32507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(926), 1, + ACTIONS(925), 1, anon_sym_COLON, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1083), 1, + STATE(1077), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(924), 2, + ACTIONS(923), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(301), 3, @@ -34512,7 +32536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -34520,7 +32544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34536,20 +32560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [10589] = 8, + [11213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, - anon_sym_else, - ACTIONS(908), 1, - anon_sym_elif, - STATE(258), 1, - aux_sym_if_statement_repeat1, - STATE(420), 1, - sym_elif_clause, - STATE(522), 1, - sym_else_clause, - ACTIONS(930), 12, + ACTIONS(931), 1, + anon_sym_except_STAR, + STATE(271), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(929), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -34562,7 +32581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(928), 33, + ACTIONS(927), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34575,10 +32594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -34596,15 +32617,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10657] = 5, + [11275] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(936), 1, - anon_sym_except, - STATE(266), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(934), 12, + ACTIONS(846), 1, + anon_sym_else, + ACTIONS(938), 1, + anon_sym_elif, + STATE(276), 1, + aux_sym_if_statement_repeat1, + STATE(453), 1, + sym_elif_clause, + STATE(560), 1, + sym_else_clause, + ACTIONS(936), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -34617,7 +32643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(932), 35, + ACTIONS(934), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34630,12 +32656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -34653,15 +32677,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10719] = 5, + [11343] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(943), 1, - anon_sym_except_STAR, - STATE(267), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(941), 12, + ACTIONS(846), 1, + anon_sym_else, + ACTIONS(938), 1, + anon_sym_elif, + STATE(302), 1, + aux_sym_if_statement_repeat1, + STATE(453), 1, + sym_elif_clause, + STATE(562), 1, + sym_else_clause, + ACTIONS(942), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -34674,7 +32703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(939), 35, + ACTIONS(940), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34687,12 +32716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -34710,20 +32737,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10781] = 8, + [11411] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, + ACTIONS(858), 1, anon_sym_else, - ACTIONS(950), 1, + ACTIONS(948), 1, anon_sym_elif, - STATE(276), 1, + STATE(313), 1, aux_sym_if_statement_repeat1, - STATE(433), 1, + STATE(481), 1, sym_elif_clause, - STATE(537), 1, + STATE(572), 1, sym_else_clause, - ACTIONS(946), 12, + ACTIONS(944), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -34736,7 +32763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(948), 33, + ACTIONS(946), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34770,145 +32797,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [10849] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - ACTIONS(952), 1, - anon_sym_RBRACK, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1086), 1, - sym_expression, - STATE(1398), 1, - sym_slice, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [10943] = 5, + [11479] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, - anon_sym_except_STAR, - STATE(270), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(941), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(939), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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(858), 1, anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - 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, - [11005] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(957), 1, - anon_sym_except, - STATE(271), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(934), 12, + ACTIONS(948), 1, + anon_sym_elif, + STATE(280), 1, + aux_sym_if_statement_repeat1, + STATE(481), 1, + sym_elif_clause, + STATE(537), 1, + sym_else_clause, + ACTIONS(950), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -34921,7 +32823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(932), 35, + ACTIONS(952), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -34934,12 +32836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -34957,20 +32857,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11067] = 8, + [11547] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_else, - ACTIONS(908), 1, + ACTIONS(938), 1, anon_sym_elif, - STATE(263), 1, + STATE(302), 1, aux_sym_if_statement_repeat1, - STATE(420), 1, + STATE(453), 1, sym_elif_clause, - STATE(529), 1, + STATE(521), 1, sym_else_clause, - ACTIONS(946), 12, + ACTIONS(944), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -34983,7 +32883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(948), 33, + ACTIONS(946), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35017,157 +32917,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11135] = 21, + [11615] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(280), 1, + anon_sym_COMMA, + ACTIONS(287), 1, + anon_sym_COLON_EQ, + ACTIONS(954), 1, sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - ACTIONS(960), 1, - anon_sym_RBRACK, - STATE(600), 1, + STATE(1306), 1, sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1086), 1, - sym_expression, - STATE(1398), 1, - sym_slice, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(307), 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(276), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [11229] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + 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(303), 16, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(293), 1, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - ACTIONS(962), 1, - anon_sym_RBRACK, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1086), 1, - sym_expression, - STATE(1398), 1, - sym_slice, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [11323] = 20, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [11685] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(274), 1, sym_identifier, ACTIONS(278), 1, @@ -35184,18 +32997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(958), 1, + anon_sym_COLON, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1145), 1, + STATE(1071), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(1384), 2, - sym_dictionary_splat, - sym_pair, + ACTIONS(956), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -35211,7 +33026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35219,7 +33034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35235,22 +33050,22 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11415] = 8, + [11777] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(846), 1, anon_sym_else, - ACTIONS(950), 1, + ACTIONS(938), 1, anon_sym_elif, - STATE(285), 1, + STATE(273), 1, aux_sym_if_statement_repeat1, - STATE(433), 1, + STATE(453), 1, sym_elif_clause, STATE(585), 1, sym_else_clause, - ACTIONS(922), 12, + ACTIONS(950), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35261,7 +33076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(920), 33, + ACTIONS(952), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35295,20 +33110,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11483] = 8, + [11845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, + ACTIONS(858), 1, anon_sym_else, - ACTIONS(950), 1, + ACTIONS(948), 1, anon_sym_elif, - STATE(285), 1, + STATE(313), 1, aux_sym_if_statement_repeat1, - STATE(433), 1, + STATE(481), 1, sym_elif_clause, - STATE(575), 1, + STATE(579), 1, sym_else_clause, - ACTIONS(906), 12, + ACTIONS(942), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -35321,7 +33136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(904), 33, + ACTIONS(940), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35355,81 +33170,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11551] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(964), 1, - sym__string_start, - STATE(1335), 1, - sym_string, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 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(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - 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(303), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [11621] = 8, + [11913] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, + ACTIONS(858), 1, anon_sym_else, - ACTIONS(950), 1, + ACTIONS(948), 1, anon_sym_elif, - STATE(277), 1, + STATE(274), 1, aux_sym_if_statement_repeat1, - STATE(433), 1, + STATE(481), 1, sym_elif_clause, - STATE(576), 1, + STATE(574), 1, sym_else_clause, - ACTIONS(930), 12, + ACTIONS(936), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -35442,7 +33196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(928), 33, + ACTIONS(934), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35476,80 +33230,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11689] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(600), 1, - sym_string, - STATE(643), 1, - sym_primary_expression, - STATE(962), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1018), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [11778] = 3, + [11981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 12, + ACTIONS(960), 1, + anon_sym_except, + STATE(282), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(918), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -35562,7 +33251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(968), 37, + ACTIONS(916), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35575,7 +33264,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_async, anon_sym_for, @@ -35584,7 +33272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -35600,10 +33287,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11835] = 3, + [12043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 12, + ACTIONS(963), 1, + anon_sym_except_STAR, + STATE(283), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(929), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -35616,7 +33308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(972), 37, + ACTIONS(927), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35629,7 +33321,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_async, anon_sym_for, @@ -35638,7 +33329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -35654,54 +33344,53 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11892] = 20, + [12105] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(974), 1, - anon_sym_LPAREN, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + ACTIONS(758), 1, + anon_sym_lambda, + STATE(607), 1, sym_string, - STATE(1050), 1, + STATE(621), 1, + sym_primary_expression, + STATE(962), 1, sym_expression, - STATE(1320), 1, - sym_with_item, - STATE(1422), 1, - sym_with_clause, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + STATE(1046), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35709,7 +33398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35725,123 +33414,288 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [11983] = 8, + [12194] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(976), 1, - sym_identifier, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(303), 10, - sym__newline, - anon_sym_DOT, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, + ACTIONS(572), 1, anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym__semicolon, - ACTIONS(307), 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(276), 21, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, + STATE(683), 1, + sym_string, + STATE(710), 1, + sym_primary_expression, + STATE(1064), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(966), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT, - anon_sym_GT, - anon_sym_is, - [12050] = 6, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(381), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(974), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(795), 15, + 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, + [12283] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 1, - anon_sym_elif, - STATE(285), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - ACTIONS(978), 12, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ts_builtin_sym_end, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, + sym_string, + STATE(710), 1, + sym_primary_expression, + STATE(1064), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(968), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(381), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(974), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(795), 15, + 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, + [12372] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(632), 1, anon_sym_LBRACK, + ACTIONS(634), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(970), 1, + anon_sym_LPAREN, + STATE(739), 1, + sym_string, + STATE(740), 1, + sym_primary_expression, + STATE(1026), 1, + sym_expression, + STATE(1237), 1, + sym_with_item, + STATE(1480), 1, + sym_with_clause, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(980), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(813), 15, + 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, + [12463] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, anon_sym_not, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(758), 1, anon_sym_lambda, - anon_sym_yield, + STATE(607), 1, + sym_string, + STATE(621), 1, + sym_primary_expression, + STATE(963), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(989), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [12113] = 19, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [12552] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -35860,16 +33714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(758), 1, anon_sym_lambda, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(962), 1, + STATE(959), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(979), 2, + STATE(1017), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(610), 3, @@ -35887,7 +33741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -35895,7 +33749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35911,12 +33765,83 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12202] = 3, + [12641] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 12, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(972), 1, + anon_sym_RPAREN, + STATE(739), 1, + sym_string, + STATE(740), 1, + sym_primary_expression, + STATE(1026), 1, + sym_expression, + STATE(1232), 1, + sym_with_item, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(813), 15, + 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, + [12732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35927,7 +33852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(987), 37, + ACTIONS(974), 37, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35965,12 +33890,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12259] = 3, + [12789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(991), 12, - sym__dedent, + ACTIONS(978), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35981,7 +33906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(989), 37, + ACTIONS(980), 37, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36019,38 +33944,38 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12316] = 19, + [12846] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, + ACTIONS(758), 1, + anon_sym_lambda, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1103), 1, + STATE(963), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(993), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, + STATE(999), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -36059,13 +33984,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36073,7 +33998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36089,7 +34014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12405] = 20, + [12935] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, @@ -36108,15 +34033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - ACTIONS(995), 1, + ACTIONS(982), 1, anon_sym_RPAREN, + STATE(739), 1, + sym_string, STATE(740), 1, sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1050), 1, + STATE(1026), 1, sym_expression, - STATE(1308), 1, + STATE(1232), 1, sym_with_item, ACTIONS(640), 2, sym_ellipsis, @@ -36136,7 +34061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36144,7 +34069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36160,108 +34085,54 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(966), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(968), 37, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - 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, - [12553] = 20, + [13026] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(274), 1, sym_identifier, - ACTIONS(632), 1, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(974), 1, - anon_sym_LPAREN, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + ACTIONS(732), 1, + anon_sym_STAR, + STATE(607), 1, sym_string, - STATE(1050), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1101), 1, sym_expression, - STATE(1320), 1, - sym_with_item, - STATE(1459), 1, - sym_with_clause, - ACTIONS(640), 2, + STATE(1382), 1, + sym_list_splat, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36269,7 +34140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36285,7 +34156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12644] = 19, + [13117] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -36304,16 +34175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1090), 1, + STATE(1117), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(984), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(301), 3, @@ -36331,7 +34202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36339,7 +34210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36355,53 +34226,112 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12733] = 19, + [13206] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(280), 1, + anon_sym_COMMA, + ACTIONS(287), 1, + anon_sym_COLON_EQ, + ACTIONS(986), 1, sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(303), 10, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(295), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SEMI, + ACTIONS(307), 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(276), 21, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT, + anon_sym_GT, + anon_sym_is, + [13273] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(600), 1, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(1091), 1, + STATE(1064), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(999), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, + ACTIONS(988), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36409,7 +34339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36425,53 +34355,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12822] = 19, + [13362] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(337), 1, - anon_sym_await, - ACTIONS(559), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(618), 1, + anon_sym_await, + ACTIONS(758), 1, + anon_sym_lambda, + STATE(607), 1, sym_string, - STATE(1066), 1, + STATE(621), 1, + sym_primary_expression, + STATE(963), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(1001), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + STATE(1045), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36479,7 +34409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36495,7 +34425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [12911] = 20, + [13451] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, @@ -36512,17 +34442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - ACTIONS(974), 1, + ACTIONS(970), 1, anon_sym_LPAREN, + STATE(739), 1, + sym_string, STATE(740), 1, sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1050), 1, + STATE(1026), 1, sym_expression, - STATE(1320), 1, + STATE(1237), 1, sym_with_item, - STATE(1474), 1, + STATE(1466), 1, sym_with_clause, ACTIONS(640), 2, sym_ellipsis, @@ -36542,7 +34472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36550,7 +34480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36566,53 +34496,53 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13002] = 19, + [13542] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(600), 1, + STATE(683), 1, sym_string, - STATE(643), 1, + STATE(710), 1, sym_primary_expression, - STATE(962), 1, + STATE(1064), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1013), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, + ACTIONS(990), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36620,7 +34550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36636,78 +34566,118 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13091] = 20, + [13631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(632), 1, + ACTIONS(996), 1, + anon_sym_elif, + STATE(302), 1, + aux_sym_if_statement_repeat1, + STATE(453), 1, + sym_elif_clause, + ACTIONS(994), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(992), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(644), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(646), 1, + sym_true, + sym_false, + sym_none, + [13694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(999), 12, sym__string_start, - ACTIONS(974), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1050), 1, - sym_expression, - STATE(1320), 1, - sym_with_item, - STATE(1451), 1, - sym_with_clause, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, + sym_ellipsis, + sym_float, + ACTIONS(1001), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(1015), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(811), 15, - 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, - [13182] = 20, + 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, + [13751] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -36726,19 +34696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1123), 1, sym_expression, - STATE(1294), 1, - sym_slice, ACTIONS(309), 2, sym_ellipsis, sym_float, + ACTIONS(1003), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -36754,7 +34723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36762,7 +34731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36778,53 +34747,161 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13273] = 19, + [13840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1007), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1005), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + 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, + [13897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 12, sym__string_start, - ACTIONS(331), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1005), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + 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(337), 1, anon_sym_await, - ACTIONS(559), 1, + sym_true, + sym_false, + sym_none, + [13954] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, sym_string, - STATE(1066), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1122), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(1003), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(1009), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36832,7 +34909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36848,7 +34925,61 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13362] = 20, + [14043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1011), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1013), 37, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + 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, + [14100] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -36867,19 +34998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1021), 1, + STATE(1105), 1, sym_expression, - STATE(1220), 1, - sym_slice, ACTIONS(309), 2, sym_ellipsis, sym_float, + ACTIONS(1015), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, @@ -36895,7 +35025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36903,7 +35033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36919,13 +35049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13453] = 20, + [14189] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, ACTIONS(632), 1, anon_sym_LBRACK, ACTIONS(634), 1, @@ -36938,16 +35066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - ACTIONS(1005), 1, - anon_sym_RPAREN, + ACTIONS(970), 1, + anon_sym_LPAREN, + STATE(739), 1, + sym_string, STATE(740), 1, sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1050), 1, + STATE(1026), 1, sym_expression, - STATE(1308), 1, + STATE(1237), 1, sym_with_item, + STATE(1458), 1, + sym_with_clause, ACTIONS(640), 2, sym_ellipsis, sym_float, @@ -36966,7 +35096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -36974,7 +35104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36990,150 +35120,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [13544] = 19, + [14280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, - anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, - sym_string, - STATE(1066), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(1007), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(333), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1009), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(797), 15, - 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, - [13633] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, - anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, - sym_string, - STATE(1066), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(1009), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(333), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1009), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(797), 15, - 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, - [13722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(991), 12, + ACTIONS(976), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -37146,7 +35136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(989), 37, + ACTIONS(974), 37, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37184,85 +35174,9 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [13779] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1119), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(1011), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [13868] = 6, + [14337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 1, - anon_sym_elif, - STATE(307), 1, - aux_sym_if_statement_repeat1, - STATE(420), 1, - sym_elif_clause, ACTIONS(978), 12, sym__dedent, sym__string_start, @@ -37276,7 +35190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(980), 34, + ACTIONS(980), 37, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37289,13 +35203,16 @@ 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_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37311,12 +35228,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [13931] = 3, + [14394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 12, - sym__dedent, + ACTIONS(1017), 1, + anon_sym_elif, + STATE(313), 1, + aux_sym_if_statement_repeat1, + STATE(481), 1, + sym_elif_clause, + ACTIONS(994), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37327,7 +35250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 37, + ACTIONS(992), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37340,16 +35263,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_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37365,151 +35285,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [13988] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(600), 1, - sym_string, - STATE(643), 1, - sym_primary_expression, - STATE(963), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1017), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [14077] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1040), 1, - sym_expression, - STATE(1258), 1, - sym_slice, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [14168] = 3, + [14457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 12, + ACTIONS(999), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -37522,7 +35301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(987), 37, + ACTIONS(1001), 37, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37560,82 +35339,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14225] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(618), 1, - anon_sym_await, - ACTIONS(758), 1, - anon_sym_lambda, - STATE(600), 1, - sym_string, - STATE(643), 1, - sym_primary_expression, - STATE(958), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(1033), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [14314] = 3, + [14514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 12, + ACTIONS(1011), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37646,7 +35355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 37, + ACTIONS(1013), 37, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37684,54 +35393,54 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14371] = 20, + [14571] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(622), 1, sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(644), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(646), 1, sym__string_start, - ACTIONS(896), 1, - anon_sym_COLON, - STATE(600), 1, + ACTIONS(970), 1, + anon_sym_LPAREN, + STATE(739), 1, sym_string, - STATE(630), 1, + STATE(740), 1, sym_primary_expression, - STATE(1086), 1, + STATE(1026), 1, sym_expression, - STATE(1398), 1, - sym_slice, - ACTIONS(309), 2, + STATE(1237), 1, + sym_with_item, + STATE(1441), 1, + sym_with_clause, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -37739,7 +35448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37755,12 +35464,65 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14462] = 3, + [14662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 12, - sym__dedent, + ACTIONS(828), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + 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(826), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + anon_sym_SEMI, + [14718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37771,7 +35533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(972), 37, + ACTIONS(1005), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37784,16 +35546,15 @@ 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_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -37809,14 +35570,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14519] = 3, + [14774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1022), 13, + ACTIONS(976), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -37826,7 +35586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1020), 35, + ACTIONS(974), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37844,6 +35604,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_match, @@ -37862,10 +35623,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14575] = 3, + [14830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1026), 12, + ACTIONS(1007), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -37878,7 +35639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1024), 36, + ACTIONS(1005), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37915,14 +35676,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14631] = 3, + [14886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1028), 13, + ACTIONS(978), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -37932,7 +35692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1030), 35, + ACTIONS(980), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37950,6 +35710,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_match, @@ -37968,12 +35729,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14687] = 3, + [14942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(991), 12, + ACTIONS(999), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37984,7 +35745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(989), 36, + ACTIONS(1001), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38021,10 +35782,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14743] = 3, + [14998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1032), 12, + ACTIONS(1020), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -38037,7 +35798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1034), 36, + ACTIONS(1022), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38074,7 +35835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [14799] = 19, + [15054] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -38093,13 +35854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1051), 1, sym_expression, - STATE(1483), 1, + STATE(1443), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -38119,7 +35880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -38127,7 +35888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38143,222 +35904,16 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [14887] = 19, + [15142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, + ACTIONS(976), 13, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1022), 1, - sym_expression, - STATE(1482), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [14975] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1022), 1, - sym_expression, - STATE(1480), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [15063] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1022), 1, - sym_expression, - STATE(1478), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [15151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_except_STAR, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_STAR_STAR, @@ -38366,7 +35921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1038), 36, + ACTIONS(974), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38384,7 +35939,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_match, @@ -38403,12 +35957,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15207] = 3, + [15198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 12, + ACTIONS(1028), 1, + anon_sym_case, + STATE(326), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1026), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -38419,7 +35978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(968), 36, + ACTIONS(1024), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38432,13 +35991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -38456,10 +36012,226 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15263] = 3, + [15258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(832), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + 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(830), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + anon_sym_SEMI, + [15314] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 1, + anon_sym_COLON_EQ, + ACTIONS(1040), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1033), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1042), 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(1031), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1036), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + 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, + [15378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(824), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + 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(822), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + anon_sym_SEMI, + [15434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(832), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + 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(830), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + anon_sym_SEMI, + [15490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1022), 13, + ACTIONS(978), 13, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -38473,7 +36245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1020), 35, + ACTIONS(980), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38509,13 +36281,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15319] = 3, + [15546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 12, + ACTIONS(1046), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -38525,7 +36298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1042), 36, + ACTIONS(1044), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38543,7 +36316,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_match, @@ -38562,10 +36334,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15375] = 3, + [15602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 13, + ACTIONS(1011), 13, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -38579,7 +36351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1046), 35, + ACTIONS(1013), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38615,37 +36387,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15431] = 7, + [15658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 1, - anon_sym_COMMA, - ACTIONS(1055), 1, - anon_sym_COLON_EQ, - ACTIONS(1057), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1059), 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(1053), 15, + ACTIONS(836), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_SLASH, anon_sym_PERCENT, @@ -38655,11 +36407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 16, + ACTIONS(834), 32, sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -38671,15 +36426,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [15495] = 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, + anon_sym_SEMI, + [15714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 13, + ACTIONS(976), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -38689,7 +36456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1063), 35, + ACTIONS(974), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38707,6 +36474,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_match, @@ -38725,13 +36493,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15551] = 3, + [15770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1026), 12, + ACTIONS(1007), 13, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -38741,7 +36510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1024), 36, + ACTIONS(1005), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38759,7 +36528,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_match, @@ -38778,10 +36546,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15607] = 3, + [15826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1065), 12, + ACTIONS(978), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -38794,7 +36562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1067), 36, + ACTIONS(980), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -38831,359 +36599,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [15663] = 7, + [15882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(280), 1, - anon_sym_COMMA, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(289), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(307), 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(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(1011), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - 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(303), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1013), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [15727] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1069), 1, - anon_sym_COLON, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1063), 1, - sym_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(626), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1015), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(811), 15, - 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, - [15815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(822), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym__semicolon, - [15871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(822), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym__semicolon, - [15927] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(568), 1, - anon_sym_COLON_EQ, - ACTIONS(570), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(565), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(572), 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(303), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(276), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - 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, - [15991] = 7, + [15938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 1, - anon_sym_COLON_EQ, - ACTIONS(1076), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1071), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1078), 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(1048), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1053), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - 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, - [16055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 12, + ACTIONS(999), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -39193,7 +36669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1082), 36, + ACTIONS(1001), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -39211,7 +36687,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_match, @@ -39230,246 +36705,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16111] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1022), 1, - sym_expression, - STATE(1485), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [16199] = 3, + [15994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(830), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym__semicolon, - [16255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(830), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym__semicolon, - [16311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(836), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(834), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym__semicolon, - [16367] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 1, - anon_sym_case, - STATE(349), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1086), 12, + ACTIONS(978), 13, sym__dedent, sym__string_start, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -39479,7 +36722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1084), 33, + ACTIONS(980), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -39492,10 +36735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -39513,84 +36758,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16427] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1022), 1, - sym_expression, - STATE(1428), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [16515] = 5, + [16050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, - anon_sym_case, - STATE(347), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1090), 12, + ACTIONS(999), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -39603,7 +36774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1092), 33, + ACTIONS(1001), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -39616,10 +36787,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -39637,87 +36811,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16575] = 19, + [16106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, - anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, - sym_string, - STATE(1082), 1, - sym_expression, - STATE(1263), 1, - sym_type, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(333), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1009), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(797), 15, - 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, - [16663] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - anon_sym_case, - STATE(349), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1090), 12, + ACTIONS(1007), 13, sym__dedent, sym__string_start, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -39727,7 +36828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1092), 33, + ACTIONS(1005), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -39740,10 +36841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -39761,7 +36864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16723] = 19, + [16162] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -39780,13 +36883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1051), 1, sym_expression, - STATE(1505), 1, + STATE(1487), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -39806,7 +36909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39814,7 +36917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39830,52 +36933,52 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16811] = 19, + [16250] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(274), 1, sym_identifier, - ACTIONS(624), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(1050), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1051), 1, sym_expression, - STATE(1308), 1, - sym_with_item, - ACTIONS(640), 2, + STATE(1434), 1, + sym_type, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -39883,7 +36986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39899,226 +37002,82 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [16899] = 3, + [16338] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - 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(826), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym__semicolon, - [16955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1080), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1082), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - 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(379), 1, sym_identifier, + ACTIONS(385), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [17011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(991), 13, - sym__dedent, - sym__string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(572), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + STATE(683), 1, + sym_string, + STATE(710), 1, + sym_primary_expression, + STATE(1069), 1, + sym_expression, + STATE(1217), 1, + sym_type, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(989), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - 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(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [17067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 13, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_except_STAR, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(972), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(381), 5, 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, anon_sym_match, - 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, - [17123] = 3, + STATE(974), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(795), 15, + 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, + [16426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 13, - sym__dedent, + ACTIONS(1011), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -40128,7 +37087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(968), 35, + ACTIONS(1013), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40146,6 +37105,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_match, @@ -40164,10 +37124,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17179] = 3, + [16482] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1051), 1, + sym_expression, + STATE(1489), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [16570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1065), 12, + ACTIONS(1020), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -40180,7 +37209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1067), 36, + ACTIONS(1022), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40217,10 +37246,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17235] = 3, + [16626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 13, + ACTIONS(976), 13, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -40234,7 +37263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 35, + ACTIONS(974), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40270,12 +37299,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17291] = 3, + [16682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(991), 13, + ACTIONS(1011), 13, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_except_STAR, anon_sym_DASH, @@ -40287,7 +37316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(989), 35, + ACTIONS(1013), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40323,10 +37352,68 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17347] = 3, + [16738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(828), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + 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(826), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + anon_sym_SEMI, + [16794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 12, + ACTIONS(1052), 1, + anon_sym_case, + STATE(326), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1050), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -40339,7 +37426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 36, + ACTIONS(1048), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40352,13 +37439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -40376,7 +37460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17403] = 19, + [16854] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -40395,13 +37479,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1051), 1, sym_expression, - STATE(1133), 1, + STATE(1310), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -40421,7 +37505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40429,7 +37513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40445,14 +37529,18 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17491] = 3, + [16942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 13, + ACTIONS(1054), 1, + anon_sym_case, + STATE(354), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1026), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -40462,7 +37550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 35, + ACTIONS(1024), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40475,12 +37563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -40498,14 +37584,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17547] = 3, + [17002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 13, + ACTIONS(1059), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -40515,7 +37600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1046), 35, + ACTIONS(1057), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40533,6 +37618,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_match, @@ -40551,86 +37637,54 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17603] = 19, + [17058] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, + ACTIONS(562), 1, + anon_sym_COLON_EQ, + ACTIONS(564), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(559), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(566), 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(303), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(293), 1, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, - sym_string, - STATE(630), 1, - sym_primary_expression, - STATE(1022), 1, - sym_expression, - STATE(1270), 1, - sym_type, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(285), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [17691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 16, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(276), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_SLASH, anon_sym_PERCENT, @@ -40640,46 +37694,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(838), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, + [17122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1063), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1061), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - 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, - sym__semicolon, - [17747] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 12, + ACTIONS(1067), 13, sym__dedent, sym__string_start, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -40689,7 +37764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1042), 36, + ACTIONS(1065), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40707,7 +37782,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_match, @@ -40726,14 +37800,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17803] = 3, + [17234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 13, + ACTIONS(1059), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -40743,7 +37816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(987), 35, + ACTIONS(1057), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40761,6 +37834,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_match, @@ -40779,7 +37853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17859] = 19, + [17290] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -40798,13 +37872,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1051), 1, sym_expression, - STATE(1491), 1, + STATE(1192), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [17378] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1051), 1, + sym_expression, + STATE(1436), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [17466] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1051), 1, + sym_expression, + STATE(1485), 1, sym_type, ACTIONS(309), 2, sym_ellipsis, @@ -40824,7 +38036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -40832,7 +38044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40848,10 +38060,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [17947] = 3, + [17554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 12, + ACTIONS(1063), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -40864,7 +38076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 36, + ACTIONS(1061), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40901,13 +38113,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18003] = 3, + [17610] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1051), 1, + sym_expression, + STATE(1490), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [17698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 12, - sym__dedent, + ACTIONS(1067), 13, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -40917,7 +38199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(968), 36, + ACTIONS(1065), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40935,7 +38217,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_match, @@ -40954,14 +38235,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18059] = 3, + [17754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 13, + ACTIONS(1071), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -40971,7 +38251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(972), 35, + ACTIONS(1069), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40989,6 +38269,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_match, @@ -41007,10 +38288,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18115] = 3, + [17810] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1076), 1, + anon_sym_COLON_EQ, + ACTIONS(1078), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1080), 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(1036), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + 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(1031), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [17874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1028), 13, + ACTIONS(1084), 13, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -41024,7 +38362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1030), 35, + ACTIONS(1082), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41060,12 +38398,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18171] = 3, + [17930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1032), 12, - sym__dedent, + ACTIONS(1071), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -41076,7 +38414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1034), 36, + ACTIONS(1069), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41113,12 +38451,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18227] = 3, + [17986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 13, - sym__dedent, + ACTIONS(1084), 13, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_except_STAR, anon_sym_DASH, @@ -41130,7 +38468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(987), 35, + ACTIONS(1082), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41166,10 +38504,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18283] = 3, + [18042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(840), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + 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(838), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + 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, + anon_sym_SEMI, + [18098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 12, + ACTIONS(1086), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -41182,7 +38573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(987), 36, + ACTIONS(1088), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41219,10 +38610,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18339] = 3, + [18154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(966), 13, + ACTIONS(1046), 13, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -41236,7 +38627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(968), 35, + ACTIONS(1044), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41272,10 +38663,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18395] = 3, + [18210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 12, + ACTIONS(1086), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -41288,7 +38679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1038), 36, + ACTIONS(1088), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41325,13 +38716,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18451] = 3, + [18266] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 12, - sym__dedent, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, + sym_string, + STATE(740), 1, + sym_primary_expression, + STATE(1026), 1, + sym_expression, + STATE(1232), 1, + sym_with_item, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(813), 15, + 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, + [18354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(999), 13, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -41341,7 +38802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(987), 36, + ACTIONS(1001), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41359,7 +38820,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_match, @@ -41378,12 +38838,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18507] = 3, + [18410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 12, - sym__dedent, + ACTIONS(1090), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -41394,7 +38854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(972), 36, + ACTIONS(1092), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41431,17 +38891,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18563] = 5, + [18466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1100), 1, - anon_sym_case, - STATE(347), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1086), 12, + ACTIONS(1090), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -41452,7 +38907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1084), 33, + ACTIONS(1092), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41465,10 +38920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -41486,13 +38944,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18623] = 3, + [18522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(991), 12, + ACTIONS(1096), 13, sym__dedent, sym__string_start, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -41502,7 +38961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(989), 36, + ACTIONS(1094), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41520,7 +38979,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_match, @@ -41539,13 +38997,152 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18679] = 3, + [18578] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(1051), 1, + sym_expression, + STATE(1442), 1, + sym_type, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [18666] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1098), 1, + anon_sym_COLON, + STATE(739), 1, + sym_string, + STATE(740), 1, + sym_primary_expression, + STATE(1082), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(813), 15, + 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, + [18754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(970), 12, + ACTIONS(1096), 13, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -41555,7 +39152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(972), 36, + ACTIONS(1094), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41573,7 +39170,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_match, @@ -41592,7 +39188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18735] = 19, + [18810] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, @@ -41611,13 +39207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, - ACTIONS(1102), 1, + ACTIONS(1100), 1, anon_sym_COLON, + STATE(739), 1, + sym_string, STATE(740), 1, sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1081), 1, + STATE(1061), 1, sym_expression, ACTIONS(640), 2, sym_ellipsis, @@ -41637,7 +39233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41645,7 +39241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41661,14 +39257,18 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18823] = 3, + [18898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 13, - sym__dedent, + ACTIONS(1102), 1, + anon_sym_case, + STATE(354), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1050), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_except_STAR, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, @@ -41678,7 +39278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1063), 35, + ACTIONS(1048), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41691,12 +39291,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, + [18958] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(280), 1, + anon_sym_COMMA, + ACTIONS(287), 1, + anon_sym_COLON_EQ, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(307), 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(276), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + 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(303), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [19022] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(850), 1, anon_sym_finally, + STATE(501), 1, + sym_finally_clause, + ACTIONS(1106), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1104), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, anon_sym_with, anon_sym_match, anon_sym_def, @@ -41714,7 +39423,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18879] = 18, + [19081] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(313), 1, + anon_sym_await, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, + sym_string, + STATE(630), 1, + sym_primary_expression, + STATE(922), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(285), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [19166] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -41725,19 +39501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(980), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1040), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -41751,13 +39527,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41765,7 +39541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41781,7 +39557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [18964] = 18, + [19251] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -41800,11 +39576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1186), 1, + STATE(1144), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -41824,7 +39600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -41832,7 +39608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41848,113 +39624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(545), 1, - sym_else_clause, - ACTIONS(1104), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1106), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [19108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1108), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1110), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [19163] = 18, + [19336] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -41973,11 +39643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(919), 1, + STATE(1155), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -41997,7 +39667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42005,7 +39675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42021,7 +39691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19248] = 18, + [19421] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -42040,11 +39710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(618), 1, anon_sym_await, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(621), 1, sym_primary_expression, - STATE(994), 1, + STATE(918), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -42064,7 +39734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42072,7 +39742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42088,50 +39758,105 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19333] = 18, + [19506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, + ACTIONS(1040), 1, + anon_sym_EQ, + ACTIONS(1033), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1031), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1042), 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(1036), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + 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, + [19567] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(600), 1, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(643), 1, + STATE(740), 1, sym_primary_expression, - STATE(904), 1, + STATE(1107), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42139,7 +39864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42155,50 +39880,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19418] = 18, + [19652] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(274), 1, sym_identifier, - ACTIONS(624), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(1028), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1150), 1, sym_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42206,7 +39931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42222,53 +39947,104 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19503] = 19, + [19737] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(862), 1, + anon_sym_finally, + STATE(555), 1, + sym_finally_clause, + ACTIONS(1108), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(293), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1110), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(315), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [19796] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(1112), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(1116), 1, + ACTIONS(385), 1, anon_sym_await, - STATE(600), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(948), 1, + STATE(1078), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(449), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42276,9 +40052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 13, + STATE(795), 15, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -42290,7 +40068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19590] = 18, + [19881] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -42301,19 +40079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(1044), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1006), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -42327,13 +40105,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42341,7 +40119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42357,50 +40135,105 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19675] = 18, + [19966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, + ACTIONS(1112), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(632), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1114), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(644), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(646), 1, + sym_true, + sym_false, + sym_none, + [20021] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + anon_sym_not, + ACTIONS(305), 1, + anon_sym_lambda, + ACTIONS(315), 1, sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + ACTIONS(1116), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_await, + STATE(607), 1, sym_string, - STATE(1029), 1, + STATE(630), 1, + sym_primary_expression, + STATE(943), 1, sym_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + STATE(392), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(1118), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42408,11 +40241,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -42424,7 +40255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19760] = 18, + [20108] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, @@ -42443,11 +40274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(646), 1, sym__string_start, + STATE(739), 1, + sym_string, STATE(740), 1, sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1030), 1, + STATE(1057), 1, sym_expression, ACTIONS(640), 2, sym_ellipsis, @@ -42467,7 +40298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42475,7 +40306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42491,50 +40322,171 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19845] = 18, + [20193] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, sym_identifier, - ACTIONS(624), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(607), 1, + sym_string, + STATE(621), 1, + sym_primary_expression, + STATE(1008), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [20278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + STATE(500), 1, + sym_else_clause, + ACTIONS(1122), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1124), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, + [20337] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, + ACTIONS(81), 1, sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(1032), 1, + STATE(710), 1, + sym_primary_expression, + STATE(972), 1, sym_expression, - ACTIONS(640), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42542,7 +40494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42558,35 +40510,35 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [19930] = 18, + [20422] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1134), 1, + STATE(925), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -42595,13 +40547,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42609,7 +40561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42625,7 +40577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20015] = 18, + [20507] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -42644,11 +40596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1135), 1, + STATE(949), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -42668,7 +40620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42676,7 +40628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42692,35 +40644,35 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20100] = 18, + [20592] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1151), 1, + STATE(908), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -42729,13 +40681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42743,7 +40695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42759,104 +40711,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20185] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(500), 1, - sym_else_clause, - ACTIONS(1118), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1120), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [20244] = 18, + [20677] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(274), 1, sym_identifier, - ACTIONS(624), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(1104), 1, + STATE(630), 1, + sym_primary_expression, + STATE(943), 1, sym_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42864,7 +40762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42880,87 +40778,35 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20329] = 3, + [20762] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1124), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1122), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [20384] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1153), 1, + STATE(916), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -42969,13 +40815,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -42983,7 +40829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42999,50 +40845,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20469] = 18, + [20847] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, sym_identifier, - ACTIONS(624), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(1035), 1, + STATE(621), 1, + sym_primary_expression, + STATE(917), 1, sym_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43050,7 +40896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43066,7 +40912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20554] = 18, + [20932] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -43085,11 +40931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(947), 1, + STATE(938), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -43109,7 +40955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43117,7 +40963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43133,113 +40979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1124), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1122), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [20694] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(519), 1, - sym_else_clause, - ACTIONS(1126), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1128), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [20753] = 18, + [21017] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -43258,11 +40998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(916), 1, + STATE(939), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -43282,7 +41022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43290,7 +41030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43306,50 +41046,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20838] = 18, + [21102] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(337), 1, - anon_sym_await, - ACTIONS(559), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(607), 1, sym_string, - STATE(1000), 1, + STATE(621), 1, + sym_primary_expression, + STATE(1048), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43357,7 +41097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43373,7 +41113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [20923] = 18, + [21187] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43384,19 +41124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(1001), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1108), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43410,13 +41150,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43424,7 +41164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43440,50 +41180,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21008] = 18, + [21272] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(600), 1, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(1136), 1, + STATE(1041), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43491,7 +41231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43507,70 +41247,16 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21093] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(856), 1, - anon_sym_finally, - STATE(591), 1, - sym_finally_clause, - ACTIONS(1132), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1130), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [21152] = 5, + [21357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, + ACTIONS(858), 1, anon_sym_else, - STATE(593), 1, + STATE(525), 1, sym_else_clause, ACTIONS(1126), 12, - sym__dedent, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -43615,50 +41301,50 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [21211] = 18, + [21416] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(622), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(644), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(646), 1, sym__string_start, - STATE(600), 1, + STATE(739), 1, sym_string, - STATE(630), 1, + STATE(740), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1130), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43666,7 +41352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43682,50 +41368,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21296] = 18, + [21501] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(274), 1, sym_identifier, - ACTIONS(624), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(1123), 1, + STATE(630), 1, + sym_primary_expression, + STATE(937), 1, sym_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43733,7 +41419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43749,50 +41435,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21381] = 18, + [21586] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, sym_string, - STATE(1156), 1, + STATE(630), 1, + sym_primary_expression, + STATE(935), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43800,7 +41486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43816,16 +41502,12 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21466] = 5, + [21671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, - anon_sym_else, - STATE(510), 1, - sym_else_clause, - ACTIONS(1104), 12, - sym__dedent, + ACTIONS(1130), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -43836,7 +41518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1106), 33, + ACTIONS(1132), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43849,6 +41531,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_async, anon_sym_for, anon_sym_while, @@ -43870,7 +41554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [21525] = 18, + [21726] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43881,19 +41565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(967), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1049), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43907,13 +41591,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -43921,7 +41605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43937,64 +41621,16 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21610] = 3, + [21811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1136), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1134), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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, + ACTIONS(858), 1, anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [21665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1108), 12, - sym__dedent, + STATE(503), 1, + sym_else_clause, + ACTIONS(1134), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44005,7 +41641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1110), 35, + ACTIONS(1136), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44018,8 +41654,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_async, anon_sym_for, anon_sym_while, @@ -44041,7 +41675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [21720] = 18, + [21870] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -44052,19 +41686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(974), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1190), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -44078,13 +41712,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44092,7 +41726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44108,7 +41742,62 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21805] = 18, + [21955] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1140), 1, + anon_sym_COMMA, + ACTIONS(1147), 1, + anon_sym_EQ, + ACTIONS(1145), 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(1143), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + 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(1138), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [22016] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -44127,11 +41816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1140), 1, + STATE(901), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44151,7 +41840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44159,7 +41848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44175,7 +41864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [21890] = 18, + [22101] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -44194,11 +41883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1141), 1, + STATE(924), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44218,74 +41907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [21975] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, - anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, - sym_string, - STATE(1094), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(333), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44293,7 +41915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44309,7 +41931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22060] = 18, + [22186] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -44328,11 +41950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1149), 1, + STATE(1159), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44352,7 +41974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44360,7 +41982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44376,68 +41998,14 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22145] = 5, + [22271] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(846), 1, anon_sym_else, - STATE(511), 1, - sym_else_clause, - ACTIONS(1138), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1140), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [22204] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(852), 1, - anon_sym_else, - STATE(539), 1, + STATE(559), 1, sym_else_clause, - ACTIONS(1138), 12, + ACTIONS(1151), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -44450,7 +42018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1140), 33, + ACTIONS(1149), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44484,35 +42052,35 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22263] = 18, + [22330] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(614), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(616), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(618), 1, anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(630), 1, + STATE(621), 1, sym_primary_expression, - STATE(1152), 1, + STATE(919), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -44521,13 +42089,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44535,7 +42103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44551,222 +42119,74 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22348] = 5, + [22415] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(503), 1, - sym_else_clause, - ACTIONS(1142), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1144), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [22407] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1050), 1, - anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_EQ, - ACTIONS(1059), 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(1053), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - 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(1048), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [22468] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(852), 1, - anon_sym_else, - STATE(551), 1, - sym_else_clause, - ACTIONS(1142), 12, - sym__dedent, + ACTIONS(81), 1, sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1144), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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(379), 1, sym_identifier, + ACTIONS(385), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [22527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(568), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(572), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1134), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, + STATE(683), 1, + sym_string, + STATE(710), 1, + sym_primary_expression, + STATE(1110), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [22582] = 18, + ACTIONS(381), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(974), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(795), 15, + 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, + [22500] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -44785,11 +42205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1098), 1, + STATE(1157), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44809,7 +42229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44817,7 +42237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44833,7 +42253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22667] = 18, + [22585] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -44844,19 +42264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(1121), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1102), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -44870,13 +42290,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44884,7 +42304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44900,7 +42320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22752] = 18, + [22670] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -44919,11 +42339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(908), 1, + STATE(1154), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -44943,7 +42363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -44951,7 +42371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44967,50 +42387,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22837] = 18, + [22755] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, sym_string, - STATE(1007), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1099), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45018,7 +42438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45034,7 +42454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [22922] = 18, + [22840] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -45053,11 +42473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1083), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45077,7 +42497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45085,7 +42505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45101,50 +42521,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23007] = 18, + [22925] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(600), 1, + STATE(683), 1, sym_string, - STATE(643), 1, + STATE(710), 1, sym_primary_expression, - STATE(928), 1, + STATE(1013), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45152,7 +42572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45168,14 +42588,14 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23092] = 5, + [23010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(850), 1, - anon_sym_finally, - STATE(518), 1, - sym_finally_clause, - ACTIONS(1132), 12, + ACTIONS(858), 1, + anon_sym_else, + STATE(532), 1, + sym_else_clause, + ACTIONS(1151), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45188,7 +42608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1130), 33, + ACTIONS(1149), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45222,105 +42642,50 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [23151] = 6, + [23069] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 1, - anon_sym_COMMA, - ACTIONS(1155), 1, - anon_sym_EQ, - ACTIONS(1153), 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(1151), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - 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(1146), 16, - sym__newline, - anon_sym_DOT, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(293), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [23212] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, sym_string, - STATE(1054), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1168), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45328,7 +42693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45344,184 +42709,158 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23297] = 18, + [23154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, + ACTIONS(858), 1, + anon_sym_else, + STATE(545), 1, + sym_else_clause, + ACTIONS(1153), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(632), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(636), 1, - anon_sym_not, - ACTIONS(638), 1, - anon_sym_lambda, - ACTIONS(644), 1, - anon_sym_await, - ACTIONS(646), 1, - sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1025), 1, - sym_expression, - ACTIONS(640), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(630), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(626), 5, + ACTIONS(1155), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(1015), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(811), 15, - 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, - [23382] = 18, + 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, + [23213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(846), 1, + anon_sym_else, + STATE(548), 1, + sym_else_clause, + ACTIONS(1153), 12, + sym__dedent, sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(600), 1, - sym_string, - STATE(643), 1, - sym_primary_expression, - STATE(912), 1, - sym_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(606), 5, + sym_ellipsis, + sym_float, + ACTIONS(1155), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(900), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(642), 15, - 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, - [23467] = 18, + 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, + [23272] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, + ACTIONS(274), 1, sym_identifier, - ACTIONS(624), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(638), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(644), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(1051), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1197), 1, sym_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(626), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1015), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45529,7 +42868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45545,7 +42884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23552] = 18, + [23357] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -45564,11 +42903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(920), 1, + STATE(1164), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45588,7 +42927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45596,7 +42935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45612,50 +42951,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23637] = 18, + [23442] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(600), 1, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(939), 1, + STATE(973), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45663,7 +43002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45679,7 +43018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23722] = 18, + [23527] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -45690,19 +43029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(992), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1042), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -45716,13 +43055,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45730,7 +43069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45746,31 +43085,14 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23807] = 6, + [23612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 1, - anon_sym_EQ, - ACTIONS(1071), 3, - anon_sym_RPAREN, + ACTIONS(1073), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1048), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1078), 14, + ACTIONS(1078), 1, + anon_sym_EQ, + ACTIONS(1080), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -45785,7 +43107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1053), 15, + ACTIONS(1036), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -45801,50 +43123,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - [23868] = 18, + ACTIONS(1031), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [23673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, + ACTIONS(846), 1, + anon_sym_else, + STATE(573), 1, + sym_else_clause, + ACTIONS(1122), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(293), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1124), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, + [23732] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(600), 1, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(1126), 1, + STATE(1066), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45852,7 +43245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45868,7 +43261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [23953] = 18, + [23817] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -45887,11 +43280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1127), 1, + STATE(1206), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -45911,7 +43304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45919,7 +43312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45935,50 +43328,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24038] = 18, + [23902] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(600), 1, + STATE(683), 1, sym_string, - STATE(643), 1, + STATE(710), 1, sym_primary_expression, - STATE(914), 1, + STATE(965), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -45986,7 +43379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46002,50 +43395,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24123] = 18, + [23987] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(602), 1, sym_identifier, - ACTIONS(337), 1, - anon_sym_await, - ACTIONS(559), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(607), 1, sym_string, - STATE(1078), 1, + STATE(621), 1, + sym_primary_expression, + STATE(931), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(606), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46053,7 +43446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46069,89 +43462,35 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24208] = 5, + [24072] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(856), 1, - anon_sym_finally, - STATE(564), 1, - sym_finally_clause, - ACTIONS(1159), 12, - sym__dedent, - sym__string_start, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(293), 1, anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1157), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(299), 1, anon_sym_not, + ACTIONS(305), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(313), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [24267] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(927), 1, + STATE(1126), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46160,13 +43499,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46174,7 +43513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46190,7 +43529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24352] = 18, + [24157] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -46209,11 +43548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(926), 1, + STATE(1127), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -46233,7 +43572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46241,7 +43580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46257,35 +43596,35 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24437] = 18, + [24242] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, + ACTIONS(274), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(313), 1, anon_sym_await, - STATE(600), 1, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, sym_string, - STATE(643), 1, + STATE(630), 1, sym_primary_expression, - STATE(922), 1, + STATE(1166), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -46294,13 +43633,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46308,7 +43647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46324,74 +43663,221 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24522] = 18, + [24327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(622), 1, - sym_identifier, - ACTIONS(624), 1, + ACTIONS(1159), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(632), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(636), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1157), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(644), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(646), 1, + sym_true, + sym_false, + sym_none, + [24382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(846), 1, + anon_sym_else, + STATE(546), 1, + sym_else_clause, + ACTIONS(1134), 12, + sym__dedent, sym__string_start, - STATE(740), 1, - sym_primary_expression, - STATE(742), 1, - sym_string, - STATE(1027), 1, - sym_expression, - ACTIONS(640), 2, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(1136), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, + [24441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(850), 1, + anon_sym_finally, + STATE(541), 1, + sym_finally_clause, + ACTIONS(1108), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(642), 4, + sym_ellipsis, + sym_float, + ACTIONS(1110), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, - ACTIONS(626), 5, + [24500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(862), 1, + anon_sym_finally, + STATE(565), 1, + sym_finally_clause, + ACTIONS(1106), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1104), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(1015), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(811), 15, - 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, - [24607] = 18, + 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, + [24559] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -46410,11 +43896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1148), 1, + STATE(1139), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -46434,7 +43920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46442,7 +43928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46458,50 +43944,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24692] = 18, + [24644] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(600), 1, + ACTIONS(379), 1, + sym_identifier, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(948), 1, + STATE(988), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46509,7 +43995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46525,7 +44011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24777] = 18, + [24729] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -46536,19 +44022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(1113), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1016), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -46562,13 +44048,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46576,7 +44062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46592,50 +44078,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24862] = 18, + [24814] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, sym_string, - STATE(1026), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1142), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46643,7 +44129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46659,50 +44145,104 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [24947] = 18, + [24899] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_else, + STATE(568), 1, + sym_else_clause, + ACTIONS(1161), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1163), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, + [24958] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(622), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(644), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(646), 1, sym__string_start, - STATE(600), 1, + STATE(739), 1, sym_string, - STATE(630), 1, + STATE(740), 1, sym_primary_expression, - STATE(924), 1, + STATE(1027), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46710,7 +44250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46726,14 +44266,10 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25032] = 5, + [25043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, - anon_sym_else, - STATE(567), 1, - sym_else_clause, - ACTIONS(1163), 12, + ACTIONS(1112), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46746,7 +44282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1161), 33, + ACTIONS(1114), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46759,6 +44295,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_async, anon_sym_for, anon_sym_while, @@ -46780,50 +44318,50 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25091] = 18, + [25098] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, + ACTIONS(622), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(600), 1, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(643), 1, + STATE(740), 1, sym_primary_expression, - STATE(923), 1, + STATE(1028), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46831,7 +44369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46847,50 +44385,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25176] = 18, + [25183] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, + ACTIONS(644), 1, anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(1105), 1, + STATE(740), 1, + sym_primary_expression, + STATE(1029), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -46898,7 +44436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46914,104 +44452,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25261] = 5, + [25268] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(850), 1, - anon_sym_finally, - STATE(559), 1, - sym_finally_clause, - ACTIONS(1159), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1157), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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(379), 1, sym_identifier, + ACTIONS(385), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [25320] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 1, - sym_identifier, - ACTIONS(278), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - anon_sym_not, - ACTIONS(305), 1, - anon_sym_lambda, - ACTIONS(313), 1, - anon_sym_await, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, + STATE(683), 1, sym_string, - STATE(630), 1, + STATE(710), 1, sym_primary_expression, - STATE(1157), 1, + STATE(1098), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47019,7 +44503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47035,7 +44519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25405] = 18, + [25353] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -47046,19 +44530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(1048), 1, + STATE(710), 1, + sym_primary_expression, + STATE(975), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -47072,13 +44556,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47086,7 +44570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47102,50 +44586,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25490] = 18, + [25438] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 1, + ACTIONS(622), 1, sym_identifier, - ACTIONS(278), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(634), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(305), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(313), 1, + ACTIONS(644), 1, anon_sym_await, - ACTIONS(315), 1, + ACTIONS(646), 1, sym__string_start, - STATE(600), 1, + STATE(739), 1, sym_string, - STATE(630), 1, + STATE(740), 1, sym_primary_expression, - STATE(904), 1, + STATE(1031), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(285), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47153,7 +44637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47169,7 +44653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25575] = 18, + [25523] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -47188,11 +44672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1158), 1, + STATE(1199), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -47212,7 +44696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47220,7 +44704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47236,104 +44720,172 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25660] = 5, + [25608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, - anon_sym_else, - STATE(569), 1, - sym_else_clause, - ACTIONS(1163), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_COMMA, + ACTIONS(1174), 1, + anon_sym_EQ, + ACTIONS(1172), 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(1170), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1161), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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(1165), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [25669] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, sym_identifier, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, + sym_string, + STATE(740), 1, + sym_primary_expression, + STATE(1032), 1, + sym_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 4, + sym_integer, sym_true, sym_false, sym_none, - [25719] = 18, + ACTIONS(626), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1053), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(813), 15, + 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, + [25754] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(602), 1, + ACTIONS(622), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - ACTIONS(614), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, anon_sym_not, - ACTIONS(616), 1, + ACTIONS(638), 1, anon_sym_lambda, - ACTIONS(618), 1, + ACTIONS(644), 1, anon_sym_await, - STATE(600), 1, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(643), 1, + STATE(740), 1, sym_primary_expression, - STATE(1039), 1, + STATE(1033), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47341,7 +44893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47357,7 +44909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25804] = 18, + [25839] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -47376,11 +44928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1065), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -47400,7 +44952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47408,7 +44960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47424,62 +44976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [25889] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1167), 1, - anon_sym_COMMA, - ACTIONS(1174), 1, - anon_sym_EQ, - ACTIONS(1172), 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(1170), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - 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(1165), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [25950] = 18, + [25924] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -47498,11 +44995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(921), 1, + STATE(952), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -47522,7 +45019,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(622), 15, + 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, + [26009] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(602), 1, + sym_identifier, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(614), 1, + anon_sym_not, + ACTIONS(616), 1, + anon_sym_lambda, + ACTIONS(618), 1, + anon_sym_await, + STATE(607), 1, + sym_string, + STATE(621), 1, + sym_primary_expression, + STATE(901), 1, + sym_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(606), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47530,7 +45094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47546,50 +45110,104 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26035] = 18, + [26094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(846), 1, + anon_sym_else, + STATE(517), 1, + sym_else_clause, + ACTIONS(1161), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1163), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, - sym__string_start, - ACTIONS(331), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(337), 1, anon_sym_await, - ACTIONS(559), 1, + sym_true, + sym_false, + sym_none, + [26153] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(622), 1, + sym_identifier, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(636), 1, + anon_sym_not, + ACTIONS(638), 1, + anon_sym_lambda, + ACTIONS(644), 1, + anon_sym_await, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(1122), 1, + STATE(740), 1, + sym_primary_expression, + STATE(1034), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(642), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(626), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(1053), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47597,7 +45215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47613,14 +45231,14 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26120] = 5, + [26238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_else, - STATE(525), 1, + STATE(513), 1, sym_else_clause, - ACTIONS(1118), 12, + ACTIONS(1126), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -47633,7 +45251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1120), 33, + ACTIONS(1128), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47667,7 +45285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26179] = 18, + [26297] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -47686,11 +45304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1084), 1, + STATE(915), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -47710,7 +45328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47718,7 +45336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47734,7 +45352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26264] = 18, + [26382] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -47745,19 +45363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(331), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(337), 1, + ACTIONS(385), 1, anon_sym_await, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(1065), 1, + STATE(710), 1, + sym_primary_expression, + STATE(1124), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -47771,13 +45389,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47785,7 +45403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47801,117 +45419,154 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26349] = 18, + [26467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(1159), 12, sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, - anon_sym_await, - ACTIONS(559), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, - sym_string, - STATE(997), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(77), 4, + sym_ellipsis, + sym_float, + ACTIONS(1157), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, - ACTIONS(333), 5, + [26522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1130), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1132), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(1009), 7, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_await, - STATE(797), 15, - 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, - [26434] = 18, + 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, + [26577] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(602), 1, + ACTIONS(379), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(385), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(614), 1, - anon_sym_not, - ACTIONS(616), 1, - anon_sym_lambda, - ACTIONS(618), 1, - anon_sym_await, - STATE(600), 1, + STATE(683), 1, sym_string, - STATE(643), 1, + STATE(710), 1, sym_primary_expression, - STATE(909), 1, + STATE(1064), 1, sym_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(606), 5, + ACTIONS(381), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(974), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47919,7 +45574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47935,50 +45590,50 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26519] = 18, + [26662] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(274), 1, + sym_identifier, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(305), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(331), 1, - sym_identifier, - ACTIONS(337), 1, + ACTIONS(313), 1, anon_sym_await, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_primary_expression, - STATE(713), 1, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, sym_string, - STATE(1066), 1, + STATE(630), 1, + sym_primary_expression, + STATE(1151), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(311), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(333), 5, + ACTIONS(285), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1009), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -47986,7 +45641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48002,7 +45657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26604] = 18, + [26747] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(274), 1, @@ -48021,11 +45676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, STATE(630), 1, sym_primary_expression, - STATE(1159), 1, + STATE(1075), 1, sym_expression, ACTIONS(309), 2, sym_ellipsis, @@ -48045,7 +45700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(900), 7, + STATE(905), 7, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -48053,7 +45708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48069,7 +45724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [26689] = 3, + [26832] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1178), 12, @@ -48120,12 +45775,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26743] = 3, + [26886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 12, + ACTIONS(1182), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48136,7 +45791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1176), 34, + ACTIONS(1180), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48153,9 +45808,9 @@ 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_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -48171,10 +45826,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26797] = 3, + [26940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 12, + ACTIONS(1186), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48187,7 +45842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1180), 34, + ACTIONS(1184), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48222,10 +45877,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26851] = 3, + [26994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 12, + ACTIONS(1178), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48238,7 +45893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1186), 34, + ACTIONS(1176), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48255,9 +45910,9 @@ 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -48273,7 +45928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26905] = 3, + [27048] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1190), 12, @@ -48324,10 +45979,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26959] = 3, + [27102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 12, + ACTIONS(1190), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48340,7 +45995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1180), 34, + ACTIONS(1188), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48357,9 +46012,9 @@ 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_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -48375,12 +46030,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27013] = 3, + [27156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 12, - sym__dedent, + ACTIONS(1192), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48391,7 +46046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1192), 34, + ACTIONS(1194), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48426,7 +46081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27067] = 3, + [27210] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1198), 12, @@ -48477,10 +46132,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27121] = 3, + [27264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 12, + ACTIONS(1182), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48493,7 +46148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1196), 34, + ACTIONS(1180), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48528,10 +46183,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27175] = 3, + [27318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1194), 12, + ACTIONS(1186), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48544,7 +46199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1192), 34, + ACTIONS(1184), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48579,10 +46234,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27229] = 3, + [27372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1184), 12, + ACTIONS(1192), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48595,7 +46250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1186), 34, + ACTIONS(1194), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48630,10 +46285,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27283] = 3, + [27426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 12, + ACTIONS(1198), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48646,7 +46301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1188), 34, + ACTIONS(1196), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48663,9 +46318,9 @@ 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_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -48681,7 +46336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27337] = 3, + [27480] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1200), 12, @@ -48731,12 +46386,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27390] = 3, + [27533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 12, - sym__dedent, + ACTIONS(1204), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48747,7 +46402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1204), 33, + ACTIONS(1206), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48781,7 +46436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27443] = 3, + [27586] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1208), 12, @@ -48831,12 +46486,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27496] = 3, + [27639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 12, + ACTIONS(1214), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48847,7 +46502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1214), 33, + ACTIONS(1212), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48881,12 +46536,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27549] = 3, + [27692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 12, + ACTIONS(1200), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48897,7 +46552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1202), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48931,12 +46586,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27602] = 3, + [27745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 12, - sym__dedent, + ACTIONS(1216), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48947,7 +46602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1220), 33, + ACTIONS(1218), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48981,12 +46636,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27655] = 3, + [27798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1224), 12, + ACTIONS(1108), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48997,7 +46652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1226), 33, + ACTIONS(1110), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49031,10 +46686,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27708] = 3, + [27851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1132), 12, + ACTIONS(1220), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -49047,7 +46702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1130), 33, + ACTIONS(1222), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49081,12 +46736,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27761] = 3, + [27904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 12, - sym__dedent, + ACTIONS(1224), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49097,7 +46752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1228), 33, + ACTIONS(1226), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49131,12 +46786,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27814] = 3, + [27957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 12, - sym__dedent, + ACTIONS(1108), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49147,7 +46802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1232), 33, + ACTIONS(1110), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49181,10 +46836,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27867] = 3, + [28010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 12, + ACTIONS(1228), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -49197,7 +46852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(858), 33, + ACTIONS(1230), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49231,12 +46886,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27920] = 3, + [28063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 12, - sym__dedent, + ACTIONS(1232), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49247,7 +46902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1236), 33, + ACTIONS(1234), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49281,12 +46936,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27973] = 3, + [28116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 12, - sym__dedent, + ACTIONS(844), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49297,7 +46952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1240), 33, + ACTIONS(842), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49331,10 +46986,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28026] = 3, + [28169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 12, + ACTIONS(844), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49347,7 +47002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1244), 33, + ACTIONS(842), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49381,12 +47036,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28079] = 3, + [28222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, + ACTIONS(1238), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49397,7 +47052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1250), 33, + ACTIONS(1236), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49431,12 +47086,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28132] = 3, + [28275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 12, + ACTIONS(1242), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49447,7 +47102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1254), 33, + ACTIONS(1240), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49481,12 +47136,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28185] = 3, + [28328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 12, - sym__dedent, + ACTIONS(1244), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49497,7 +47152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1254), 33, + ACTIONS(1246), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49531,10 +47186,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28238] = 3, + [28381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 12, + ACTIONS(1248), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -49547,7 +47202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(844), 33, + ACTIONS(1250), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49581,10 +47236,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28291] = 3, + [28434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 12, + ACTIONS(1238), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -49597,7 +47252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1204), 33, + ACTIONS(1236), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49631,10 +47286,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28344] = 3, + [28487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(860), 12, + ACTIONS(1254), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49647,7 +47302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(858), 33, + ACTIONS(1252), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49681,7 +47336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28397] = 3, + [28540] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1258), 12, @@ -49731,12 +47386,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28450] = 3, + [28593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 12, + ACTIONS(1262), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49747,7 +47402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1262), 33, + ACTIONS(1260), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49781,7 +47436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28503] = 3, + [28646] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1264), 12, @@ -49831,10 +47486,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28556] = 3, + [28699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1132), 12, + ACTIONS(1270), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49847,57 +47502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1130), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - 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_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - 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, - [28609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1270), 33, + ACTIONS(1268), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49931,7 +47536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28662] = 3, + [28752] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1274), 12, @@ -49981,12 +47586,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28715] = 3, + [28805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1159), 12, + ACTIONS(1278), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49997,7 +47602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1157), 33, + ACTIONS(1276), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50031,10 +47636,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28768] = 3, + [28858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 12, + ACTIONS(1106), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -50047,7 +47652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1278), 33, + ACTIONS(1104), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50081,12 +47686,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28821] = 3, + [28911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 12, - sym__dedent, + ACTIONS(1242), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50097,7 +47702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1214), 33, + ACTIONS(1240), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50131,12 +47736,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28874] = 3, + [28964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 12, - sym__dedent, + ACTIONS(1280), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50147,7 +47752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1278), 33, + ACTIONS(1282), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50181,12 +47786,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28927] = 3, + [29017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 12, - sym__dedent, + ACTIONS(1284), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50197,7 +47802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1280), 33, + ACTIONS(1286), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50231,12 +47836,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28980] = 3, + [29070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1290), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50247,7 +47852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1286), 33, + ACTIONS(1288), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50281,10 +47886,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29033] = 3, + [29123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 12, + ACTIONS(1294), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50297,7 +47902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1288), 33, + ACTIONS(1292), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50331,12 +47936,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29086] = 3, + [29176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 12, - sym__dedent, + ACTIONS(1296), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50347,7 +47952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1292), 33, + ACTIONS(1298), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50381,12 +47986,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29139] = 3, + [29229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 12, - sym__dedent, + ACTIONS(1300), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50397,7 +48002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1296), 33, + ACTIONS(1302), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50431,10 +48036,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29192] = 3, + [29282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 12, + ACTIONS(1304), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -50447,7 +48052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1302), 33, + ACTIONS(1306), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50481,10 +48086,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29245] = 3, + [29335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 12, + ACTIONS(1308), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -50497,7 +48102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1306), 33, + ACTIONS(1310), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50531,10 +48136,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29298] = 3, + [29388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 12, + ACTIONS(1314), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50547,7 +48152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1308), 33, + ACTIONS(1312), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50581,12 +48186,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29351] = 3, + [29441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 12, + ACTIONS(1318), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50597,7 +48202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1314), 33, + ACTIONS(1316), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50631,12 +48236,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29404] = 3, + [29494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 12, + ACTIONS(1322), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50647,7 +48252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1308), 33, + ACTIONS(1320), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50681,10 +48286,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29457] = 3, + [29547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 12, + ACTIONS(1324), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -50697,7 +48302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1288), 33, + ACTIONS(1326), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50731,10 +48336,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29510] = 3, + [29600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 12, + ACTIONS(1328), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -50747,7 +48352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1292), 33, + ACTIONS(1330), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50781,10 +48386,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29563] = 3, + [29653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, + ACTIONS(1106), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50797,7 +48402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1250), 33, + ACTIONS(1104), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50831,10 +48436,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29616] = 3, + [29706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 12, + ACTIONS(1334), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -50847,7 +48452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1306), 33, + ACTIONS(1332), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50881,12 +48486,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29669] = 3, + [29759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 12, + ACTIONS(1338), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50897,7 +48502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1318), 33, + ACTIONS(1336), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50931,12 +48536,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29722] = 3, + [29812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 12, + ACTIONS(1220), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50947,7 +48552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1220), 33, + ACTIONS(1222), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50981,10 +48586,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29775] = 3, + [29865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1340), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -50997,7 +48602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1322), 33, + ACTIONS(1342), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51031,12 +48636,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29828] = 3, + [29918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 12, - sym__dedent, + ACTIONS(1344), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51047,7 +48652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1324), 33, + ACTIONS(1346), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51081,10 +48686,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29881] = 3, + [29971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 12, + ACTIONS(1348), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -51097,7 +48702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1244), 33, + ACTIONS(1350), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51131,12 +48736,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29934] = 3, + [30024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 12, + ACTIONS(1216), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51147,7 +48752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1240), 33, + ACTIONS(1218), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51181,12 +48786,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29987] = 3, + [30077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1228), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51197,7 +48802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1236), 33, + ACTIONS(1230), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51231,10 +48836,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30040] = 3, + [30130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 12, + ACTIONS(1348), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -51247,7 +48852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1350), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51281,10 +48886,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30093] = 3, + [30183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1334), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -51297,7 +48902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1330), 33, + ACTIONS(1332), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51331,12 +48936,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30146] = 3, + [30236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 12, + ACTIONS(1308), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51347,7 +48952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1280), 33, + ACTIONS(1310), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51381,12 +48986,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30199] = 3, + [30289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1224), 12, - sym__dedent, + ACTIONS(1352), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51397,7 +49002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1226), 33, + ACTIONS(1354), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51431,10 +49036,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30252] = 3, + [30342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1356), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -51447,7 +49052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1334), 33, + ACTIONS(1358), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51481,10 +49086,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30305] = 3, + [30395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 12, + ACTIONS(1360), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -51497,7 +49102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1296), 33, + ACTIONS(1362), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51531,12 +49136,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30358] = 3, + [30448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 12, - sym__dedent, + ACTIONS(1278), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51547,7 +49152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1330), 33, + ACTIONS(1276), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51581,12 +49186,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30411] = 3, + [30501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 12, - sym__dedent, + ACTIONS(1338), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51597,7 +49202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1286), 33, + ACTIONS(1336), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51631,12 +49236,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30464] = 3, + [30554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 12, + ACTIONS(1340), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51647,7 +49252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1232), 33, + ACTIONS(1342), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51681,12 +49286,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30517] = 3, + [30607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 12, + ACTIONS(1328), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51697,7 +49302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1228), 33, + ACTIONS(1330), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51731,10 +49336,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30570] = 3, + [30660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 12, + ACTIONS(1360), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -51747,7 +49352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1302), 33, + ACTIONS(1362), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51781,12 +49386,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30623] = 3, + [30713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1304), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -51797,7 +49402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1338), 33, + ACTIONS(1306), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51831,10 +49436,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30676] = 3, + [30766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1366), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -51847,7 +49452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1322), 33, + ACTIONS(1364), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51881,10 +49486,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30729] = 3, + [30819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, + ACTIONS(1274), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -51897,7 +49502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1342), 33, + ACTIONS(1272), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51931,10 +49536,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30782] = 3, + [30872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 12, + ACTIONS(1370), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -51947,7 +49552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1318), 33, + ACTIONS(1368), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -51981,10 +49586,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30835] = 3, + [30925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 12, + ACTIONS(1374), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -51997,7 +49602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1314), 33, + ACTIONS(1372), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52031,10 +49636,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30888] = 3, + [30978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 12, + ACTIONS(1248), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -52047,7 +49652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1338), 33, + ACTIONS(1250), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52081,12 +49686,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30941] = 3, + [31031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, - sym__dedent, + ACTIONS(1214), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52097,7 +49702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1342), 33, + ACTIONS(1212), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52131,12 +49736,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30994] = 3, + [31084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 12, + ACTIONS(1284), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52147,7 +49752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1256), 33, + ACTIONS(1286), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52181,12 +49786,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31047] = 3, + [31137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 12, - sym__dedent, + ACTIONS(1376), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52197,7 +49802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1344), 33, + ACTIONS(1378), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52231,12 +49836,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31100] = 3, + [31190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 12, - sym__dedent, + ACTIONS(1254), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52247,7 +49852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(844), 33, + ACTIONS(1252), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52281,10 +49886,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31153] = 3, + [31243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1258), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -52297,7 +49902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1344), 33, + ACTIONS(1256), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52331,12 +49936,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31206] = 3, + [31296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 12, - sym__dedent, + ACTIONS(1262), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52347,7 +49952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1348), 33, + ACTIONS(1260), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52381,10 +49986,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31259] = 3, + [31349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 12, + ACTIONS(1224), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -52397,7 +50002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1352), 33, + ACTIONS(1226), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52431,10 +50036,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31312] = 3, + [31402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 12, + ACTIONS(1270), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -52447,7 +50052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1352), 33, + ACTIONS(1268), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52481,12 +50086,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31365] = 3, + [31455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1208), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52497,7 +50102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1358), 33, + ACTIONS(1210), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52531,12 +50136,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31418] = 3, + [31508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 12, - sym__dedent, + ACTIONS(1366), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52547,7 +50152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1358), 33, + ACTIONS(1364), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52581,12 +50186,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31471] = 3, + [31561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 12, + ACTIONS(1264), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52597,7 +50202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1362), 33, + ACTIONS(1266), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52631,10 +50236,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31524] = 3, + [31614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 12, + ACTIONS(854), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -52647,7 +50252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1272), 33, + ACTIONS(852), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52681,10 +50286,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31577] = 3, + [31667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 12, + ACTIONS(1280), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -52697,7 +50302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1362), 33, + ACTIONS(1282), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52731,10 +50336,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31630] = 3, + [31720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 12, + ACTIONS(1374), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -52747,7 +50352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1324), 33, + ACTIONS(1372), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52781,12 +50386,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31683] = 3, + [31773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 12, - sym__dedent, + ACTIONS(1370), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52797,7 +50402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1364), 33, + ACTIONS(1368), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52831,10 +50436,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31736] = 3, + [31826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, + ACTIONS(854), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -52847,7 +50452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 33, + ACTIONS(852), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52881,12 +50486,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31789] = 3, + [31879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 12, - sym__dedent, + ACTIONS(1290), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52897,7 +50502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1368), 33, + ACTIONS(1288), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52931,12 +50536,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31842] = 3, + [31932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 12, - sym__dedent, + ACTIONS(1294), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -52947,7 +50552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1372), 33, + ACTIONS(1292), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -52981,10 +50586,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31895] = 3, + [31985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 12, + ACTIONS(1314), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -52997,7 +50602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1364), 33, + ACTIONS(1312), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53031,10 +50636,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31948] = 3, + [32038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 12, + ACTIONS(1204), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -53047,7 +50652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1210), 33, + ACTIONS(1206), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53081,12 +50686,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32001] = 3, + [32091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 12, + ACTIONS(1324), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53097,7 +50702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1348), 33, + ACTIONS(1326), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53131,10 +50736,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32054] = 3, + [32144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 12, + ACTIONS(1318), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -53147,7 +50752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1368), 33, + ACTIONS(1316), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53181,10 +50786,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32107] = 3, + [32197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 12, + ACTIONS(1356), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -53197,7 +50802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1376), 33, + ACTIONS(1358), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53231,10 +50836,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32160] = 3, + [32250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1159), 12, + ACTIONS(1352), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -53247,7 +50852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1157), 33, + ACTIONS(1354), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53281,12 +50886,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32213] = 3, + [32303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 12, + ACTIONS(1344), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -53297,7 +50902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1372), 33, + ACTIONS(1346), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53331,10 +50936,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32266] = 3, + [32356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 12, + ACTIONS(1322), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -53347,7 +50952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1376), 33, + ACTIONS(1320), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53381,10 +50986,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32319] = 3, + [32409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 12, + ACTIONS(1232), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -53397,7 +51002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1262), 33, + ACTIONS(1234), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53431,10 +51036,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32372] = 3, + [32462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1296), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -53447,7 +51052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1270), 33, + ACTIONS(1298), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53481,10 +51086,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32425] = 3, + [32515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 12, + ACTIONS(1300), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -53497,7 +51102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1266), 33, + ACTIONS(1302), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53531,10 +51136,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32478] = 3, + [32568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1244), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -53547,7 +51152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1334), 33, + ACTIONS(1246), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -53581,33 +51186,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32531] = 18, + [32621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1376), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1378), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + 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_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + 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, + [32674] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, + ACTIONS(1380), 1, + anon_sym_RPAREN, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(876), 1, - sym_pattern, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, + STATE(1167), 1, + sym_pattern, + STATE(1446), 1, + sym__patterns, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(1380), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, STATE(770), 2, sym_attribute, sym_subscript, @@ -53615,7 +51271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -53624,14 +51280,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -53645,34 +51301,33 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32613] = 19, + [32758] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - ACTIONS(1384), 1, - anon_sym_RPAREN, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(882), 1, - sym_primary_expression, - STATE(1146), 1, + STATE(877), 1, sym_pattern, - STATE(1434), 1, - sym__patterns, + STATE(883), 1, + sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, + ACTIONS(1384), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, STATE(770), 2, sym_attribute, sym_subscript, @@ -53680,7 +51335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -53689,14 +51344,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -53710,26 +51365,26 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32697] = 18, + [32840] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(876), 1, + STATE(877), 1, sym_pattern, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -53744,7 +51399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -53753,14 +51408,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -53774,72 +51429,85 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [32779] = 5, + [32922] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(295), 1, + anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(599), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1390), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1388), 34, - anon_sym_DOT, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(692), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(702), 1, + anon_sym_LBRACK, + ACTIONS(1382), 1, + anon_sym_STAR, + STATE(607), 1, + sym_string, + STATE(883), 1, + sym_primary_expression, + STATE(1221), 1, + sym_pattern, + STATE(1529), 1, + sym_pattern_list, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(770), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [32834] = 5, + anon_sym_TILDE, + STATE(878), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(696), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(622), 13, + 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, + [33003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 1, + ACTIONS(1392), 1, sym__string_start, - STATE(599), 2, + STATE(600), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1394), 6, + ACTIONS(1390), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 34, + ACTIONS(1388), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -53874,22 +51542,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [32889] = 5, + [33058] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, sym__string_start, - STATE(598), 2, + STATE(600), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1053), 6, + ACTIONS(1397), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 34, + ACTIONS(1395), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -53924,28 +51592,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [32944] = 18, + [33113] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, - STATE(1305), 1, + STATE(1263), 1, sym_pattern, - STATE(1466), 1, + STATE(1413), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, @@ -53957,7 +51625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -53966,14 +51634,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -53987,28 +51655,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33025] = 18, + [33194] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, - STATE(1306), 1, + STATE(1305), 1, sym_pattern, - STATE(1454), 1, + STATE(1476), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, @@ -54020,7 +51688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -54029,14 +51697,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -54050,28 +51718,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33106] = 18, + [33275] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1259), 1, sym_pattern, - STATE(1522), 1, + STATE(1501), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, @@ -54083,7 +51751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -54092,14 +51760,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -54113,28 +51781,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33187] = 18, + [33356] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, - STATE(1199), 1, + STATE(1325), 1, sym_pattern, - STATE(1519), 1, + STATE(1461), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, @@ -54146,7 +51814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -54155,14 +51823,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -54176,28 +51844,28 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33268] = 18, + [33437] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, - STATE(1276), 1, + STATE(1223), 1, sym_pattern, - STATE(1421), 1, + STATE(1526), 1, sym_pattern_list, ACTIONS(309), 2, sym_ellipsis, @@ -54209,7 +51877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -54218,14 +51886,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -54239,89 +51907,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33349] = 18, + [33518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, - sym_identifier, - ACTIONS(680), 1, - anon_sym_LPAREN, - ACTIONS(690), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_STAR, - STATE(600), 1, + STATE(601), 2, sym_string, - STATE(882), 1, - sym_primary_expression, - STATE(1293), 1, - sym_pattern, - STATE(1419), 1, - sym_pattern_list, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, + aux_sym_concatenated_string_repeat1, + ACTIONS(1036), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1031), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - STATE(875), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(684), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(642), 13, - 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, - [33430] = 17, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33573] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(876), 1, + STATE(877), 1, sym_pattern, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -54333,7 +51988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -54342,14 +51997,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -54363,26 +52018,26 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33508] = 17, + [33651] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(678), 1, + ACTIONS(690), 1, sym_identifier, - ACTIONS(680), 1, + ACTIONS(692), 1, anon_sym_LPAREN, - ACTIONS(690), 1, + ACTIONS(702), 1, anon_sym_LBRACK, ACTIONS(1382), 1, anon_sym_STAR, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(882), 1, + STATE(883), 1, sym_primary_expression, - STATE(1281), 1, + STATE(1215), 1, sym_pattern, ACTIONS(309), 2, sym_ellipsis, @@ -54394,7 +52049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(875), 3, + STATE(878), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -54403,14 +52058,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(684), 6, + ACTIONS(696), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 13, sym_binary_operator, sym_unary_operator, sym_call, @@ -54424,7 +52079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [33586] = 3, + [33729] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1401), 6, @@ -54470,7 +52125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33635] = 3, + [33778] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1405), 6, @@ -54516,7 +52171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33684] = 3, + [33827] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1409), 6, @@ -54561,7 +52216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33732] = 3, + [33875] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 6, @@ -54606,17 +52261,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33780] = 3, + [33923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1415), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [33971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1421), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1419), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(276), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [34067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 6, + ACTIONS(1425), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1415), 34, + ACTIONS(1423), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54651,17 +52441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33828] = 3, + [34115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 6, + ACTIONS(1429), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1419), 34, + ACTIONS(1427), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54696,17 +52486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33876] = 3, + [34163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 6, + ACTIONS(1421), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1423), 34, + ACTIONS(1419), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54741,17 +52531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33924] = 3, + [34211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 6, + ACTIONS(1433), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1419), 34, + ACTIONS(1431), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54786,107 +52576,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33972] = 3, + [34259] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1427), 34, + ACTIONS(1435), 1, anon_sym_DOT, + ACTIONS(1437), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(1441), 1, + anon_sym_as, + ACTIONS(1449), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1453), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1459), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1461), 1, anon_sym_AMP, + ACTIONS(1463), 1, anon_sym_CARET, + ACTIONS(1467), 1, + anon_sym_is, + STATE(869), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1445), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(1451), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1465), 2, + anon_sym_LT, + anon_sym_GT, + STATE(634), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1457), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1447), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(276), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(303), 34, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1439), 10, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [34068] = 3, + [34341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 6, + ACTIONS(1036), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1431), 34, + ACTIONS(1031), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54921,17 +52683,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34116] = 3, + [34389] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1469), 1, + sym_identifier, + STATE(607), 1, + sym_string, + STATE(883), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + STATE(767), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1471), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(311), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1473), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(622), 13, + 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, + [34461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 6, + ACTIONS(1477), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 34, + ACTIONS(1475), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54966,17 +52785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34164] = 3, + [34509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 6, + ACTIONS(1481), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 34, + ACTIONS(1479), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55011,17 +52830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34212] = 3, + [34557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 6, + ACTIONS(1477), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 34, + ACTIONS(1475), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55056,17 +52875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34260] = 3, + [34605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 6, + ACTIONS(1485), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 34, + ACTIONS(1483), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55101,17 +52920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34308] = 3, + [34653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 6, + ACTIONS(1489), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1451), 34, + ACTIONS(1487), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55146,17 +52965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34356] = 3, + [34701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 6, + ACTIONS(1493), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 34, + ACTIONS(1491), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55191,62 +53010,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34404] = 3, + [34749] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1459), 34, + ACTIONS(1435), 1, anon_sym_DOT, + ACTIONS(1437), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1441), 1, + anon_sym_EQ, + ACTIONS(1453), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1501), 1, + anon_sym_PIPE, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1509), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1511), 1, anon_sym_AMP, + ACTIONS(1513), 1, anon_sym_CARET, + ACTIONS(1517), 1, + anon_sym_is, + STATE(871), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1497), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(1503), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1515), 2, + anon_sym_LT, + anon_sym_GT, + STATE(634), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1507), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1499), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, + ACTIONS(1439), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, sym_type_conversion, - [34452] = 3, + [34831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 6, + ACTIONS(1413), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 34, + ACTIONS(1411), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55281,17 +53117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34500] = 3, + [34879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 6, + ACTIONS(1521), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 34, + ACTIONS(1519), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55326,17 +53162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34548] = 3, + [34927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 6, + ACTIONS(1525), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1471), 34, + ACTIONS(1523), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55371,79 +53207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34596] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 1, - anon_sym_DOT, - ACTIONS(1477), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_PIPE, - ACTIONS(1491), 1, - anon_sym_LBRACK, - ACTIONS(1493), 1, - anon_sym_STAR_STAR, - ACTIONS(1495), 1, - anon_sym_EQ, - ACTIONS(1499), 1, - anon_sym_not, - ACTIONS(1501), 1, - anon_sym_AMP, - ACTIONS(1503), 1, - anon_sym_CARET, - ACTIONS(1507), 1, - anon_sym_is, - STATE(870), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1481), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1483), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1489), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1505), 2, - anon_sym_LT, - anon_sym_GT, - STATE(633), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1497), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1485), 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(1479), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [34678] = 3, + [34975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 6, + ACTIONS(1529), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1509), 34, + ACTIONS(1527), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55478,17 +53252,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34726] = 3, + [35023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 6, + ACTIONS(1533), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1415), 34, + ACTIONS(1531), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55523,17 +53297,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34774] = 3, + [35071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 6, + ACTIONS(1537), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1513), 34, + ACTIONS(1535), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55568,17 +53342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34822] = 3, + [35119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 6, + ACTIONS(1541), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 34, + ACTIONS(1539), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55613,17 +53387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34870] = 3, + [35167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 6, + ACTIONS(1545), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1521), 34, + ACTIONS(1543), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55658,74 +53432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34918] = 15, + [35215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1525), 1, - sym_identifier, - STATE(600), 1, - sym_string, - STATE(882), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - STATE(762), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1527), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(311), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1529), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(642), 13, - 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, - [34990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1533), 6, + ACTIONS(1493), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1531), 34, + ACTIONS(1491), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55760,17 +53477,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35038] = 3, + [35263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 6, + ACTIONS(1549), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1535), 34, + ACTIONS(1547), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55805,17 +53522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35086] = 3, + [35311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 6, + ACTIONS(1553), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1423), 34, + ACTIONS(1551), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55850,17 +53567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35134] = 3, + [35359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 6, + ACTIONS(1557), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 34, + ACTIONS(1555), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55895,17 +53612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35182] = 3, + [35407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 6, + ACTIONS(1561), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 34, + ACTIONS(1559), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55940,17 +53657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35230] = 3, + [35455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 6, + ACTIONS(1565), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 34, + ACTIONS(1563), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -55985,69 +53702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35278] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 1, - anon_sym_DOT, - ACTIONS(1477), 1, - anon_sym_LPAREN, - ACTIONS(1491), 1, - anon_sym_LBRACK, - ACTIONS(1495), 1, - anon_sym_as, - ACTIONS(1549), 1, - anon_sym_PIPE, - ACTIONS(1553), 1, - anon_sym_STAR_STAR, - ACTIONS(1557), 1, - anon_sym_not, - ACTIONS(1559), 1, - anon_sym_AMP, - ACTIONS(1561), 1, - anon_sym_CARET, - ACTIONS(1565), 1, - anon_sym_is, - STATE(871), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1543), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1545), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1551), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1563), 2, - anon_sym_LT, - anon_sym_GT, - STATE(633), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1555), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1547), 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(1479), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [35360] = 3, + [35503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1569), 6, @@ -56092,18 +53747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35408] = 8, + [35551] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, ACTIONS(1573), 5, @@ -56141,53 +53796,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35465] = 13, + [35608] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1501), 1, + anon_sym_PIPE, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - ACTIONS(1503), 1, + ACTIONS(1511), 1, + anon_sym_AMP, + ACTIONS(1513), 1, anon_sym_CARET, - ACTIONS(1481), 2, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1483), 2, + ACTIONS(1497), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1489), 2, + ACTIONS(1503), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1497), 3, + ACTIONS(1507), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, + ACTIONS(1577), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 20, + ACTIONS(1575), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56195,46 +53852,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35532] = 8, + [35679] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - STATE(633), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1573), 5, - anon_sym_as, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1503), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(634), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1507), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1581), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 28, + ACTIONS(1579), 23, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, 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, @@ -56244,27 +53903,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [35589] = 8, + sym_type_conversion, + [35742] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 5, + ACTIONS(1581), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 28, + ACTIONS(1579), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -56293,35 +53953,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35646] = 11, + [35799] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1543), 2, + ACTIONS(1443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1551), 2, + ACTIONS(1451), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1555), 3, + ACTIONS(1457), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, + ACTIONS(1581), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 23, + ACTIONS(1579), 23, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -56345,144 +54005,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [35709] = 8, + [35862] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1449), 1, + anon_sym_PIPE, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - STATE(633), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1577), 5, + ACTIONS(1461), 1, + anon_sym_AMP, + ACTIONS(1463), 1, + anon_sym_CARET, + ACTIONS(1443), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1445), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1451), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(634), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1457), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1577), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1575), 28, + ACTIONS(1575), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [35766] = 10, + [35933] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1481), 2, + ACTIONS(1461), 1, + anon_sym_AMP, + ACTIONS(1463), 1, + anon_sym_CARET, + ACTIONS(1443), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(633), 2, + ACTIONS(1445), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1451), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1497), 3, + ACTIONS(1457), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, - anon_sym_EQ, + ACTIONS(1581), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 25, + ACTIONS(1579), 19, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [35827] = 15, + [36002] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, - anon_sym_LBRACK, - ACTIONS(1549), 1, + ACTIONS(1449), 1, anon_sym_PIPE, - ACTIONS(1553), 1, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1559), 1, + ACTIONS(1461), 1, anon_sym_AMP, - ACTIONS(1561), 1, + ACTIONS(1463), 1, anon_sym_CARET, - ACTIONS(1543), 2, + ACTIONS(1443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1545), 2, + ACTIONS(1445), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1551), 2, + ACTIONS(1451), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1555), 3, + ACTIONS(1457), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, + ACTIONS(1585), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 18, + ACTIONS(1583), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -56501,42 +54172,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [35898] = 14, + [36073] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1449), 1, + anon_sym_PIPE, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1559), 1, + ACTIONS(1461), 1, anon_sym_AMP, - ACTIONS(1561), 1, + ACTIONS(1463), 1, anon_sym_CARET, - ACTIONS(1543), 2, + ACTIONS(1443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1545), 2, + ACTIONS(1445), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1551), 2, + ACTIONS(1451), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1555), 3, + ACTIONS(1457), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, + ACTIONS(1589), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 19, + ACTIONS(1587), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -56544,7 +54217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, @@ -56556,32 +54228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [35967] = 10, + [36144] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1543), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1555), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, + ACTIONS(1573), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 25, + ACTIONS(1571), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -56595,9 +54262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, 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, @@ -56607,34 +54277,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36028] = 8, + [36201] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - STATE(633), 2, + ACTIONS(1513), 1, + anon_sym_CARET, + ACTIONS(1495), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1497), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1503), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 5, - anon_sym_as, + ACTIONS(1507), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1581), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1579), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36268] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(1437), 1, + anon_sym_LPAREN, + ACTIONS(1453), 1, + anon_sym_LBRACK, + ACTIONS(1505), 1, + anon_sym_STAR_STAR, + STATE(634), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1581), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 28, + ACTIONS(1579), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -56656,52 +54379,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36085] = 12, + sym_type_conversion, + [36325] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1501), 1, + anon_sym_PIPE, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - ACTIONS(1481), 2, + ACTIONS(1511), 1, + anon_sym_AMP, + ACTIONS(1513), 1, + anon_sym_CARET, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1483), 2, + ACTIONS(1497), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1489), 2, + ACTIONS(1503), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1497), 3, + ACTIONS(1507), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, + ACTIONS(1585), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 21, + ACTIONS(1583), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56709,38 +54436,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [36150] = 12, + [36396] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1543), 2, + ACTIONS(1463), 1, + anon_sym_CARET, + ACTIONS(1443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1545), 2, + ACTIONS(1445), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1551), 2, + ACTIONS(1451), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1555), 3, + ACTIONS(1457), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, + ACTIONS(1581), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 21, + ACTIONS(1579), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -56755,56 +54484,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36215] = 14, + [36463] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, - anon_sym_STAR_STAR, ACTIONS(1501), 1, + anon_sym_PIPE, + ACTIONS(1505), 1, + anon_sym_STAR_STAR, + ACTIONS(1511), 1, anon_sym_AMP, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_CARET, - ACTIONS(1481), 2, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1483), 2, + ACTIONS(1497), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1489), 2, + ACTIONS(1503), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1497), 3, + ACTIONS(1507), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, + ACTIONS(1589), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 19, + ACTIONS(1587), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, @@ -56817,102 +54546,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [36284] = 15, + [36534] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1549), 1, - anon_sym_PIPE, - ACTIONS(1553), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1559), 1, - anon_sym_AMP, - ACTIONS(1561), 1, - anon_sym_CARET, - ACTIONS(1543), 2, + ACTIONS(1443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1545), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1551), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1555), 3, + ACTIONS(1457), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1585), 3, + ACTIONS(1581), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 18, + ACTIONS(1579), 25, 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_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36355] = 13, + [36595] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - ACTIONS(1561), 1, - anon_sym_CARET, - ACTIONS(1543), 2, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1545), 2, + ACTIONS(1497), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1551), 2, + ACTIONS(1503), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1555), 3, + ACTIONS(1507), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, - anon_sym_as, + ACTIONS(1581), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 20, + ACTIONS(1579), 21, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACK, @@ -56921,33 +54642,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36422] = 8, + sym_type_conversion, + [36660] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1553), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1577), 5, + ACTIONS(1581), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1575), 28, + ACTIONS(1579), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -56976,106 +54699,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36479] = 15, + [36717] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1549), 1, - anon_sym_PIPE, - ACTIONS(1553), 1, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - ACTIONS(1559), 1, + ACTIONS(1511), 1, anon_sym_AMP, - ACTIONS(1561), 1, + ACTIONS(1513), 1, anon_sym_CARET, - ACTIONS(1543), 2, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1545), 2, + ACTIONS(1497), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1551), 2, + ACTIONS(1503), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1555), 3, + ACTIONS(1507), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1589), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1587), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36550] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 1, - anon_sym_DOT, - ACTIONS(1477), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_PIPE, - ACTIONS(1491), 1, - anon_sym_LBRACK, - ACTIONS(1493), 1, - anon_sym_STAR_STAR, - ACTIONS(1501), 1, - anon_sym_AMP, - ACTIONS(1503), 1, - anon_sym_CARET, - ACTIONS(1481), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1483), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1489), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(633), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1497), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1589), 3, + ACTIONS(1581), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1587), 18, + ACTIONS(1579), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, @@ -57088,55 +54754,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [36621] = 15, + [36786] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_PIPE, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1505), 1, anon_sym_STAR_STAR, - ACTIONS(1501), 1, - anon_sym_AMP, - ACTIONS(1503), 1, - anon_sym_CARET, - ACTIONS(1481), 2, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1483), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1489), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1497), 3, + ACTIONS(1507), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1585), 3, + ACTIONS(1581), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 18, + ACTIONS(1579), 25, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -57144,104 +54805,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [36692] = 15, + [36847] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_PIPE, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1501), 1, - anon_sym_AMP, - ACTIONS(1503), 1, - anon_sym_CARET, - ACTIONS(1481), 2, + ACTIONS(1443), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1483), 2, + ACTIONS(1445), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1489), 2, + ACTIONS(1451), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1497), 3, + ACTIONS(1457), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, ACTIONS(1581), 3, - anon_sym_EQ, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 18, + ACTIONS(1579), 21, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [36763] = 11, + [36912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, + ACTIONS(1455), 1, anon_sym_STAR_STAR, - ACTIONS(1481), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1489), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1497), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1573), 3, - anon_sym_EQ, + ACTIONS(1581), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 23, + ACTIONS(1579), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, 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, @@ -57251,28 +54907,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [36826] = 4, + [36969] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + ACTIONS(1593), 1, + anon_sym_not, + STATE(607), 1, + sym_string, + STATE(651), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(610), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1591), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(622), 15, + 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, + [37035] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, + anon_sym_LPAREN, + ACTIONS(632), 1, + anon_sym_LBRACK, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1597), 1, + anon_sym_not, + STATE(739), 1, + sym_string, + STATE(764), 1, + sym_primary_expression, + ACTIONS(640), 2, + sym_ellipsis, + sym_float, + ACTIONS(630), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1595), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(813), 15, + 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, + [37101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 1, anon_sym_COLON_EQ, - ACTIONS(1053), 6, - anon_sym_as, + ACTIONS(1036), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 31, + ACTIONS(1031), 31, 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_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -57296,27 +55056,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36874] = 4, + sym_type_conversion, + [37149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 6, - anon_sym_as, + ACTIONS(1143), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 31, + ACTIONS(1138), 33, 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_PIPE, anon_sym_DASH, @@ -57340,22 +55099,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36922] = 13, + sym_type_conversion, + [37195] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - ACTIONS(1595), 1, + ACTIONS(1601), 1, anon_sym_not, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(733), 1, + STATE(738), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -57370,14 +55130,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57393,69 +55153,64 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [36988] = 13, + [37261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(562), 1, + anon_sym_COLON_EQ, + ACTIONS(276), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - anon_sym_LBRACE, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1599), 1, - anon_sym_not, - STATE(742), 1, - sym_string, - STATE(751), 1, - sym_primary_expression, - ACTIONS(640), 2, - sym_ellipsis, - sym_float, - ACTIONS(630), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(642), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1597), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(811), 15, - 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, - [37054] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [37309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1151), 5, + ACTIONS(1603), 1, + sym__string_start, + STATE(674), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1390), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1146), 33, + ACTIONS(1388), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -57464,7 +55219,6 @@ 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_PIPE, anon_sym_DASH, @@ -57488,8 +55242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37100] = 3, + [37359] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1170), 5, @@ -57532,79 +55285,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [37146] = 13, + [37405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(608), 1, + anon_sym_COLON_EQ, + ACTIONS(276), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1603), 1, - anon_sym_not, - STATE(600), 1, - sym_string, - STATE(665), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, + 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_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1601), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(642), 15, - 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, - [37212] = 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [37453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 1, + ACTIONS(1606), 1, anon_sym_COLON_EQ, - ACTIONS(1053), 6, + ACTIONS(1036), 6, + anon_sym_as, anon_sym_STAR, anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 31, + ACTIONS(1031), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -57628,27 +55373,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37260] = 4, + [37501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(568), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 6, + ACTIONS(646), 1, + sym__string_start, + STATE(674), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1397), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 31, + ACTIONS(1395), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -57672,28 +55418,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37308] = 13, + [37551] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - ACTIONS(1605), 1, + ACTIONS(1608), 1, anon_sym_not, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(652), 1, + STATE(647), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -57703,14 +55448,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57726,80 +55471,33 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37374] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, - sym__string_start, - STATE(677), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1394), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 31, - 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [37424] = 5, + [37617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, + ACTIONS(1610), 1, sym__string_start, - STATE(677), 2, + STATE(680), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1390), 4, + ACTIONS(1390), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1388), 31, + ACTIONS(1388), 29, + sym__newline, 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_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57816,7 +55514,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [37474] = 12, + anon_sym_SEMI, + [37666] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -57827,35 +55526,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(1469), 1, + sym_identifier, + STATE(607), 1, sym_string, - STATE(663), 1, + STATE(883), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, + STATE(767), 2, + sym_attribute, + sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(311), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1473), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57867,42 +55568,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37537] = 12, + [37733] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(751), 1, + STATE(656), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57918,46 +55619,92 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37600] = 12, + [37796] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(81), 1, + sym__string_start, + STATE(692), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1036), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1031), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(632), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(634), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [37845] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(742), 1, + ACTIONS(1613), 1, + sym_identifier, + STATE(607), 1, sym_string, - STATE(747), 1, + STATE(883), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + STATE(881), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(311), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1615), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(622), 13, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57969,42 +55716,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37663] = 12, + [37912] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(81), 1, sym__string_start, - STATE(742), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(763), 1, + STATE(734), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58020,42 +55767,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37726] = 12, + [37975] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(81), 1, sym__string_start, - STATE(742), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(766), 1, + STATE(738), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58071,66 +55818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37789] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 1, - anon_sym_EQ, - ACTIONS(1610), 1, - anon_sym_DOT, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1620), 1, - anon_sym_PIPE, - ACTIONS(1624), 1, - anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_STAR_STAR, - ACTIONS(1630), 1, - anon_sym_not, - ACTIONS(1632), 1, - anon_sym_AMP, - ACTIONS(1634), 1, - anon_sym_CARET, - ACTIONS(1638), 1, - anon_sym_is, - STATE(878), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1616), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1622), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1636), 2, - anon_sym_LT, - anon_sym_GT, - STATE(792), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1618), 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(1479), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [37868] = 14, + [38038] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -58141,37 +55829,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(1525), 1, - sym_identifier, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(882), 1, + STATE(658), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(762), 2, - sym_attribute, - sym_subscript, ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(311), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1529), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 15, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58183,25 +55869,76 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37935] = 12, + [38101] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(572), 1, anon_sym_LBRACK, + STATE(683), 1, + sym_string, + STATE(733), 1, + sym_primary_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1599), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(795), 15, + 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, + [38164] = 12, + ACTIONS(3), 1, + sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(607), 1, sym_string, - STATE(656), 1, + STATE(655), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -58211,14 +55948,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58234,7 +55971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [37998] = 12, + [38227] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -58245,9 +55982,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(646), 1, + STATE(647), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -58262,14 +55999,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58285,42 +56022,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38061] = 12, + [38290] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(604), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(600), 1, + STATE(683), 1, sym_string, - STATE(659), 1, + STATE(732), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58336,21 +56073,21 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38124] = 5, + [38353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1640), 1, + ACTIONS(81), 1, sym__string_start, - STATE(689), 2, + STATE(680), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1394), 5, + ACTIONS(1397), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(1395), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58379,43 +56116,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [38173] = 12, + anon_sym_SEMI, + [38402] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(600), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(645), 1, + STATE(742), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58431,7 +56168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38236] = 12, + [38465] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, @@ -58442,9 +56179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(646), 1, sym__string_start, - STATE(742), 1, + STATE(739), 1, sym_string, - STATE(746), 1, + STATE(763), 1, sym_primary_expression, ACTIONS(640), 2, sym_ellipsis, @@ -58459,65 +56196,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1597), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(811), 15, - 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, - [38299] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - STATE(600), 1, - sym_string, - STATE(651), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(301), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1601), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58533,42 +56219,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38362] = 12, + [38528] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(600), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(647), 1, + STATE(748), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58584,20 +56270,20 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38425] = 12, + [38591] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(731), 1, + STATE(736), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -58612,14 +56298,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58635,7 +56321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38488] = 12, + [38654] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -58646,9 +56332,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(658), 1, + STATE(648), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -58663,14 +56349,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58686,7 +56372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38551] = 12, + [38717] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(278), 1, @@ -58697,9 +56383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(665), 1, + STATE(660), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, @@ -58714,14 +56400,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58737,7 +56423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38614] = 12, + [38780] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, @@ -58748,9 +56434,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(646), 1, sym__string_start, - STATE(742), 1, + STATE(739), 1, sym_string, - STATE(750), 1, + STATE(752), 1, sym_primary_expression, ACTIONS(640), 2, sym_ellipsis, @@ -58765,14 +56451,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58788,58 +56474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38677] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(600), 1, - sym_string, - STATE(649), 1, - sym_primary_expression, - ACTIONS(309), 2, - sym_ellipsis, - sym_float, - ACTIONS(610), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(311), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(1601), 6, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - anon_sym_await, - STATE(642), 15, - 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, - [38740] = 12, + [38843] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(624), 1, @@ -58850,9 +56485,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(646), 1, sym__string_start, - STATE(742), 1, + STATE(739), 1, sym_string, - STATE(756), 1, + STATE(759), 1, sym_primary_expression, ACTIONS(640), 2, sym_ellipsis, @@ -58867,14 +56502,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58890,42 +56525,84 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38803] = 12, + [38906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1143), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1138), 32, + 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_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [38951] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - STATE(713), 1, + STATE(607), 1, sym_string, - STATE(743), 1, + STATE(654), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58941,42 +56618,84 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38866] = 12, + [39014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(559), 1, + ACTIONS(1170), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 32, + 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_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [39059] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(713), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(734), 1, + STATE(754), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58992,42 +56711,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38929] = 12, + [39122] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(604), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(600), 1, + STATE(683), 1, sym_string, - STATE(652), 1, + STATE(737), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59043,42 +56762,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [38992] = 12, + [39185] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(600), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(653), 1, + STATE(753), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59094,42 +56813,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39055] = 12, + [39248] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(600), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(654), 1, + STATE(764), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59145,25 +56864,25 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39118] = 12, + [39311] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(655), 1, + STATE(649), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59173,14 +56892,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59196,18 +56915,18 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39181] = 12, + [39374] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(713), 1, + STATE(683), 1, sym_string, STATE(741), 1, sym_primary_expression, @@ -59224,14 +56943,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59247,25 +56966,84 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39244] = 12, + [39437] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(1441), 1, + anon_sym_EQ, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(293), 1, + ACTIONS(1627), 1, + anon_sym_PIPE, + ACTIONS(1631), 1, anon_sym_LBRACK, + ACTIONS(1633), 1, + anon_sym_STAR_STAR, + ACTIONS(1637), 1, + anon_sym_not, + ACTIONS(1639), 1, + anon_sym_AMP, + ACTIONS(1641), 1, + anon_sym_CARET, + ACTIONS(1645), 1, + anon_sym_is, + STATE(879), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1623), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1629), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1643), 2, + anon_sym_LT, + anon_sym_GT, + STATE(798), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1635), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1625), 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(1439), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [39516] = 12, + ACTIONS(3), 1, + sym_comment, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(607), 1, sym_string, - STATE(666), 1, + STATE(653), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59275,14 +57053,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59298,42 +57076,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39307] = 12, + [39579] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(761), 1, + STATE(662), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59349,25 +57127,25 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39370] = 12, + [39642] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(278), 1, + anon_sym_LPAREN, + ACTIONS(293), 1, + anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(604), 1, - anon_sym_LPAREN, - ACTIONS(612), 1, - anon_sym_LBRACK, - STATE(600), 1, + STATE(607), 1, sym_string, - STATE(661), 1, + STATE(646), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59377,14 +57155,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59400,42 +57178,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39433] = 12, + [39705] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(600), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(660), 1, + STATE(750), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59451,42 +57229,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39496] = 12, + [39768] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(600), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(657), 1, + STATE(765), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59502,42 +57280,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39559] = 12, + [39831] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - anon_sym_LBRACE, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(604), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(612), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(600), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(662), 1, + STATE(771), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(610), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59553,64 +57331,20 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39622] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(720), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1053), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1048), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [39671] = 12, + [39894] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(739), 1, + STATE(745), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -59625,14 +57359,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59648,48 +57382,46 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39734] = 14, + [39957] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - ACTIONS(1643), 1, - sym_identifier, - STATE(600), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(607), 1, sym_string, - STATE(882), 1, + STATE(663), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - STATE(879), 2, - sym_attribute, - sym_subscript, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 4, + ACTIONS(311), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1645), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 13, + STATE(622), 15, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59701,25 +57433,25 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39801] = 12, + [40020] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(607), 1, sym_string, - STATE(648), 1, + STATE(650), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -59729,14 +57461,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59752,42 +57484,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39864] = 12, + [40083] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(559), 1, + ACTIONS(624), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(632), 1, anon_sym_LBRACK, - STATE(713), 1, + ACTIONS(634), 1, + anon_sym_LBRACE, + ACTIONS(646), 1, + sym__string_start, + STATE(739), 1, sym_string, - STATE(738), 1, + STATE(755), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(640), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(630), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(642), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1595), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(813), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59803,42 +57535,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39927] = 12, + [40146] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, - ACTIONS(295), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(315), 1, + ACTIONS(81), 1, sym__string_start, - STATE(600), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACK, + STATE(683), 1, sym_string, - STATE(664), 1, + STATE(746), 1, sym_primary_expression, - ACTIONS(309), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(311), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59854,42 +57586,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [39990] = 12, + [40209] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - STATE(713), 1, + STATE(607), 1, sym_string, - STATE(745), 1, + STATE(651), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59905,86 +57637,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40053] = 5, + [40272] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(689), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1390), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1388), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, + ACTIONS(278), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(293), 1, anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [40102] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(559), 1, - anon_sym_LPAREN, - ACTIONS(563), 1, - anon_sym_LBRACK, - STATE(713), 1, + STATE(607), 1, sym_string, - STATE(737), 1, + STATE(664), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60000,42 +57688,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40165] = 12, + [40335] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - STATE(713), 1, + STATE(607), 1, sym_string, - STATE(733), 1, + STATE(652), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60051,20 +57739,20 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40228] = 12, + [40398] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(572), 1, anon_sym_LBRACK, - STATE(713), 1, + STATE(683), 1, sym_string, - STATE(732), 1, + STATE(744), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -60079,14 +57767,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1599), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(795), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60102,42 +57790,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40291] = 12, + [40461] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(632), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(742), 1, + STATE(607), 1, sym_string, - STATE(757), 1, + STATE(665), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60153,67 +57841,25 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1170), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1165), 32, - 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_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40399] = 12, + [40524] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_LPAREN, - ACTIONS(293), 1, - anon_sym_LBRACK, ACTIONS(295), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__string_start, - STATE(600), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(607), 1, sym_string, - STATE(650), 1, + STATE(661), 1, sym_primary_expression, ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(301), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -60223,14 +57869,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1601), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(642), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60246,84 +57892,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1151), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1146), 32, - 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_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40507] = 12, + [40587] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(742), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(607), 1, sym_string, - STATE(752), 1, + STATE(667), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60339,42 +57943,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40570] = 12, + [40650] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(624), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(646), 1, + ACTIONS(315), 1, sym__string_start, - STATE(742), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(612), 1, + anon_sym_LBRACK, + STATE(607), 1, sym_string, - STATE(753), 1, + STATE(659), 1, sym_primary_expression, - ACTIONS(640), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(630), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(642), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1597), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(811), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60390,42 +57994,42 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40633] = 12, + [40713] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(295), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(315), 1, sym__string_start, - ACTIONS(559), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(563), 1, + ACTIONS(612), 1, anon_sym_LBRACK, - STATE(713), 1, + STATE(607), 1, sym_string, - STATE(735), 1, + STATE(666), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(309), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(610), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(311), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1593), 6, + ACTIONS(1591), 6, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, anon_sym_await, - STATE(797), 15, + STATE(622), 15, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60441,88 +58045,86 @@ static const uint16_t ts_small_parse_table[] = { sym_generator_expression, sym_parenthesized_expression, sym_concatenated_string, - [40696] = 15, + [40776] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, - anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(278), 1, anon_sym_LPAREN, - ACTIONS(1620), 1, - anon_sym_PIPE, - ACTIONS(1624), 1, + ACTIONS(293), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_STAR_STAR, - ACTIONS(1632), 1, - anon_sym_AMP, - ACTIONS(1634), 1, - anon_sym_CARET, - ACTIONS(1614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1616), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1622), 2, + ACTIONS(295), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__string_start, + STATE(607), 1, + sym_string, + STATE(657), 1, + sym_primary_expression, + ACTIONS(309), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(311), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1591), 6, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + anon_sym_await, + STATE(622), 15, + 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, - ACTIONS(1589), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1587), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [40764] = 11, + sym_parenthesized_expression, + sym_concatenated_string, + [40839] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1624), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1614), 2, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 2, + ACTIONS(1629), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 3, + ACTIONS(1581), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1628), 3, + ACTIONS(1635), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 20, + ACTIONS(1579), 20, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -60542,103 +58144,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40824] = 15, + anon_sym_SEMI, + [40899] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1620), 1, - anon_sym_PIPE, - ACTIONS(1624), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1632), 1, + ACTIONS(1639), 1, anon_sym_AMP, - ACTIONS(1634), 1, + ACTIONS(1641), 1, anon_sym_CARET, - ACTIONS(1614), 2, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1616), 2, + ACTIONS(1623), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1622), 2, + ACTIONS(1629), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, ACTIONS(1581), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1628), 3, + ACTIONS(1635), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 15, + ACTIONS(1579), 16, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [40892] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1610), 1, - anon_sym_DOT, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1620), 1, anon_sym_PIPE, - ACTIONS(1624), 1, - anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_STAR_STAR, - ACTIONS(1632), 1, - anon_sym_AMP, - ACTIONS(1634), 1, - anon_sym_CARET, - ACTIONS(1614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1616), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1622), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(792), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1585), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1583), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, @@ -60648,19 +58196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40960] = 8, + anon_sym_SEMI, + [40965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1624), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - STATE(792), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, ACTIONS(1573), 5, @@ -60694,8 +58242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41014] = 3, + anon_sym_SEMI, + [41019] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1401), 4, @@ -60736,84 +58284,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41058] = 14, + [41063] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1624), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1632), 1, - anon_sym_AMP, - ACTIONS(1634), 1, - anon_sym_CARET, - ACTIONS(1614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1616), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1622), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(792), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 3, + ACTIONS(1581), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1571), 16, + ACTIONS(1579), 25, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41124] = 10, + anon_sym_SEMI, + [41117] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1624), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1614), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(792), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 3, + ACTIONS(1581), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1628), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1571), 22, + ACTIONS(1579), 25, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -60823,9 +58360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_AT, 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, @@ -60835,37 +58375,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41182] = 8, + anon_sym_SEMI, + [41171] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1624), 1, + ACTIONS(1627), 1, + anon_sym_PIPE, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - STATE(792), 2, + ACTIONS(1639), 1, + anon_sym_AMP, + ACTIONS(1641), 1, + anon_sym_CARET, + ACTIONS(1621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1623), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1629), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 5, - anon_sym_STAR, + ACTIONS(1577), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 25, + ACTIONS(1635), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1575), 15, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [41239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + STATE(678), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1036), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1031), 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_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -60881,8 +58472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41236] = 19, + [41287] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, @@ -60903,7 +58493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(1675), 1, anon_sym_is, - STATE(881), 1, + STATE(884), 1, aux_sym_comparison_operator_repeat1, ACTIONS(1651), 2, anon_sym_STAR, @@ -60917,7 +58507,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1673), 2, anon_sym_LT, anon_sym_GT, - STATE(847), 2, + STATE(818), 2, sym_argument_list, sym_generator_expression, ACTIONS(1665), 3, @@ -60931,7 +58521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1479), 7, + ACTIONS(1439), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -60939,40 +58529,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [41312] = 13, + [41363] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1624), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1634), 1, - anon_sym_CARET, - ACTIONS(1614), 2, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1616), 2, + ACTIONS(1623), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1622), 2, + ACTIONS(1629), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 3, + ACTIONS(1581), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1628), 3, + ACTIONS(1635), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 17, + ACTIONS(1579), 18, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -60983,88 +58571,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(646), 1, - sym__string_start, - STATE(678), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1053), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1048), 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41424] = 12, + anon_sym_SEMI, + [41425] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1624), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1614), 2, + ACTIONS(1641), 1, + anon_sym_CARET, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1616), 2, + ACTIONS(1623), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1622), 2, + ACTIONS(1629), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(792), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1573), 3, + ACTIONS(1581), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1628), 3, + ACTIONS(1635), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 18, + ACTIONS(1579), 17, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -61075,15 +58623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41486] = 3, + anon_sym_SEMI, + [41489] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1405), 4, @@ -61124,94 +58671,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41530] = 8, + [41533] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1612), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1624), 1, + ACTIONS(1627), 1, + anon_sym_PIPE, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - STATE(792), 2, + ACTIONS(1639), 1, + anon_sym_AMP, + ACTIONS(1641), 1, + anon_sym_CARET, + ACTIONS(1621), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1623), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1629), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1577), 5, - anon_sym_STAR, + ACTIONS(1585), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1575), 25, + ACTIONS(1635), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1583), 15, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41584] = 15, + anon_sym_SEMI, + [41601] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1649), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1657), 1, + ACTIONS(1627), 1, anon_sym_PIPE, - ACTIONS(1661), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1663), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1669), 1, + ACTIONS(1639), 1, anon_sym_AMP, - ACTIONS(1671), 1, + ACTIONS(1641), 1, anon_sym_CARET, - ACTIONS(1589), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1653), 2, + ACTIONS(1623), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1659), 2, + ACTIONS(1629), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(847), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1665), 3, + ACTIONS(1589), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1635), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, ACTIONS(1587), 15, - anon_sym_RPAREN, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_not, anon_sym_and, @@ -61222,37 +58776,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41651] = 10, + anon_sym_SEMI, + [41669] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1649), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - ACTIONS(1661), 1, + ACTIONS(1631), 1, anon_sym_LBRACK, - ACTIONS(1663), 1, + ACTIONS(1633), 1, anon_sym_STAR_STAR, - ACTIONS(1573), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, + ACTIONS(1621), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(847), 2, + STATE(798), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1665), 3, + ACTIONS(1581), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1635), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 22, - anon_sym_RPAREN, + ACTIONS(1579), 22, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61269,7 +58824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41708] = 4, + anon_sym_SEMI, + [41727] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(303), 3, @@ -61290,7 +58846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(307), 19, + ACTIONS(566), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -61310,55 +58866,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [41753] = 5, + [41772] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, - anon_sym_COLON_EQ, - ACTIONS(1050), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1053), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1048), 27, + ACTIONS(1647), 1, anon_sym_DOT, + ACTIONS(1649), 1, anon_sym_LPAREN, + ACTIONS(1661), 1, + anon_sym_LBRACK, + ACTIONS(1663), 1, + anon_sym_STAR_STAR, + ACTIONS(1671), 1, + anon_sym_CARET, + ACTIONS(1581), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1653), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(818), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1665), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1579), 17, + anon_sym_RPAREN, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41835] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1170), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_STAR_STAR, anon_sym_AT, - 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, + ACTIONS(1172), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + 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, + [41880] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1647), 1, + anon_sym_DOT, + ACTIONS(1649), 1, + anon_sym_LPAREN, + ACTIONS(1657), 1, + anon_sym_PIPE, + ACTIONS(1661), 1, + anon_sym_LBRACK, + ACTIONS(1663), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_AMP, + ACTIONS(1671), 1, + anon_sym_CARET, + ACTIONS(1589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1653), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1659), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(818), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1665), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1587), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41800] = 14, + [41947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1138), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1143), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1145), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + 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, + [41992] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, anon_sym_DOT, ACTIONS(1649), 1, anon_sym_LPAREN, + ACTIONS(1657), 1, + anon_sym_PIPE, ACTIONS(1661), 1, anon_sym_LBRACK, ACTIONS(1663), 1, @@ -61367,7 +59067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1671), 1, anon_sym_CARET, - ACTIONS(1573), 2, + ACTIONS(1585), 2, anon_sym_LT, anon_sym_GT, ACTIONS(1651), 2, @@ -61379,21 +59079,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(847), 2, + STATE(818), 2, sym_argument_list, sym_generator_expression, ACTIONS(1665), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 16, + ACTIONS(1583), 15, 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, @@ -61403,15 +59102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41865] = 15, + [42059] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, anon_sym_DOT, ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1657), 1, - anon_sym_PIPE, ACTIONS(1661), 1, anon_sym_LBRACK, ACTIONS(1663), 1, @@ -61432,20 +59129,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(847), 2, + STATE(818), 2, sym_argument_list, sym_generator_expression, ACTIONS(1665), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 15, + ACTIONS(1579), 16, 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, @@ -61455,7 +59153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41932] = 11, + [42124] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, @@ -61466,23 +59164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1663), 1, anon_sym_STAR_STAR, - ACTIONS(1573), 2, + ACTIONS(1581), 2, anon_sym_LT, anon_sym_GT, ACTIONS(1651), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(847), 2, + STATE(818), 2, sym_argument_list, sym_generator_expression, ACTIONS(1665), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 20, + ACTIONS(1579), 22, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -61491,6 +59186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -61503,7 +59200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41991] = 8, + [42181] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, @@ -61514,7 +59211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1663), 1, anon_sym_STAR_STAR, - STATE(847), 2, + STATE(818), 2, sym_argument_list, sym_generator_expression, ACTIONS(1573), 4, @@ -61548,18 +59245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42044] = 4, + [42234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(287), 1, anon_sym_COLON_EQ, - ACTIONS(1053), 5, + ACTIONS(276), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 29, + ACTIONS(303), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61588,20 +59285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42089] = 4, + anon_sym_SEMI, + [42279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 5, + ACTIONS(1405), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1403), 30, sym__newline, + sym__string_start, anon_sym_DOT, anon_sym_from, anon_sym_LPAREN, @@ -61629,37 +59325,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42134] = 8, + anon_sym_SEMI, + [42322] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - STATE(847), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1573), 4, + ACTIONS(608), 1, + anon_sym_COLON_EQ, + ACTIONS(620), 1, + anon_sym_EQ, + ACTIONS(276), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1571), 25, + ACTIONS(303), 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_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -61675,76 +59368,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42187] = 15, + [42369] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, anon_sym_DOT, ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1657), 1, - anon_sym_PIPE, ACTIONS(1661), 1, anon_sym_LBRACK, ACTIONS(1663), 1, anon_sym_STAR_STAR, - ACTIONS(1669), 1, - anon_sym_AMP, - ACTIONS(1671), 1, - anon_sym_CARET, - ACTIONS(1585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1659), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(847), 2, + STATE(818), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1665), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1583), 15, + ACTIONS(1581), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1579), 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42254] = 3, + [42422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 5, + ACTIONS(1606), 1, + anon_sym_COLON_EQ, + ACTIONS(1073), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1036), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 30, - sym__newline, - sym__string_start, + ACTIONS(1031), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61766,20 +59455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42297] = 5, + [42469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, + ACTIONS(1606), 1, anon_sym_COLON_EQ, ACTIONS(1677), 1, anon_sym_EQ, - ACTIONS(1053), 4, + ACTIONS(1036), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 29, + ACTIONS(1031), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61809,27 +59497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42344] = 5, + [42516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(1076), 1, anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(276), 4, + ACTIONS(1036), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1031), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, 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_PIPE, anon_sym_DASH, @@ -61851,7 +59537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42391] = 13, + anon_sym_SEMI, + [42561] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, @@ -61862,9 +59549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1663), 1, anon_sym_STAR_STAR, - ACTIONS(1671), 1, - anon_sym_CARET, - ACTIONS(1573), 2, + ACTIONS(1581), 2, anon_sym_LT, anon_sym_GT, ACTIONS(1651), 2, @@ -61876,14 +59561,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(847), 2, + STATE(818), 2, sym_argument_list, sym_generator_expression, ACTIONS(1665), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 17, + ACTIONS(1579), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -61895,54 +59580,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42454] = 4, + [42622] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1048), 3, + ACTIONS(1647), 1, anon_sym_DOT, + ACTIONS(1649), 1, anon_sym_LPAREN, + ACTIONS(1657), 1, + anon_sym_PIPE, + ACTIONS(1661), 1, anon_sym_LBRACK, - ACTIONS(1053), 13, + ACTIONS(1663), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_AMP, + ACTIONS(1671), 1, + anon_sym_CARET, + ACTIONS(1577), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1651), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1653), 2, anon_sym_GT_GT, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, + STATE(818), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1665), 3, anon_sym_AT, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1078), 19, + ACTIONS(1575), 15, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, - 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, - [42499] = 12, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42689] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1647), 1, @@ -61953,29 +59650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1663), 1, anon_sym_STAR_STAR, - ACTIONS(1573), 2, + ACTIONS(1581), 2, anon_sym_LT, anon_sym_GT, ACTIONS(1651), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, ACTIONS(1659), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(847), 2, + STATE(818), 2, sym_argument_list, sym_generator_expression, ACTIONS(1665), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 18, + ACTIONS(1579), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -61985,33 +59680,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42560] = 5, + [42748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, - anon_sym_COLON_EQ, - ACTIONS(280), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(276), 4, + ACTIONS(1401), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 27, + ACTIONS(1399), 30, + sym__newline, + sym__string_start, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -62033,14 +59726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42607] = 4, + anon_sym_SEMI, + [42791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 3, + ACTIONS(1031), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1170), 13, + ACTIONS(1036), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -62054,7 +59748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1172), 19, + ACTIONS(1042), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62074,52 +59768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [42652] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, - anon_sym_LBRACK, - ACTIONS(1663), 1, - anon_sym_STAR_STAR, - STATE(847), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1577), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1575), 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_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42705] = 4, + [42836] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(303), 3, @@ -62140,7 +59789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(572), 19, + ACTIONS(307), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62160,65 +59809,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [42750] = 4, + [42881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1146), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1151), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1153), 19, + ACTIONS(608), 1, + anon_sym_COLON_EQ, + ACTIONS(280), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, anon_sym_RBRACK, - 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, - [42795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1405), 5, + ACTIONS(276), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1403), 30, - sym__newline, - sym__string_start, + ACTIONS(303), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -62240,15 +59851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42838] = 4, + [42928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1048), 3, + ACTIONS(1031), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1053), 13, + ACTIONS(1036), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -62262,7 +59872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1059), 19, + ACTIONS(1080), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62282,224 +59892,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [42883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1461), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1459), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [42925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1423), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [42967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1455), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [43009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1451), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [43051] = 3, + [42973] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1531), 29, - sym__newline, + ACTIONS(1647), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(1649), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1661), 1, anon_sym_LBRACK, + ACTIONS(1663), 1, anon_sym_STAR_STAR, - anon_sym_AT, - 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [43093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1437), 5, + STATE(818), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1581), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 29, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1579), 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_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -62515,17 +59937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43135] = 3, + [43026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 5, + ACTIONS(1537), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 29, + ACTIONS(1535), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62554,17 +59975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43177] = 3, + anon_sym_SEMI, + [43068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 5, + ACTIONS(1421), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 29, + ACTIONS(1419), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62593,26 +60014,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43219] = 4, + anon_sym_SEMI, + [43110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 3, - anon_sym_RPAREN, + ACTIONS(1485), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1170), 4, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [43152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(628), 1, + anon_sym_COLON_EQ, + ACTIONS(276), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1165), 27, + ACTIONS(303), 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_PIPE, anon_sym_DASH, @@ -62634,16 +60094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43263] = 3, + [43196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 5, + ACTIONS(1413), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 29, + ACTIONS(1411), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62672,17 +60132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43305] = 3, + anon_sym_SEMI, + [43238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 5, + ACTIONS(1521), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1471), 29, + ACTIONS(1519), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62711,17 +60171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43347] = 3, + anon_sym_SEMI, + [43280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 5, + ACTIONS(1429), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1415), 29, + ACTIONS(1427), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62750,17 +60210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43389] = 3, + anon_sym_SEMI, + [43322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 5, + ACTIONS(1561), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1423), 29, + ACTIONS(1559), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62789,17 +60249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43431] = 3, + anon_sym_SEMI, + [43364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 5, + ACTIONS(1545), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 29, + ACTIONS(1543), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62828,17 +60288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43473] = 3, + anon_sym_SEMI, + [43406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 5, + ACTIONS(1541), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(1539), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62867,17 +60327,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43515] = 3, + anon_sym_SEMI, + [43448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1151), 5, + ACTIONS(1425), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1146), 29, + ACTIONS(1423), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62906,17 +60366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43557] = 3, + anon_sym_SEMI, + [43490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 5, + ACTIONS(1525), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1165), 29, + ACTIONS(1523), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62945,17 +60405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43599] = 3, + anon_sym_SEMI, + [43532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 5, + ACTIONS(1489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1509), 29, + ACTIONS(1487), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62984,26 +60444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43641] = 4, + anon_sym_SEMI, + [43574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1151), 4, + ACTIONS(1533), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1146), 27, + ACTIONS(1531), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -63025,16 +60483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43685] = 3, + anon_sym_SEMI, + [43616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 5, + ACTIONS(1493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 29, + ACTIONS(1491), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63063,17 +60522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43727] = 3, + anon_sym_SEMI, + [43658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 5, + ACTIONS(1549), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1521), 29, + ACTIONS(1547), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63102,17 +60561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43769] = 3, + anon_sym_SEMI, + [43700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 5, + ACTIONS(1409), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1513), 29, + ACTIONS(1407), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63141,8 +60600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43811] = 3, + anon_sym_SEMI, + [43742] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1417), 5, @@ -63180,17 +60639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43853] = 3, + anon_sym_SEMI, + [43784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(276), 5, + ACTIONS(1421), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(1419), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63219,17 +60678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43895] = 3, + anon_sym_SEMI, + [43826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 5, + ACTIONS(1565), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(1563), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63258,17 +60717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43937] = 3, + anon_sym_SEMI, + [43868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 5, + ACTIONS(1433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 29, + ACTIONS(1431), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63297,17 +60756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43979] = 3, + anon_sym_SEMI, + [43910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 5, + ACTIONS(1413), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 29, + ACTIONS(1411), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63336,24 +60795,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44021] = 4, + anon_sym_SEMI, + [43952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1679), 1, - anon_sym_COLON_EQ, - ACTIONS(1053), 5, + ACTIONS(1493), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 28, + ACTIONS(1491), 29, + sym__newline, 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_in, @@ -63377,16 +60834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44065] = 3, + anon_sym_SEMI, + [43994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 5, + ACTIONS(1036), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(1031), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63415,17 +60873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44107] = 3, + anon_sym_SEMI, + [44036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 5, + ACTIONS(1143), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1138), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63454,26 +60912,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44149] = 4, + anon_sym_SEMI, + [44078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(628), 1, - anon_sym_COLON_EQ, - ACTIONS(276), 5, + ACTIONS(1073), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1036), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 28, + ACTIONS(1031), 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_PIPE, anon_sym_DASH, @@ -63495,16 +60953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44193] = 3, + [44122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 5, + ACTIONS(1529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1567), 29, + ACTIONS(1527), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63533,17 +60991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44235] = 3, + anon_sym_SEMI, + [44164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 5, + ACTIONS(1477), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1431), 29, + ACTIONS(1475), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63572,17 +61030,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44277] = 3, + anon_sym_SEMI, + [44206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1409), 5, + ACTIONS(1167), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1170), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1170), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1407), 29, + ACTIONS(1165), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63611,17 +61109,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44319] = 3, + anon_sym_SEMI, + [44292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 5, + ACTIONS(1679), 1, + anon_sym_COLON_EQ, + ACTIONS(1036), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1031), 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1535), 29, + ACTIONS(1479), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63650,26 +61188,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44361] = 4, + anon_sym_SEMI, + [44378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1053), 4, + ACTIONS(1553), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 27, + ACTIONS(1551), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -63691,16 +61227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44405] = 3, + anon_sym_SEMI, + [44420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 5, + ACTIONS(1477), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1419), 29, + ACTIONS(1475), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63729,17 +61266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44447] = 3, + anon_sym_SEMI, + [44462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 5, + ACTIONS(1569), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1419), 29, + ACTIONS(1567), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -63768,24 +61305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44489] = 3, + anon_sym_SEMI, + [44504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(1557), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 29, + ACTIONS(1555), 29, + sym__newline, 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_PIPE, anon_sym_DASH, @@ -63807,23 +61344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44530] = 3, + anon_sym_SEMI, + [44546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 4, + ACTIONS(276), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(830), 29, + ACTIONS(303), 29, + sym__newline, 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_PIPE, anon_sym_DASH, @@ -63845,23 +61383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44571] = 3, + anon_sym_SEMI, + [44588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 4, + ACTIONS(1140), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1143), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 29, + ACTIONS(1138), 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_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -63883,25 +61424,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44612] = 5, + [44632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 1, - anon_sym_COLON_EQ, - ACTIONS(1677), 1, - anon_sym_EQ, - ACTIONS(1053), 4, + ACTIONS(1545), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1048), 27, + ACTIONS(1543), 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_PIPE, anon_sym_DASH, @@ -63923,15 +61462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44657] = 3, + [44673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 4, + ACTIONS(1477), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1459), 29, + ACTIONS(1475), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63961,15 +61500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44698] = 3, + [44714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 4, + ACTIONS(1541), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 29, + ACTIONS(1539), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63999,15 +61538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44739] = 3, + [44755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 4, + ACTIONS(1036), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1451), 29, + ACTIONS(1031), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64037,15 +61576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44780] = 3, + [44796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 4, + ACTIONS(1493), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 29, + ACTIONS(1491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64075,15 +61614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44821] = 3, + [44837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1409), 4, + ACTIONS(276), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1407), 29, + ACTIONS(303), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64113,15 +61652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44862] = 3, + [44878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 4, + ACTIONS(1485), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 29, + ACTIONS(1483), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64151,15 +61690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44903] = 3, + [44919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 4, + ACTIONS(1413), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1531), 29, + ACTIONS(1411), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64189,15 +61728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44944] = 3, + [44960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 4, + ACTIONS(1529), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(1527), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64227,15 +61766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44985] = 3, + [45001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 4, + ACTIONS(1413), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 29, + ACTIONS(1411), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64265,15 +61804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45026] = 3, + [45042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(828), 4, + ACTIONS(1561), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(826), 29, + ACTIONS(1559), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64303,15 +61842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45067] = 3, + [45083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 4, + ACTIONS(1569), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1419), 29, + ACTIONS(1567), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64341,15 +61880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45108] = 3, + [45124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 4, + ACTIONS(1533), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1419), 29, + ACTIONS(1531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64379,15 +61918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45149] = 3, + [45165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 4, + ACTIONS(1525), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1471), 29, + ACTIONS(1523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64417,15 +61956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45190] = 3, + [45206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1541), 4, + ACTIONS(1521), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1519), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64455,15 +61994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45231] = 3, + [45247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 4, + ACTIONS(1433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1415), 29, + ACTIONS(1431), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64493,7 +62032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45272] = 3, + [45288] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1537), 4, @@ -64531,7 +62070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45313] = 3, + [45329] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(840), 4, @@ -64569,15 +62108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45354] = 3, + [45370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1569), 4, + ACTIONS(1553), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1567), 29, + ACTIONS(1551), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64607,15 +62146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45395] = 3, + [45411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 4, + ACTIONS(828), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1415), 29, + ACTIONS(826), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64645,15 +62184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45436] = 3, + [45452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(276), 4, + ACTIONS(828), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 29, + ACTIONS(826), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64683,23 +62222,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45477] = 3, + [45493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 4, + ACTIONS(1038), 1, + anon_sym_COLON_EQ, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(1036), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1509), 29, + ACTIONS(1031), 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_PIPE, anon_sym_DASH, @@ -64721,15 +62262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45518] = 3, + [45538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(836), 4, + ACTIONS(1557), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, + ACTIONS(1555), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64759,15 +62300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45559] = 3, + [45579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(1481), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 29, + ACTIONS(1479), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64797,15 +62338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45600] = 3, + [45620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 4, + ACTIONS(1477), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(830), 29, + ACTIONS(1475), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64835,25 +62376,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45641] = 5, + [45661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(568), 1, - anon_sym_COLON_EQ, - ACTIONS(620), 1, - anon_sym_EQ, - ACTIONS(276), 4, + ACTIONS(832), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(303), 27, + ACTIONS(830), 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_PIPE, anon_sym_DASH, @@ -64875,7 +62414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45686] = 3, + [45702] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1425), 4, @@ -64913,15 +62452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45727] = 3, + [45743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 4, + ACTIONS(1493), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1411), 29, + ACTIONS(1491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64951,15 +62490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45768] = 3, + [45784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 4, + ACTIONS(832), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 29, + ACTIONS(830), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -64989,15 +62528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45809] = 3, + [45825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 4, + ACTIONS(836), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1427), 29, + ACTIONS(834), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65027,15 +62566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45850] = 3, + [45866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 4, + ACTIONS(1565), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(1563), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65065,15 +62604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45891] = 3, + [45907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 4, + ACTIONS(1417), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1423), 29, + ACTIONS(1415), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65103,7 +62642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45932] = 3, + [45948] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(824), 4, @@ -65141,15 +62680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45973] = 3, + [45989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(824), 4, + ACTIONS(1549), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(822), 29, + ACTIONS(1547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65179,15 +62718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46014] = 3, + [46030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 4, + ACTIONS(1421), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1431), 29, + ACTIONS(1419), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65217,15 +62756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46055] = 3, + [46071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 4, + ACTIONS(1409), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1513), 29, + ACTIONS(1407), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65255,15 +62794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46096] = 3, + [46112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 4, + ACTIONS(1489), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1521), 29, + ACTIONS(1487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65293,61 +62832,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46137] = 20, + [46153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, - sym__string_start, - ACTIONS(1681), 1, - sym_identifier, - ACTIONS(1683), 1, + ACTIONS(1421), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1419), 29, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1685), 1, + 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_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 4, anon_sym_STAR, - ACTIONS(1687), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1427), 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_PIPE, anon_sym_DASH, - ACTIONS(1689), 1, - sym_match_wildcard_pattern, - ACTIONS(1691), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1693), 1, - anon_sym_LBRACE, - ACTIONS(1695), 1, - sym_integer, - ACTIONS(1697), 1, - sym_float, - STATE(913), 1, - sym_string, - STATE(975), 1, - sym_concatenated_string, - STATE(1406), 1, - sym_pattern_class_name, - STATE(1024), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1286), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1287), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1404), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1699), 3, - sym_true, - sym_false, - sym_none, - STATE(971), 8, - sym__closed_pattern, - sym_match_literal_pattern, - sym_match_capture_pattern, - sym_match_value_pattern, - sym_match_group_pattern, - sym_match_sequence_pattern, - sym_match_mapping_pattern, - sym_match_class_pattern, - [46211] = 20, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(562), 1, + anon_sym_COLON_EQ, + ACTIONS(620), 1, + anon_sym_EQ, + ACTIONS(276), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(303), 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46280] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65359,40 +62960,40 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1685), 1, anon_sym_STAR, ACTIONS(1687), 1, - anon_sym_DASH, + anon_sym_if, ACTIONS(1689), 1, - sym_match_wildcard_pattern, + anon_sym_COLON, ACTIONS(1691), 1, - anon_sym_LBRACK, + anon_sym_DASH, ACTIONS(1693), 1, - anon_sym_LBRACE, + sym_match_wildcard_pattern, ACTIONS(1695), 1, - sym_integer, + anon_sym_LBRACK, ACTIONS(1697), 1, - sym_float, + anon_sym_LBRACE, + ACTIONS(1699), 1, + sym_integer, ACTIONS(1701), 1, - anon_sym_if, - ACTIONS(1703), 1, - anon_sym_COLON, - STATE(913), 1, + sym_float, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(1106), 4, + STATE(1104), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65401,7 +63002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46285] = 20, + [46354] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65412,41 +63013,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - ACTIONS(1705), 1, - anon_sym_if, - ACTIONS(1707), 1, - anon_sym_COLON, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1699), 3, - sym_true, - sym_false, - sym_none, - STATE(1106), 4, + STATE(1336), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1338), 2, sym__match_pattern, sym_match_as_pattern, + STATE(1359), 2, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(971), 8, + ACTIONS(1703), 3, + sym_true, + sym_false, + sym_none, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65455,7 +63056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46359] = 20, + [46428] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65466,41 +63067,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1221), 2, + STATE(1292), 2, sym__match_patterns, sym_open_sequence_match_pattern, - STATE(1287), 2, + STATE(1338), 2, sym__match_pattern, sym_match_as_pattern, - STATE(1404), 2, + STATE(1359), 2, sym__match_maybe_star_pattern, sym_match_star_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65509,7 +63110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46433] = 20, + [46502] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65520,40 +63121,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - ACTIONS(1709), 1, - anon_sym_RPAREN, - STATE(913), 1, + ACTIONS(1705), 1, + anon_sym_if, + ACTIONS(1707), 1, + anon_sym_COLON, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1392), 2, + ACTIONS(1703), 3, + sym_true, + sym_false, + sym_none, + STATE(1104), 4, sym__match_pattern, sym_match_as_pattern, - STATE(1396), 2, sym__match_maybe_star_pattern, sym_match_star_pattern, - ACTIONS(1699), 3, - sym_true, - sym_false, - sym_none, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65562,7 +63164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46506] = 19, + [46576] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65573,39 +63175,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - ACTIONS(1711), 1, - anon_sym_RPAREN, - STATE(913), 1, + ACTIONS(1709), 1, + anon_sym_RBRACK, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(1106), 4, + STATE(1257), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65614,7 +63216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46577] = 19, + [46647] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65625,39 +63227,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1711), 1, anon_sym_RBRACK, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(1106), 4, + STATE(1104), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65666,7 +63268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46648] = 19, + [46718] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65677,39 +63279,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - ACTIONS(1709), 1, + ACTIONS(1713), 1, anon_sym_RBRACK, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(1202), 4, + STATE(1104), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65718,7 +63320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46719] = 19, + [46789] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65729,39 +63331,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1713), 1, - anon_sym_RBRACK, - STATE(913), 1, + anon_sym_RPAREN, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(1106), 4, + STATE(1104), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65770,7 +63372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46790] = 19, + [46860] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65781,39 +63383,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - ACTIONS(1713), 1, + ACTIONS(1709), 1, anon_sym_RPAREN, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1699), 3, - sym_true, - sym_false, - sym_none, - STATE(1106), 4, + STATE(1385), 2, sym__match_pattern, sym_match_as_pattern, + STATE(1388), 2, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(971), 8, + ACTIONS(1703), 3, + sym_true, + sym_false, + sym_none, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65822,7 +63425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46861] = 18, + [46933] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -65833,37 +63436,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - STATE(913), 1, + ACTIONS(1711), 1, + anon_sym_RPAREN, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(1106), 4, + STATE(1104), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65872,50 +63477,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46929] = 20, + [47004] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1715), 1, sym_identifier, ACTIONS(1717), 1, anon_sym_RPAREN, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1212), 1, - sym_match_positional_pattern, - STATE(1330), 1, + STATE(1295), 1, sym_match_keyword_pattern, - STATE(1406), 1, + STATE(1374), 1, + sym_match_positional_pattern, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1364), 2, + STATE(1357), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65924,50 +63529,100 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47001] = 20, + [47076] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, + ACTIONS(1681), 1, + sym_identifier, ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1685), 1, + anon_sym_STAR, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, + ACTIONS(1701), 1, + sym_float, + STATE(933), 1, + sym_string, + STATE(1007), 1, + sym_concatenated_string, + STATE(1447), 1, + sym_pattern_class_name, + STATE(1038), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1703), 3, + sym_true, + sym_false, + sym_none, + STATE(1104), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1014), 8, + sym__closed_pattern, + sym_match_literal_pattern, + sym_match_capture_pattern, + sym_match_value_pattern, + sym_match_group_pattern, + sym_match_sequence_pattern, + sym_match_mapping_pattern, + sym_match_class_pattern, + [47144] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + ACTIONS(1683), 1, + anon_sym_LPAREN, + ACTIONS(1691), 1, + anon_sym_DASH, + ACTIONS(1693), 1, + sym_match_wildcard_pattern, + ACTIONS(1695), 1, + anon_sym_LBRACK, ACTIONS(1697), 1, + anon_sym_LBRACE, + ACTIONS(1699), 1, + sym_integer, + ACTIONS(1701), 1, sym_float, ACTIONS(1715), 1, sym_identifier, ACTIONS(1719), 1, anon_sym_RPAREN, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1290), 1, + STATE(1323), 1, sym_match_keyword_pattern, - STATE(1403), 1, + STATE(1324), 1, sym_match_positional_pattern, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1364), 2, + STATE(1357), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -65976,50 +63631,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47073] = 20, + [47216] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, sym__string_start, ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1715), 1, sym_identifier, ACTIONS(1721), 1, anon_sym_RPAREN, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1326), 1, + STATE(1246), 1, sym_match_keyword_pattern, - STATE(1403), 1, + STATE(1374), 1, sym_match_positional_pattern, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1364), 2, + STATE(1357), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -66028,7 +63683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47145] = 18, + [47288] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -66037,37 +63692,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1403), 1, + STATE(1374), 1, sym_match_positional_pattern, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1364), 2, + STATE(1357), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -66076,7 +63731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47211] = 17, + [47354] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -66085,35 +63740,35 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1355), 2, + STATE(1377), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -66122,7 +63777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47274] = 17, + [47417] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -66131,35 +63786,35 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - ACTIONS(1691), 1, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - STATE(1024), 2, + STATE(1038), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1399), 2, + STATE(1353), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(971), 8, + STATE(1014), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -66168,7 +63823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47337] = 15, + [47480] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -66177,29 +63832,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_DASH, ACTIONS(1691), 1, + anon_sym_DASH, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1723), 1, sym_match_wildcard_pattern, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(984), 8, + STATE(957), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -66208,7 +63863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47392] = 15, + [47535] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -66217,29 +63872,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1683), 1, anon_sym_LPAREN, - ACTIONS(1687), 1, - anon_sym_DASH, ACTIONS(1691), 1, + anon_sym_DASH, + ACTIONS(1695), 1, anon_sym_LBRACK, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_LBRACE, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1725), 1, sym_match_wildcard_pattern, - STATE(913), 1, + STATE(933), 1, sym_string, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1406), 1, + STATE(1447), 1, sym_pattern_class_name, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - STATE(957), 8, + STATE(986), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -66248,21 +63903,21 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47447] = 8, + [47590] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_as, - ACTIONS(1734), 1, + ACTIONS(1459), 1, anon_sym_not, - ACTIONS(1740), 1, + ACTIONS(1467), 1, anon_sym_is, - STATE(868), 1, + ACTIONS(1729), 1, + anon_sym_as, + STATE(870), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1737), 2, + ACTIONS(1465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1731), 6, + ACTIONS(1447), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -66280,60 +63935,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [47487] = 8, + [47630] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_EQ, - ACTIONS(1746), 1, + ACTIONS(1733), 1, + anon_sym_as, + ACTIONS(1738), 1, anon_sym_not, - ACTIONS(1752), 1, + ACTIONS(1744), 1, anon_sym_is, - STATE(869), 1, + STATE(870), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1749), 2, + ACTIONS(1741), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1743), 6, + ACTIONS(1735), 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(1727), 10, + ACTIONS(1731), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [47527] = 8, + [47670] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_not, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_is, - ACTIONS(1757), 1, + ACTIONS(1729), 1, anon_sym_EQ, - STATE(869), 1, + STATE(872), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1505), 2, + ACTIONS(1515), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 6, + ACTIONS(1499), 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(1755), 10, + ACTIONS(1727), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -66344,44 +63999,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [47567] = 8, + [47710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1750), 1, anon_sym_not, - ACTIONS(1565), 1, + ACTIONS(1756), 1, anon_sym_is, - ACTIONS(1757), 1, - anon_sym_as, - STATE(868), 1, + STATE(872), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1563), 2, + ACTIONS(1753), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1547), 6, + ACTIONS(1747), 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(1755), 10, + ACTIONS(1731), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [47607] = 4, + sym_type_conversion, + [47750] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1761), 1, anon_sym_COMMA, - STATE(872), 1, + STATE(873), 1, aux_sym__patterns_repeat1, ACTIONS(1759), 18, anon_sym_RPAREN, @@ -66402,10 +64057,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47637] = 2, + [47780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 19, + ACTIONS(276), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1764), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(303), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [47809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1766), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -66425,10 +64105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47662] = 2, + [47834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1766), 19, + ACTIONS(1768), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -66448,10 +64128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47687] = 2, + [47859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 19, + ACTIONS(1770), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -66471,10 +64151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47712] = 2, + [47884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1768), 19, + ACTIONS(1080), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -66494,21 +64174,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47737] = 8, + [47909] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, - anon_sym_EQ, - ACTIONS(1773), 1, + ACTIONS(1637), 1, anon_sym_not, - ACTIONS(1779), 1, + ACTIONS(1645), 1, anon_sym_is, - STATE(877), 1, + ACTIONS(1729), 1, + anon_sym_EQ, + STATE(880), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1776), 2, + ACTIONS(1643), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1770), 6, + ACTIONS(1625), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -66522,72 +64202,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_and, anon_sym_or, - sym__semicolon, - [47774] = 8, + anon_sym_SEMI, + [47946] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1630), 1, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1775), 1, anon_sym_not, - ACTIONS(1638), 1, + ACTIONS(1781), 1, anon_sym_is, - ACTIONS(1757), 1, - anon_sym_EQ, - STATE(877), 1, + STATE(880), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1636), 2, + ACTIONS(1778), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1618), 6, + ACTIONS(1772), 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(1755), 7, + ACTIONS(1731), 7, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_and, anon_sym_or, - sym__semicolon, - [47811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1053), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1782), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1048), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [47840] = 4, + anon_sym_SEMI, + [47983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(276), 2, + ACTIONS(1036), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1784), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(303), 14, + ACTIONS(1031), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -66602,26 +64257,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [47869] = 7, + [48012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1667), 1, + ACTIONS(1789), 1, anon_sym_not, - ACTIONS(1675), 1, + ACTIONS(1795), 1, anon_sym_is, - STATE(883), 1, + STATE(882), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1673), 2, + ACTIONS(1792), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 6, + ACTIONS(1786), 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(1755), 7, + ACTIONS(1731), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66629,52 +64284,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [47903] = 13, + [48046] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(1477), 1, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1487), 1, - anon_sym_PIPE, - ACTIONS(1491), 1, + ACTIONS(1453), 1, anon_sym_LBRACK, - ACTIONS(1493), 1, - anon_sym_STAR_STAR, ACTIONS(1501), 1, + anon_sym_PIPE, + ACTIONS(1505), 1, + anon_sym_STAR_STAR, + ACTIONS(1511), 1, anon_sym_AMP, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_CARET, - ACTIONS(1481), 2, + ACTIONS(1495), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1483), 2, + ACTIONS(1497), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1489), 2, + ACTIONS(1503), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(633), 2, + STATE(634), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1497), 3, + ACTIONS(1507), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [47949] = 7, + [48092] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(1667), 1, anon_sym_not, - ACTIONS(1795), 1, + ACTIONS(1675), 1, anon_sym_is, - STATE(883), 1, + STATE(882), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1792), 2, + ACTIONS(1673), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1786), 6, + ACTIONS(1655), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -66689,12 +64344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [47983] = 4, + [48126] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1798), 1, anon_sym_COMMA, - STATE(872), 1, + STATE(873), 1, aux_sym__patterns_repeat1, ACTIONS(1800), 16, anon_sym_COLON, @@ -66713,7 +64368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48011] = 12, + [48154] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -66728,23 +64383,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - STATE(1334), 1, + STATE(1214), 1, sym_parameter, - STATE(1453), 1, - sym_lambda_parameters, - STATE(1521), 1, + STATE(1414), 1, sym__parameters, - STATE(1347), 2, + STATE(1435), 1, + sym_lambda_parameters, + STATE(1349), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48054] = 12, + [48197] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1814), 1, + anon_sym_COMMA, + ACTIONS(1816), 1, + anon_sym_COLON, + ACTIONS(1818), 1, + anon_sym_EQ, + STATE(885), 1, + aux_sym__patterns_repeat1, + ACTIONS(1820), 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, + [48228] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -66757,25 +64437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1814), 1, + ACTIONS(1822), 1, anon_sym_COLON, - STATE(1334), 1, + STATE(1214), 1, sym_parameter, - STATE(1458), 1, - sym_lambda_parameters, - STATE(1521), 1, + STATE(1414), 1, sym__parameters, - STATE(1347), 2, + STATE(1425), 1, + sym_lambda_parameters, + STATE(1349), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48097] = 12, + [48271] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -66788,25 +64468,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1816), 1, + ACTIONS(1824), 1, anon_sym_COLON, - STATE(1334), 1, + STATE(1214), 1, sym_parameter, - STATE(1413), 1, - sym_lambda_parameters, - STATE(1521), 1, + STATE(1414), 1, sym__parameters, - STATE(1347), 2, + STATE(1444), 1, + sym_lambda_parameters, + STATE(1349), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48140] = 12, + [48314] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -66819,50 +64499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1818), 1, - anon_sym_COLON, - STATE(1334), 1, - sym_parameter, - STATE(1427), 1, - sym_lambda_parameters, - STATE(1521), 1, - sym__parameters, - STATE(1347), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1333), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48183] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1820), 1, - anon_sym_COMMA, - ACTIONS(1822), 1, - anon_sym_COLON, - ACTIONS(1824), 1, - anon_sym_EQ, - STATE(884), 1, - aux_sym__patterns_repeat1, - ACTIONS(1826), 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, - [48214] = 12, + ACTIONS(1826), 1, + anon_sym_COLON, + STATE(1214), 1, + sym_parameter, + STATE(1414), 1, + sym__parameters, + STATE(1430), 1, + sym_lambda_parameters, + STATE(1349), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1339), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [48357] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -66877,32 +64532,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(1828), 1, anon_sym_COLON, - STATE(1334), 1, + STATE(1214), 1, sym_parameter, - STATE(1521), 1, + STATE(1414), 1, sym__parameters, - STATE(1524), 1, + STATE(1521), 1, sym_lambda_parameters, - STATE(1347), 2, + STATE(1349), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48257] = 14, + [48400] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, sym__string_start, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1830), 1, sym_identifier, @@ -66910,31 +64565,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(1834), 1, anon_sym_STAR_STAR, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1168), 1, + STATE(1182), 1, sym_string, - STATE(1359), 1, - sym_match_double_star_pattern, - STATE(1362), 1, + STATE(1367), 1, sym_match_key_value_pattern, - STATE(1486), 2, + STATE(1378), 1, + sym_match_double_star_pattern, + STATE(1473), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - [48303] = 14, + [48446] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, sym__string_start, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1830), 1, sym_identifier, @@ -66942,22 +64597,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1836), 1, anon_sym_RBRACE, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1168), 1, + STATE(1182), 1, sym_string, - STATE(1218), 1, + STATE(1222), 1, sym_match_key_value_pattern, - STATE(1368), 1, + STATE(1407), 1, + sym_match_double_star_pattern, + STATE(1473), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1703), 3, + sym_true, + sym_false, + sym_none, + [48492] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1691), 1, + anon_sym_DASH, + ACTIONS(1699), 1, + sym_integer, + ACTIONS(1701), 1, + sym_float, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1834), 1, + anon_sym_STAR_STAR, + ACTIONS(1838), 1, + anon_sym_RBRACE, + STATE(1007), 1, + sym_concatenated_string, + STATE(1182), 1, + sym_string, + STATE(1365), 1, sym_match_double_star_pattern, - STATE(1486), 2, + STATE(1367), 1, + sym_match_key_value_pattern, + STATE(1473), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - [48349] = 11, + [48538] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1804), 1, @@ -66968,57 +64655,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1838), 1, - sym_identifier, ACTIONS(1840), 1, + sym_identifier, + ACTIONS(1842), 1, anon_sym_RPAREN, - STATE(1229), 1, + STATE(1230), 1, sym_parameter, - STATE(1455), 1, + STATE(1483), 1, sym__parameters, - STATE(1267), 2, + STATE(1298), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48389] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1687), 1, - anon_sym_DASH, - ACTIONS(1695), 1, - sym_integer, - ACTIONS(1697), 1, - sym_float, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(1834), 1, - anon_sym_STAR_STAR, - ACTIONS(1842), 1, - anon_sym_RBRACE, - STATE(975), 1, - sym_concatenated_string, - STATE(1168), 1, - sym_string, - STATE(1362), 1, - sym_match_key_value_pattern, - STATE(1401), 1, - sym_match_double_star_pattern, - STATE(1486), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1699), 3, - sym_true, - sym_false, - sym_none, - [48435] = 10, + [48578] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1804), 1, @@ -67029,23 +64684,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1838), 1, + ACTIONS(1840), 1, sym_identifier, ACTIONS(1844), 1, anon_sym_RPAREN, - STATE(1201), 1, + STATE(1276), 1, sym_parameter, - STATE(1267), 2, + STATE(1298), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48472] = 10, + [48615] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -67058,28 +64713,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1846), 1, + ACTIONS(1844), 1, anon_sym_COLON, - STATE(1201), 1, + STATE(1276), 1, sym_parameter, - STATE(1347), 2, + STATE(1349), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48509] = 4, + [48652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1822), 1, + ACTIONS(1816), 1, anon_sym_COLON, - ACTIONS(1824), 1, + ACTIONS(1818), 1, anon_sym_EQ, - ACTIONS(1826), 13, + ACTIONS(1820), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -67093,7 +64748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48534] = 10, + [48677] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -67106,21 +64761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1844), 1, + ACTIONS(1846), 1, anon_sym_COLON, - STATE(1201), 1, + STATE(1276), 1, sym_parameter, - STATE(1347), 2, + STATE(1349), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48571] = 10, + [48714] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1804), 1, @@ -67131,42 +64786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1838), 1, + ACTIONS(1840), 1, sym_identifier, ACTIONS(1846), 1, anon_sym_RPAREN, - STATE(1201), 1, + STATE(1276), 1, sym_parameter, - STATE(1267), 2, + STATE(1298), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 1, - anon_sym_as, - ACTIONS(1479), 13, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [48630] = 3, + [48751] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1850), 1, @@ -67185,7 +64821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [48652] = 9, + [48773] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -67198,19 +64834,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - STATE(1201), 1, + STATE(1276), 1, sym_parameter, - STATE(1347), 2, + STATE(1349), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48686] = 9, + [48807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1854), 1, + anon_sym_as, + ACTIONS(1852), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [48829] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1804), 1, @@ -67221,26 +64876,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1812), 1, anon_sym_SLASH, - ACTIONS(1838), 1, + ACTIONS(1840), 1, sym_identifier, - STATE(1201), 1, + STATE(1276), 1, sym_parameter, - STATE(1267), 2, + STATE(1298), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1333), 6, + STATE(1339), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48720] = 3, + [48863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1854), 1, + ACTIONS(1441), 1, anon_sym_as, - ACTIONS(1852), 13, + ACTIONS(1439), 13, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -67254,38 +64909,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [48742] = 11, + [48885] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(315), 1, sym__string_start, - ACTIONS(1687), 1, + ACTIONS(1691), 1, anon_sym_DASH, - ACTIONS(1695), 1, + ACTIONS(1699), 1, sym_integer, - ACTIONS(1697), 1, + ACTIONS(1701), 1, sym_float, ACTIONS(1830), 1, sym_identifier, - STATE(975), 1, + STATE(1007), 1, sym_concatenated_string, - STATE(1168), 1, + STATE(1182), 1, sym_string, - STATE(1362), 1, + STATE(1367), 1, sym_match_key_value_pattern, - STATE(1486), 2, + STATE(1473), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1699), 3, + ACTIONS(1703), 3, sym_true, sym_false, sym_none, - [48779] = 4, + [48922] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1858), 1, anon_sym_DOT, - STATE(906), 1, + STATE(907), 1, aux_sym_match_value_pattern_repeat1, ACTIONS(1856), 10, anon_sym_import, @@ -67298,78 +64953,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48801] = 12, + [48944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, ACTIONS(1863), 1, - anon_sym_if, + anon_sym_as, ACTIONS(1865), 1, - anon_sym_COLON, + anon_sym_and, ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1861), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_async, - ACTIONS(1869), 1, anon_sym_for, - ACTIONS(1871), 1, + anon_sym_RBRACK, anon_sym_RBRACE, + [48967] = 9, + ACTIONS(1869), 1, + anon_sym_LBRACE2, ACTIONS(1873), 1, - anon_sym_and, + anon_sym_BSLASH, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(1877), 1, + sym__string_end, + STATE(921), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1871), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48998] = 9, + ACTIONS(1869), 1, + anon_sym_LBRACE2, + ACTIONS(1873), 1, + anon_sym_BSLASH, ACTIONS(1875), 1, - anon_sym_or, - STATE(956), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1438), 1, - sym__comprehension_clauses, - [48838] = 5, - ACTIONS(3), 1, sym_comment, ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1877), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48861] = 6, + sym__string_end, + STATE(927), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1871), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49029] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_if, - ACTIONS(1873), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(1887), 1, - anon_sym_as, - ACTIONS(1885), 7, + ACTIONS(1881), 1, anon_sym_RPAREN, + ACTIONS(1883), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(1886), 1, + anon_sym_as, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, anon_sym_async, + ACTIONS(1892), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [48886] = 5, + STATE(958), 1, + sym_for_in_clause, + STATE(1111), 1, + aux_sym__collection_elements_repeat1, + STATE(1421), 1, + sym__comprehension_clauses, + [49066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1891), 1, + ACTIONS(1896), 1, anon_sym_LPAREN, - STATE(906), 1, + STATE(907), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1893), 8, + ACTIONS(1898), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -67378,77 +65058,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48909] = 12, + [49089] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1863), 1, - anon_sym_if, ACTIONS(1865), 1, - anon_sym_COLON, + anon_sym_and, ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(1871), 1, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(1904), 1, anon_sym_RBRACE, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - STATE(956), 1, + STATE(958), 1, sym_for_in_clause, STATE(1111), 1, aux_sym__collection_elements_repeat1, - STATE(1405), 1, + STATE(1418), 1, sym__comprehension_clauses, - [48946] = 6, + [49126] = 9, + ACTIONS(1869), 1, + anon_sym_LBRACE2, + ACTIONS(1873), 1, + anon_sym_BSLASH, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(1906), 1, + sym__string_end, + STATE(921), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1871), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1873), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1897), 1, - anon_sym_as, - ACTIONS(1895), 7, + ACTIONS(1908), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [48971] = 4, + anon_sym_EQ, + sym_type_conversion, + [49180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(646), 1, - sym__string_start, - STATE(678), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1899), 8, + ACTIONS(1865), 1, + anon_sym_and, + ACTIONS(1918), 1, + anon_sym_as, + ACTIONS(1916), 9, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48992] = 5, + anon_sym_or, + [49201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(1903), 1, + ACTIONS(1918), 1, anon_sym_as, - ACTIONS(1901), 8, + ACTIONS(1916), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -67457,98 +65158,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49015] = 12, + [49224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_if, - ACTIONS(1867), 1, - anon_sym_async, - ACTIONS(1869), 1, - anon_sym_for, - ACTIONS(1873), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(1905), 1, - anon_sym_RPAREN, - ACTIONS(1907), 1, - anon_sym_COMMA, - ACTIONS(1910), 1, + ACTIONS(1922), 1, anon_sym_as, - STATE(956), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1464), 1, - sym__comprehension_clauses, - [49052] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1912), 9, + ACTIONS(1920), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49073] = 2, + [49247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1856), 11, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(1865), 1, + anon_sym_and, + ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49090] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, + ACTIONS(1926), 1, + anon_sym_as, + ACTIONS(1924), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1863), 1, - anon_sym_if, - ACTIONS(1865), 1, anon_sym_COLON, - ACTIONS(1867), 1, anon_sym_async, - ACTIONS(1869), 1, anon_sym_for, - ACTIONS(1871), 1, + anon_sym_RBRACK, anon_sym_RBRACE, + [49272] = 9, + ACTIONS(1869), 1, + anon_sym_LBRACE2, ACTIONS(1873), 1, - anon_sym_and, + anon_sym_BSLASH, ACTIONS(1875), 1, - anon_sym_or, - STATE(956), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1410), 1, - sym__comprehension_clauses, - [49127] = 5, + sym_comment, + ACTIONS(1928), 1, + sym__string_end, + STATE(909), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1871), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49303] = 9, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(1930), 1, + anon_sym_LBRACE2, + ACTIONS(1936), 1, + anon_sym_BSLASH, + ACTIONS(1939), 1, + sym__string_end, + STATE(921), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1933), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1885), 8, + ACTIONS(1924), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -67557,12 +65257,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49150] = 3, + [49357] = 9, + ACTIONS(1869), 1, + anon_sym_LBRACE2, + ACTIONS(1873), 1, + anon_sym_BSLASH, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(1941), 1, + sym__string_end, + STATE(914), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1871), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1912), 10, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(1920), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -67571,55 +65295,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_or, sym_type_conversion, - [49169] = 4, + [49409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(1901), 9, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1945), 1, + anon_sym_as, + ACTIONS(1943), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49434] = 9, + ACTIONS(1869), 1, + anon_sym_LBRACE2, + ACTIONS(1873), 1, + anon_sym_BSLASH, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(1947), 1, + sym__string_end, + STATE(921), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1871), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49465] = 9, + ACTIONS(1869), 1, + anon_sym_LBRACE2, + ACTIONS(1873), 1, + anon_sym_BSLASH, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(1949), 1, + sym__string_end, + STATE(921), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1871), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49496] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(1953), 1, + anon_sym_COMMA, + STATE(993), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1951), 6, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49190] = 5, + [49523] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(1914), 1, - anon_sym_as, - ACTIONS(1912), 8, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1888), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(1890), 1, anon_sym_async, + ACTIONS(1892), 1, anon_sym_for, - anon_sym_RBRACK, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(1904), 1, anon_sym_RBRACE, - [49213] = 6, + STATE(958), 1, + sym_for_in_clause, + STATE(1111), 1, + aux_sym__collection_elements_repeat1, + STATE(1491), 1, + sym__comprehension_clauses, + [49560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1955), 1, + anon_sym_LPAREN, + STATE(912), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1957), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - ACTIONS(1873), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49583] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(1916), 1, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1959), 1, anon_sym_as, - ACTIONS(1877), 7, + ACTIONS(1908), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -67627,34 +65441,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49238] = 5, + [49608] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(1895), 8, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, + anon_sym_async, + ACTIONS(1892), 1, + anon_sym_for, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1902), 1, + anon_sym_COLON, + ACTIONS(1904), 1, + anon_sym_RBRACE, + STATE(958), 1, + sym_for_in_clause, + STATE(1111), 1, + aux_sym__collection_elements_repeat1, + STATE(1506), 1, + sym__comprehension_clauses, + [49645] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(646), 1, + sym__string_start, + STATE(678), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1961), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49261] = 5, + [49666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(1856), 11, + anon_sym_import, anon_sym_DOT, - ACTIONS(1918), 1, anon_sym_LPAREN, - STATE(910), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1920), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -67663,157 +65498,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49284] = 4, + [49683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1922), 9, + ACTIONS(1943), 8, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49305] = 4, + [49706] = 9, + ACTIONS(1869), 1, + anon_sym_LBRACE2, + ACTIONS(1873), 1, + anon_sym_BSLASH, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(1963), 1, + sym__string_end, + STATE(926), 1, + aux_sym_string_repeat1, + STATE(1088), 1, + sym_interpolation, + STATE(1089), 1, + sym_string_content, + STATE(990), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(1871), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [49737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1912), 1, anon_sym_and, ACTIONS(1914), 1, - anon_sym_as, - ACTIONS(1912), 9, + anon_sym_or, + ACTIONS(1861), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_or, - [49326] = 5, + anon_sym_EQ, + sym_type_conversion, + [49758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1924), 1, - anon_sym_as, - ACTIONS(1922), 8, + ACTIONS(1916), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [49349] = 7, + anon_sym_EQ, + sym_type_conversion, + [49779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1928), 1, - anon_sym_COMMA, - STATE(964), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1926), 6, + ACTIONS(1916), 10, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_or, sym_type_conversion, - [49376] = 11, + [49798] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1863), 1, - anon_sym_if, - ACTIONS(1867), 1, - anon_sym_async, - ACTIONS(1869), 1, - anon_sym_for, - ACTIONS(1873), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - ACTIONS(1930), 1, - anon_sym_RPAREN, - STATE(956), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1442), 1, - sym__comprehension_clauses, - [49410] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1863), 1, - anon_sym_if, ACTIONS(1867), 1, - anon_sym_async, - ACTIONS(1869), 1, - anon_sym_for, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, anon_sym_or, - ACTIONS(1932), 1, + ACTIONS(1881), 1, anon_sym_RPAREN, - STATE(956), 1, - sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1417), 1, - sym__comprehension_clauses, - [49444] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1863), 1, + ACTIONS(1888), 1, anon_sym_if, - ACTIONS(1867), 1, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(1871), 1, - anon_sym_RBRACK, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - STATE(956), 1, + ACTIONS(1900), 1, + anon_sym_COMMA, + STATE(958), 1, sym_for_in_clause, STATE(1111), 1, aux_sym__collection_elements_repeat1, - STATE(1429), 1, + STATE(1421), 1, sym__comprehension_clauses, - [49478] = 5, + [49832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1934), 7, + ACTIONS(1965), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -67821,123 +65628,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49500] = 9, - ACTIONS(1936), 1, - anon_sym_LBRACE2, - ACTIONS(1940), 1, - sym__not_escape_sequence, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1944), 1, - sym__string_end, - STATE(936), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1938), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49530] = 11, + [49854] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1863), 1, - anon_sym_if, + ACTIONS(1865), 1, + anon_sym_and, ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(1871), 1, - anon_sym_RBRACK, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - STATE(956), 1, + ACTIONS(1967), 1, + anon_sym_RPAREN, + ACTIONS(1969), 1, + anon_sym_COMMA, + STATE(958), 1, sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1407), 1, + STATE(1287), 1, + aux_sym_argument_list_repeat1, + STATE(1508), 1, sym__comprehension_clauses, - [49564] = 9, - ACTIONS(1936), 1, - anon_sym_LBRACE2, - ACTIONS(1940), 1, - sym__not_escape_sequence, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1946), 1, - sym__string_end, - STATE(937), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1938), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49594] = 9, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1948), 1, - anon_sym_LBRACE2, - ACTIONS(1954), 1, - sym__not_escape_sequence, - ACTIONS(1957), 1, - sym__string_end, - STATE(937), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1951), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49624] = 9, - ACTIONS(1936), 1, - anon_sym_LBRACE2, - ACTIONS(1940), 1, - sym__not_escape_sequence, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1959), 1, - sym__string_end, - STATE(937), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1938), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49654] = 5, + [49888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1961), 7, + ACTIONS(1971), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -67945,80 +65668,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49676] = 11, + [49910] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_if, + ACTIONS(1865), 1, + anon_sym_and, ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - ACTIONS(1963), 1, - anon_sym_RPAREN, - ACTIONS(1965), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - STATE(956), 1, + ACTIONS(1904), 1, + anon_sym_RBRACK, + STATE(958), 1, sym_for_in_clause, - STATE(1228), 1, - aux_sym_argument_list_repeat1, - STATE(1417), 1, + STATE(1111), 1, + aux_sym__collection_elements_repeat1, + STATE(1507), 1, sym__comprehension_clauses, - [49710] = 11, + [49944] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1863), 1, - anon_sym_if, + ACTIONS(1865), 1, + anon_sym_and, ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(1871), 1, - anon_sym_RBRACK, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - STATE(956), 1, + ACTIONS(1973), 1, + anon_sym_RPAREN, + ACTIONS(1975), 1, + anon_sym_COMMA, + STATE(958), 1, sym_for_in_clause, - STATE(1111), 1, - aux_sym__collection_elements_repeat1, - STATE(1437), 1, + STATE(1247), 1, + aux_sym_argument_list_repeat1, + STATE(1421), 1, sym__comprehension_clauses, - [49744] = 9, - ACTIONS(1936), 1, - anon_sym_LBRACE2, - ACTIONS(1940), 1, - sym__not_escape_sequence, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1967), 1, - sym__string_end, - STATE(937), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1938), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49774] = 3, + [49978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1971), 2, + ACTIONS(1979), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1969), 8, + ACTIONS(1977), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68027,83 +65729,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49792] = 9, - ACTIONS(1936), 1, - anon_sym_LBRACE2, - ACTIONS(1940), 1, - sym__not_escape_sequence, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1973), 1, - sym__string_end, - STATE(942), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1938), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49822] = 11, + [49996] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1863), 1, - anon_sym_if, + ACTIONS(1865), 1, + anon_sym_and, ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - ACTIONS(1905), 1, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1981), 1, anon_sym_RPAREN, - STATE(956), 1, + STATE(958), 1, sym_for_in_clause, STATE(1111), 1, aux_sym__collection_elements_repeat1, - STATE(1464), 1, + STATE(1508), 1, sym__comprehension_clauses, - [49856] = 11, + [50030] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - anon_sym_if, + ACTIONS(1865), 1, + anon_sym_and, ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - ACTIONS(1975), 1, + ACTIONS(1983), 1, anon_sym_RPAREN, - ACTIONS(1977), 1, + ACTIONS(1985), 1, anon_sym_COMMA, - STATE(956), 1, + STATE(958), 1, sym_for_in_clause, - STATE(1273), 1, + STATE(1314), 1, aux_sym_argument_list_repeat1, - STATE(1464), 1, + STATE(1469), 1, sym__comprehension_clauses, - [49890] = 5, + [50064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1979), 7, + ACTIONS(1987), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -68111,72 +65792,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49912] = 5, + [50086] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(1981), 7, - anon_sym_RPAREN, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, + anon_sym_async, + ACTIONS(1892), 1, + anon_sym_for, + ACTIONS(1900), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49934] = 9, - ACTIONS(1936), 1, - anon_sym_LBRACE2, - ACTIONS(1940), 1, - sym__not_escape_sequence, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1983), 1, - sym__string_end, - STATE(937), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1938), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49964] = 9, - ACTIONS(1936), 1, - anon_sym_LBRACE2, - ACTIONS(1940), 1, - sym__not_escape_sequence, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1985), 1, - sym__string_end, - STATE(949), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1938), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49994] = 3, + ACTIONS(1989), 1, + anon_sym_RPAREN, + STATE(958), 1, + sym_for_in_clause, + STATE(1111), 1, + aux_sym__collection_elements_repeat1, + STATE(1469), 1, + sym__comprehension_clauses, + [50120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1989), 2, + ACTIONS(1993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1987), 8, + ACTIONS(1991), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68185,75 +65830,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50012] = 9, - ACTIONS(1936), 1, - anon_sym_LBRACE2, - ACTIONS(1940), 1, - sym__not_escape_sequence, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1991), 1, - sym__string_end, - STATE(938), 1, - aux_sym_string_repeat1, - STATE(1031), 1, - aux_sym_string_content_repeat1, - STATE(1072), 1, - sym_string_content, - STATE(1076), 1, - sym_interpolation, - ACTIONS(1938), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50042] = 11, + [50138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1867), 1, - anon_sym_async, - ACTIONS(1869), 1, - anon_sym_for, - ACTIONS(1873), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1993), 1, + ACTIONS(1995), 7, anon_sym_RPAREN, - ACTIONS(1995), 1, anon_sym_COMMA, - STATE(956), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50160] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 1, + anon_sym_and, + ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, + anon_sym_if, + ACTIONS(1890), 1, + anon_sym_async, + ACTIONS(1892), 1, + anon_sym_for, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1904), 1, + anon_sym_RBRACK, + STATE(958), 1, sym_for_in_clause, - STATE(1280), 1, - aux_sym_argument_list_repeat1, - STATE(1442), 1, + STATE(1111), 1, + aux_sym__collection_elements_repeat1, + STATE(1484), 1, sym__comprehension_clauses, - [50076] = 4, + [50194] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1999), 1, - anon_sym_PIPE, - STATE(954), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(1997), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(1865), 1, + anon_sym_and, + ACTIONS(1867), 1, + anon_sym_or, + ACTIONS(1888), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(1890), 1, + anon_sym_async, + ACTIONS(1892), 1, + anon_sym_for, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1904), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [50095] = 6, + STATE(958), 1, + sym_for_in_clause, + STATE(1111), 1, + aux_sym__collection_elements_repeat1, + STATE(1419), 1, + sym__comprehension_clauses, + [50228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2004), 1, + ACTIONS(1999), 1, anon_sym_if, - ACTIONS(2007), 1, + ACTIONS(2002), 1, anon_sym_async, - ACTIONS(2010), 1, + ACTIONS(2005), 1, anon_sym_for, - ACTIONS(2002), 3, + ACTIONS(1997), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, @@ -68261,31 +65910,29 @@ static const uint16_t ts_small_parse_table[] = { sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [50118] = 6, + [50251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_async, - ACTIONS(1869), 1, - anon_sym_for, - ACTIONS(2015), 1, - anon_sym_if, - ACTIONS(2013), 3, + ACTIONS(2010), 1, + anon_sym_PIPE, + STATE(956), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2008), 7, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(959), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [50141] = 4, + [50270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2015), 1, anon_sym_PIPE, - STATE(961), 1, + STATE(960), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(2017), 7, + ACTIONS(2013), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68293,12 +65940,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [50160] = 4, + [50289] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, + anon_sym_async, + ACTIONS(1892), 1, + anon_sym_for, + ACTIONS(2019), 1, + anon_sym_if, + ACTIONS(2017), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(964), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [50312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1867), 1, anon_sym_or, ACTIONS(2021), 7, anon_sym_RPAREN, @@ -68308,62 +65972,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50179] = 6, + [50331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_async, - ACTIONS(1869), 1, - anon_sym_for, ACTIONS(2015), 1, - anon_sym_if, - ACTIONS(2023), 3, + anon_sym_PIPE, + STATE(956), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2023), 7, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(955), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [50202] = 7, + [50350] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1928), 1, + ACTIONS(1953), 1, anon_sym_COMMA, - STATE(964), 1, + STATE(993), 1, aux_sym_expression_list_repeat1, ACTIONS(2025), 4, anon_sym_COLON, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [50227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2019), 1, - anon_sym_PIPE, - STATE(954), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2027), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50246] = 4, + [50375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1867), 1, anon_sym_or, ACTIONS(2021), 7, anon_sym_RPAREN, @@ -68373,12 +66020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50265] = 4, + [50394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(1867), 1, anon_sym_or, ACTIONS(2021), 7, anon_sym_RPAREN, @@ -68388,65 +66035,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50284] = 4, + [50413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2031), 1, - anon_sym_COMMA, - STATE(1005), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2029), 6, + ACTIONS(1890), 1, + anon_sym_async, + ACTIONS(1892), 1, + anon_sym_for, + ACTIONS(2019), 1, + anon_sym_if, + ACTIONS(2027), 3, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50302] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(854), 1, - anon_sym_except_STAR, - ACTIONS(862), 1, - anon_sym_except, - ACTIONS(2033), 1, - anon_sym_finally, - STATE(568), 1, - sym_finally_clause, - STATE(229), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(241), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [50326] = 2, + STATE(955), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [50436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2029), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1852), 8, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(1908), 5, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [50354] = 2, + anon_sym_SEMI, + [50456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 8, + ACTIONS(2035), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68455,22 +66079,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50368] = 2, + [50470] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50382] = 2, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2037), 1, + anon_sym_async, + ACTIONS(2039), 1, + anon_sym_def, + ACTIONS(2041), 1, + anon_sym_class, + STATE(563), 2, + sym_function_definition, + sym_class_definition, + STATE(1070), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [50494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2041), 8, + ACTIONS(2043), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68479,23 +66108,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50396] = 3, + [50508] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, ACTIONS(2045), 1, - anon_sym_PIPE, - ACTIONS(2043), 7, - anon_sym_RPAREN, + anon_sym_from, + ACTIONS(2047), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50412] = 2, + STATE(1106), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2049), 2, + sym__newline, + anon_sym_SEMI, + [50534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 8, + ACTIONS(2051), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68504,10 +66138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50426] = 2, + [50548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 8, + ACTIONS(2053), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68516,36 +66150,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50440] = 4, + [50562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(1901), 6, + ACTIONS(1916), 7, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, - sym__semicolon, - [50458] = 2, + anon_sym_or, + anon_sym_SEMI, + [50578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 8, - anon_sym_RPAREN, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(1916), 6, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50472] = 2, + anon_sym_EQ, + anon_sym_SEMI, + [50596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1848), 8, + ACTIONS(1439), 8, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -68553,11 +66188,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_and, anon_sym_or, - sym__semicolon, - [50486] = 2, + anon_sym_SEMI, + [50610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(1861), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_SEMI, + [50628] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(848), 1, + anon_sym_except_STAR, + ACTIONS(856), 1, + anon_sym_except, + ACTIONS(2055), 1, + anon_sym_finally, + STATE(580), 1, + sym_finally_clause, + STATE(230), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(232), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [50652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2055), 8, + ACTIONS(2057), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68566,52 +66232,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50500] = 4, + [50666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 1, - anon_sym_COMMA, - STATE(1012), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2057), 6, + ACTIONS(2059), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50518] = 4, + [50680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_COMMA, - STATE(995), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2061), 6, + ACTIONS(2061), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50536] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(1922), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [50554] = 2, + [50694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2065), 8, + ACTIONS(2063), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68620,45 +66268,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50568] = 8, + [50708] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2065), 1, + anon_sym_async, ACTIONS(2067), 1, - anon_sym_from, + anon_sym_def, ACTIONS(2069), 1, - anon_sym_COMMA, - ACTIONS(2071), 1, - anon_sym_if, - STATE(1092), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2073), 2, - sym__newline, - sym__semicolon, - [50594] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(854), 1, - anon_sym_except_STAR, - ACTIONS(862), 1, - anon_sym_except, - ACTIONS(2033), 1, - anon_sym_finally, - STATE(516), 1, - sym_finally_clause, - STATE(232), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(234), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [50618] = 2, + anon_sym_class, + STATE(578), 2, + sym_function_definition, + sym_class_definition, + STATE(1070), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [50732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1997), 8, + ACTIONS(2071), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68667,24 +66297,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50632] = 4, + [50746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2075), 1, - anon_sym_COMMA, - STATE(1005), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2029), 6, + ACTIONS(2073), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50650] = 2, + [50760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 8, + ACTIONS(2075), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68693,10 +66321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50664] = 2, + [50774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2079), 8, + ACTIONS(2077), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68705,10 +66333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50678] = 2, + [50788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 8, + ACTIONS(2008), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68717,10 +66345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50692] = 2, + [50802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 8, + ACTIONS(2079), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68729,10 +66357,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50706] = 2, + [50816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(1943), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_SEMI, + [50836] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 1, + anon_sym_COMMA, + STATE(1005), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2081), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [50854] = 6, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(2085), 1, + anon_sym_LBRACE2, + ACTIONS(2089), 1, + anon_sym_BSLASH, + ACTIONS(2091), 1, + sym__string_end, + STATE(1010), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2087), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 8, + ACTIONS(2093), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68741,42 +66414,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50720] = 7, + [50890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, - anon_sym_except, - ACTIONS(864), 1, - anon_sym_except_STAR, - ACTIONS(2087), 1, - anon_sym_finally, - STATE(514), 1, - sym_finally_clause, - STATE(228), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(240), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [50744] = 5, + ACTIONS(2097), 1, + anon_sym_COMMA, + STATE(1015), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2095), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [50908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(1885), 5, - sym__newline, - anon_sym_from, + ACTIONS(2099), 1, anon_sym_COMMA, + STATE(1015), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2095), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_EQ, - sym__semicolon, - [50764] = 2, + sym_type_conversion, + [50926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2089), 8, + ACTIONS(2101), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68785,159 +66454,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50778] = 4, + [50940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_and, - ACTIONS(1875), 1, - anon_sym_or, - ACTIONS(2091), 6, + ACTIONS(2103), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50796] = 4, + [50954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - STATE(1012), 1, + STATE(996), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2093), 6, + ACTIONS(2105), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50814] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2097), 1, - anon_sym_async, - ACTIONS(2099), 1, - anon_sym_def, - ACTIONS(2101), 1, - anon_sym_class, - STATE(584), 2, - sym_function_definition, - sym_class_definition, - STATE(1062), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [50838] = 5, + [50972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(1895), 5, - sym__newline, - anon_sym_from, + ACTIONS(2112), 1, anon_sym_COMMA, - anon_sym_EQ, - sym__semicolon, - [50858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 8, + STATE(996), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2110), 6, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50872] = 6, + [50990] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(1894), 1, anon_sym_DOT, - ACTIONS(1918), 1, + ACTIONS(1955), 1, anon_sym_LPAREN, - ACTIONS(2105), 1, + ACTIONS(2114), 1, anon_sym_EQ, - STATE(910), 1, + STATE(912), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1920), 4, + ACTIONS(1957), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [50894] = 4, + [51012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(1912), 6, - sym__newline, - anon_sym_from, + ACTIONS(2118), 1, anon_sym_COMMA, + STATE(997), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2116), 6, + anon_sym_RPAREN, anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [50912] = 3, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(1912), 7, - sym__newline, - anon_sym_from, + ACTIONS(2120), 8, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_EQ, - anon_sym_or, - sym__semicolon, - [50928] = 7, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51044] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2107), 1, - anon_sym_async, - ACTIONS(2109), 1, - anon_sym_def, - ACTIONS(2111), 1, - anon_sym_class, - STATE(499), 2, - sym_function_definition, - sym_class_definition, - STATE(1062), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [50952] = 7, + ACTIONS(860), 1, + anon_sym_except, + ACTIONS(864), 1, + anon_sym_except_STAR, + ACTIONS(2122), 1, + anon_sym_finally, + STATE(510), 1, + sym_finally_clause, + STATE(235), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(236), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [51068] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(848), 1, - anon_sym_except, - ACTIONS(864), 1, anon_sym_except_STAR, - ACTIONS(2087), 1, + ACTIONS(856), 1, + anon_sym_except, + ACTIONS(2055), 1, anon_sym_finally, - STATE(507), 1, + STATE(511), 1, sym_finally_clause, - STATE(237), 2, + STATE(228), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - STATE(238), 2, + STATE(242), 2, sym_except_clause, aux_sym_try_statement_repeat1, - [50976] = 2, + [51092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 8, + ACTIONS(2124), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68946,24 +66582,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50990] = 4, + [51106] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(860), 1, + anon_sym_except, + ACTIONS(864), 1, + anon_sym_except_STAR, + ACTIONS(2122), 1, + anon_sym_finally, + STATE(576), 1, + sym_finally_clause, + STATE(233), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(234), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [51130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 1, + ACTIONS(2128), 1, anon_sym_COMMA, - STATE(1005), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2115), 6, + STATE(996), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2126), 6, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, + [51148] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(1920), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, - sym_type_conversion, - [51008] = 2, + anon_sym_SEMI, + [51166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 8, + ACTIONS(1961), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68972,25 +66639,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51022] = 5, + [51180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(2071), 1, + ACTIONS(2130), 6, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(1877), 5, - sym__newline, - anon_sym_from, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2132), 8, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - sym__semicolon, - [51042] = 2, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51212] = 6, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(2134), 1, + anon_sym_LBRACE2, + ACTIONS(2139), 1, + anon_sym_BSLASH, + ACTIONS(2142), 1, + sym__string_end, + STATE(1010), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2136), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [51234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 8, + ACTIONS(2144), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -68999,10 +66693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51056] = 2, + [51248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 8, + ACTIONS(1852), 8, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -69010,439 +66704,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_and, anon_sym_or, - sym__semicolon, - [51070] = 2, + anon_sym_SEMI, + [51262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2029), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51084] = 2, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(1924), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_SEMI, + [51282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2126), 8, + ACTIONS(2148), 1, + anon_sym_PIPE, + ACTIONS(2146), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51098] = 4, + [51298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2152), 1, anon_sym_COMMA, - STATE(1012), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2128), 6, + STATE(1015), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2150), 6, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51116] = 4, + anon_sym_EQ, + sym_type_conversion, + [51316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 1, + ACTIONS(1848), 8, + sym__newline, + anon_sym_from, anon_sym_COMMA, - STATE(978), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2133), 6, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [51330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2155), 7, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51134] = 7, + [51343] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2157), 1, + sym_identifier, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2161), 1, + anon_sym_STAR, + STATE(1094), 1, + sym_dotted_name, + STATE(1146), 1, + sym_aliased_import, + STATE(1394), 1, + sym_wildcard_import, + STATE(1398), 1, + sym__import_list, + [51368] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_COMMA, - ACTIONS(2071), 1, - anon_sym_if, - STATE(1092), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1926), 2, + ACTIONS(1965), 4, sym__newline, - sym__semicolon, - [51157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 7, - anon_sym_RPAREN, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [51170] = 7, + anon_sym_SEMI, + [51387] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(2163), 1, sym_identifier, - ACTIONS(2139), 1, + ACTIONS(2165), 1, anon_sym_DOT, - ACTIONS(2141), 1, + ACTIONS(2167), 1, anon_sym___future__, - STATE(1144), 1, + STATE(1186), 1, aux_sym_import_prefix_repeat1, - STATE(1236), 1, + STATE(1331), 1, sym_import_prefix, - STATE(1441), 2, + STATE(1451), 2, sym_relative_import, sym_dotted_name, - [51193] = 2, + [51410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2029), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51206] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2128), 7, - anon_sym_RPAREN, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(2047), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51219] = 7, + STATE(1106), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2169), 2, + sym__newline, + anon_sym_SEMI, + [51433] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2047), 1, anon_sym_COMMA, - ACTIONS(2071), 1, - anon_sym_if, - STATE(1092), 1, + STATE(1106), 1, aux_sym_expression_list_repeat1, - ACTIONS(2145), 2, + ACTIONS(2171), 2, sym__newline, - sym__semicolon, - [51242] = 5, + anon_sym_SEMI, + [51456] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - sym_identifier, - ACTIONS(2149), 1, - anon_sym_STAR, - ACTIONS(2151), 1, - anon_sym_STAR_STAR, - STATE(1388), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [51261] = 8, + ACTIONS(1890), 1, + anon_sym_async, + ACTIONS(1892), 1, + anon_sym_for, + ACTIONS(2173), 1, + anon_sym_COMMA, + ACTIONS(2175), 1, + anon_sym_RBRACE, + STATE(958), 1, + sym_for_in_clause, + STATE(1252), 1, + aux_sym_dictionary_repeat1, + STATE(1504), 1, + sym__comprehension_clauses, + [51481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2153), 1, + ACTIONS(2177), 1, anon_sym_COMMA, - ACTIONS(2155), 1, + ACTIONS(2179), 1, anon_sym_COLON, - ACTIONS(2157), 1, + ACTIONS(2181), 1, anon_sym_RBRACK, - STATE(1203), 1, + STATE(1251), 1, aux_sym_subscript_repeat1, - [51286] = 5, + [51506] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2159), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2179), 1, anon_sym_COLON, - anon_sym_EQ, - [51305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1934), 7, - anon_sym_RPAREN, + ACTIONS(2183), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2185), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [51318] = 3, + STATE(1317), 1, + aux_sym_subscript_repeat1, + [51531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, + ACTIONS(2189), 1, anon_sym_as, - ACTIONS(2161), 6, + ACTIONS(2191), 1, + anon_sym_if, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_or, + ACTIONS(2187), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51333] = 4, + [51552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2191), 1, + anon_sym_if, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(2195), 1, anon_sym_or, - ACTIONS(1922), 5, + ACTIONS(1908), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, anon_sym_COLON, - [51350] = 7, + [51571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2071), 1, + ACTIONS(2191), 1, anon_sym_if, - ACTIONS(2169), 1, - anon_sym_COMMA, - STATE(1137), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2171), 2, - sym__newline, - sym__semicolon, - [51373] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 1, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(2195), 1, anon_sym_or, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(1895), 4, + ACTIONS(1924), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_COLON, - [51392] = 4, + [51590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(2195), 1, anon_sym_or, - ACTIONS(1901), 5, + ACTIONS(1916), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [51409] = 3, + [51607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2197), 1, + sym_identifier, + ACTIONS(2199), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_STAR_STAR, + STATE(1380), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [51626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(1912), 6, + ACTIONS(1916), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_or, - [51424] = 4, + [51641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(2195), 1, anon_sym_or, - ACTIONS(1912), 5, + ACTIONS(1861), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [51441] = 6, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2175), 1, - anon_sym_LBRACE2, - ACTIONS(2179), 1, - sym__not_escape_sequence, - ACTIONS(2181), 1, - sym__string_end, - STATE(1055), 1, - aux_sym_string_content_repeat1, - ACTIONS(2177), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51462] = 5, + [51658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2191), 1, + anon_sym_if, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(2195), 1, anon_sym_or, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(1877), 4, + ACTIONS(1943), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_COLON, - [51481] = 2, + [51677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 7, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_or, + ACTIONS(1920), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51494] = 7, + anon_sym_COLON, + [51694] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2047), 1, anon_sym_COMMA, - ACTIONS(2071), 1, - anon_sym_if, - STATE(1092), 1, + STATE(1106), 1, aux_sym_expression_list_repeat1, - ACTIONS(2185), 2, + ACTIONS(1951), 2, sym__newline, - sym__semicolon, - [51517] = 5, + anon_sym_SEMI, + [51717] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(1885), 4, - anon_sym_RPAREN, + ACTIONS(2047), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [51536] = 5, + STATE(1106), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2203), 2, + sym__newline, + anon_sym_SEMI, + [51740] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(1934), 4, - sym__newline, - anon_sym_from, + ACTIONS(2047), 1, anon_sym_COMMA, - sym__semicolon, - [51555] = 5, + STATE(1106), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2205), 2, + sym__newline, + anon_sym_SEMI, + [51763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - sym_identifier, - ACTIONS(2149), 1, - anon_sym_STAR, - ACTIONS(2151), 1, - anon_sym_STAR_STAR, - STATE(1227), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [51574] = 8, + ACTIONS(2209), 1, + anon_sym_as, + ACTIONS(2207), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51778] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(2187), 1, + ACTIONS(2211), 1, anon_sym_COMMA, - ACTIONS(2189), 1, + ACTIONS(2213), 1, anon_sym_RBRACE, - STATE(956), 1, + STATE(958), 1, sym_for_in_clause, - STATE(1247), 1, + STATE(1244), 1, aux_sym_dictionary_repeat1, - STATE(1433), 1, + STATE(1417), 1, sym__comprehension_clauses, - [51599] = 5, + [51803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2029), 1, anon_sym_if, - ACTIONS(1873), 1, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(1875), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2191), 4, + ACTIONS(1971), 4, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [51618] = 8, + anon_sym_SEMI, + [51822] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2029), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2155), 1, - anon_sym_COLON, - ACTIONS(2193), 1, + ACTIONS(2215), 1, anon_sym_COMMA, - ACTIONS(2195), 1, - anon_sym_RBRACK, - STATE(1282), 1, - aux_sym_subscript_repeat1, - [51643] = 2, + STATE(1193), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2217), 2, + sym__newline, + anon_sym_SEMI, + [51845] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(1995), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_SEMI, + [51864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 7, + ACTIONS(1951), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -69450,148 +67154,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [51656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1848), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [51669] = 7, + [51877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2071), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(2197), 1, - anon_sym_COMMA, - STATE(1172), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2199), 2, - sym__newline, - sym__semicolon, - [51692] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2169), 1, + ACTIONS(2219), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1174), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2201), 2, - sym__newline, - sym__semicolon, - [51715] = 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2105), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2071), 1, anon_sym_if, - STATE(1092), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2203), 2, - sym__newline, - sym__semicolon, - [51738] = 7, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2221), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2071), 1, anon_sym_if, - STATE(1092), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2205), 2, - sym__newline, - sym__semicolon, - [51761] = 8, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51922] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2155), 1, + ACTIONS(2179), 1, anon_sym_COLON, - ACTIONS(2207), 1, + ACTIONS(2223), 1, anon_sym_COMMA, - ACTIONS(2209), 1, + ACTIONS(2225), 1, anon_sym_RBRACK, - STATE(1272), 1, + STATE(1290), 1, aux_sym_subscript_repeat1, - [51786] = 5, + [51947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1865), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1867), 1, anon_sym_or, - ACTIONS(2071), 1, + ACTIONS(1888), 1, anon_sym_if, - ACTIONS(1979), 4, - sym__newline, - anon_sym_from, + ACTIONS(2227), 4, anon_sym_COMMA, - sym__semicolon, - [51805] = 8, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [51966] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(2215), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2229), 2, + sym__newline, + anon_sym_SEMI, + [51989] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1890), 1, anon_sym_async, - ACTIONS(1869), 1, + ACTIONS(1892), 1, anon_sym_for, - ACTIONS(2211), 1, + ACTIONS(2231), 1, anon_sym_COMMA, - ACTIONS(2213), 1, + ACTIONS(2233), 1, anon_sym_RBRACE, - STATE(956), 1, + STATE(958), 1, sym_for_in_clause, - STATE(1300), 1, + STATE(1277), 1, aux_sym_dictionary_repeat1, - STATE(1411), 1, + STATE(1493), 1, sym__comprehension_clauses, - [51830] = 6, + [52014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2217), 1, - anon_sym_as, - ACTIONS(2215), 3, + ACTIONS(2235), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [52033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1965), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [51851] = 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [52046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1852), 7, + ACTIONS(1439), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -69599,638 +67290,626 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [51864] = 8, + [52059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_async, - ACTIONS(1869), 1, - anon_sym_for, - ACTIONS(2219), 1, + ACTIONS(1852), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2221), 1, - anon_sym_RBRACE, - STATE(956), 1, - sym_for_in_clause, - STATE(1234), 1, - aux_sym_dictionary_repeat1, - STATE(1439), 1, - sym__comprehension_clauses, - [51889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, + anon_sym_as, anon_sym_if, - ACTIONS(1881), 1, + anon_sym_COLON, anon_sym_and, - ACTIONS(1883), 1, anon_sym_or, - ACTIONS(2223), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51908] = 5, + [52072] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(1981), 4, - sym__newline, - anon_sym_from, + ACTIONS(2237), 1, anon_sym_COMMA, - sym__semicolon, - [51927] = 6, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_LBRACE2, - ACTIONS(2230), 1, - sym__not_escape_sequence, - ACTIONS(2233), 1, - sym__string_end, - STATE(1055), 1, - aux_sym_string_content_repeat1, - ACTIONS(2227), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51948] = 8, + STATE(1195), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2239), 2, + sym__newline, + anon_sym_SEMI, + [52095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, + ACTIONS(2197), 1, sym_identifier, - ACTIONS(2237), 1, - anon_sym_LPAREN, - ACTIONS(2239), 1, + ACTIONS(2199), 1, anon_sym_STAR, - STATE(1109), 1, - sym_dotted_name, - STATE(1143), 1, - sym_aliased_import, - STATE(1393), 1, - sym_wildcard_import, - STATE(1395), 1, - sym__import_list, - [51973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2241), 1, - anon_sym_DOT, - STATE(1057), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1856), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_as, - sym__semicolon, - [51989] = 4, + ACTIONS(2201), 1, + anon_sym_STAR_STAR, + STATE(1299), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [52114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - anon_sym_DOT, - STATE(906), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2244), 4, - anon_sym_import, + ACTIONS(1848), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [52005] = 7, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [52127] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1928), 1, + ACTIONS(1953), 1, anon_sym_COMMA, - ACTIONS(2246), 1, + ACTIONS(2241), 1, anon_sym_COLON, - STATE(964), 1, + STATE(993), 1, aux_sym_expression_list_repeat1, - [52027] = 3, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2248), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2250), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52041] = 4, + [52149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(1894), 1, anon_sym_DOT, - STATE(1058), 1, + STATE(907), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2252), 4, + ACTIONS(2243), 4, anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [52057] = 4, - ACTIONS(3), 1, + [52165] = 3, + ACTIONS(1875), 1, sym_comment, - ACTIONS(2256), 1, - anon_sym_AT, - STATE(1062), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(2254), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [52073] = 6, + ACTIONS(2245), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2247), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [52179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2191), 1, + anon_sym_if, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(2195), 1, anon_sym_or, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2261), 1, + ACTIONS(2251), 1, anon_sym_COLON, - ACTIONS(2259), 2, + ACTIONS(2249), 2, anon_sym_COMMA, anon_sym_as, - [52093] = 6, + [52199] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2265), 1, + ACTIONS(1953), 1, + anon_sym_COMMA, + ACTIONS(2253), 1, anon_sym_COLON, - ACTIONS(2263), 2, + STATE(993), 1, + aux_sym_expression_list_repeat1, + [52221] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2255), 1, + anon_sym_DOT, + STATE(1085), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2243), 4, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [52113] = 5, + anon_sym_as, + anon_sym_SEMI, + [52237] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(2257), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [52255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2267), 3, - sym__newline, + ACTIONS(2259), 3, + anon_sym_RPAREN, anon_sym_COMMA, - sym__semicolon, - [52131] = 5, + anon_sym_COLON, + [52273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2269), 3, + ACTIONS(2261), 3, sym__newline, anon_sym_COMMA, - sym__semicolon, - [52149] = 3, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2271), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2273), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52163] = 4, + anon_sym_SEMI, + [52291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2275), 1, + ACTIONS(2255), 1, anon_sym_DOT, - STATE(1057), 1, + STATE(1063), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2244), 4, + ACTIONS(2263), 4, sym__newline, anon_sym_COMMA, anon_sym_as, - sym__semicolon, - [52179] = 3, - ACTIONS(1942), 1, + anon_sym_SEMI, + [52307] = 3, + ACTIONS(1875), 1, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2265), 2, anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2279), 4, + anon_sym_BSLASH, + ACTIONS(2267), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [52193] = 7, + [52321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2029), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(2281), 1, - anon_sym_COLON, - STATE(964), 1, - aux_sym_expression_list_repeat1, - [52215] = 7, + ACTIONS(2235), 3, + sym__newline, + anon_sym_EQ, + anon_sym_SEMI, + [52339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2271), 1, + anon_sym_AT, + STATE(1070), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(2269), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [52355] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1993), 1, - anon_sym_RPAREN, - ACTIONS(1995), 1, + ACTIONS(2276), 1, + anon_sym_COLON, + ACTIONS(2274), 2, anon_sym_COMMA, - STATE(1280), 1, - aux_sym_argument_list_repeat1, - [52237] = 3, - ACTIONS(1942), 1, + anon_sym_RBRACK, + [52375] = 3, + ACTIONS(1875), 1, sym_comment, - ACTIONS(2283), 2, + ACTIONS(2278), 2, anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2285), 4, + anon_sym_BSLASH, + ACTIONS(2280), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [52251] = 5, + [52389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2287), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2179), 1, anon_sym_COLON, - [52269] = 3, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2289), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2291), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52283] = 7, + ACTIONS(2282), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52409] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1928), 1, + ACTIONS(1953), 1, anon_sym_COMMA, - ACTIONS(2293), 1, + ACTIONS(2284), 1, anon_sym_COLON, - STATE(964), 1, + STATE(993), 1, aux_sym_expression_list_repeat1, - [52305] = 3, - ACTIONS(1942), 1, + [52431] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2297), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52319] = 4, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2286), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + [52449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2290), 1, anon_sym_COMMA, - STATE(1077), 1, + STATE(1076), 1, aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2299), 4, + ACTIONS(2288), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [52335] = 5, + [52465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2304), 3, - sym__newline, + ACTIONS(2295), 1, + anon_sym_COLON, + ACTIONS(2293), 2, anon_sym_COMMA, - sym__semicolon, - [52353] = 7, + anon_sym_RBRACK, + [52485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2029), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(1928), 1, + ACTIONS(2297), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_COLON, - STATE(964), 1, - aux_sym_expression_list_repeat1, - [52375] = 7, + anon_sym_SEMI, + [52503] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(1928), 1, + ACTIONS(1953), 1, anon_sym_COMMA, - ACTIONS(2308), 1, + ACTIONS(2299), 1, anon_sym_COLON, - STATE(964), 1, + STATE(993), 1, aux_sym_expression_list_repeat1, - [52397] = 6, + [52525] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2312), 1, - anon_sym_COLON, - ACTIONS(2310), 2, + ACTIONS(1953), 1, anon_sym_COMMA, - anon_sym_as, - [52417] = 5, - ACTIONS(3), 1, + ACTIONS(2301), 1, + anon_sym_COLON, + STATE(993), 1, + aux_sym_expression_list_repeat1, + [52547] = 3, + ACTIONS(1875), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2159), 3, - sym__newline, - anon_sym_EQ, - sym__semicolon, - [52435] = 6, + ACTIONS(2303), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2305), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [52561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2191), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2195), 1, anon_sym_or, - ACTIONS(2316), 1, + ACTIONS(2309), 1, anon_sym_COLON, - ACTIONS(2314), 2, + ACTIONS(2307), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [52455] = 5, + anon_sym_as, + [52581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2318), 3, + ACTIONS(2311), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [52473] = 7, + [52599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(2320), 1, - anon_sym_COLON, - STATE(964), 1, - aux_sym_expression_list_repeat1, - [52495] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2155), 1, - anon_sym_COLON, - ACTIONS(2322), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 6, + ACTIONS(2313), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [52527] = 4, + [52611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2275), 1, + ACTIONS(2315), 1, anon_sym_DOT, - STATE(1068), 1, + STATE(1085), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2252), 4, + ACTIONS(1856), 4, sym__newline, anon_sym_COMMA, anon_sym_as, - sym__semicolon, - [52543] = 2, + anon_sym_SEMI, + [52627] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(1967), 1, + anon_sym_RPAREN, + ACTIONS(1969), 1, + anon_sym_COMMA, + STATE(1287), 1, + aux_sym_argument_list_repeat1, + [52649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 6, + ACTIONS(1894), 1, + anon_sym_DOT, + STATE(1059), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2263), 4, + anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52555] = 5, + anon_sym_as, + [52665] = 3, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(2318), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2320), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [52679] = 3, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(2322), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2324), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [52693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, + ACTIONS(2328), 1, + anon_sym_COLON, + ACTIONS(2330), 1, + anon_sym_EQ, + STATE(1153), 1, + sym__type_bound, + STATE(1355), 1, + sym__type_param_default, ACTIONS(2326), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52572] = 5, + [52713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2328), 2, + ACTIONS(1957), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, - [52589] = 4, + anon_sym_RBRACE, + [52725] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(1953), 1, anon_sym_COMMA, - STATE(1096), 1, + ACTIONS(2332), 1, + anon_sym_COLON, + STATE(993), 1, aux_sym_expression_list_repeat1, - ACTIONS(2029), 3, - sym__newline, - anon_sym_from, - sym__semicolon, - [52604] = 5, + [52747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, + ACTIONS(2157), 1, sym_identifier, - STATE(1183), 1, + STATE(1180), 1, sym_dotted_name, - STATE(1198), 1, + STATE(1240), 1, sym_aliased_import, - ACTIONS(2332), 2, + ACTIONS(2334), 2, sym__newline, - sym__semicolon, - [52621] = 5, + anon_sym_SEMI, + [52764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(1961), 2, + ACTIONS(2336), 1, + anon_sym_COMMA, + ACTIONS(2338), 1, + anon_sym_as, + STATE(1208), 1, + aux_sym__import_list_repeat1, + ACTIONS(2340), 2, sym__newline, - sym__semicolon, - [52638] = 5, + anon_sym_SEMI, + [52781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, + ACTIONS(2157), 1, sym_identifier, - STATE(1183), 1, + STATE(1180), 1, sym_dotted_name, - STATE(1198), 1, + STATE(1240), 1, sym_aliased_import, - ACTIONS(2332), 2, + ACTIONS(2334), 2, sym__newline, - sym__semicolon, - [52655] = 4, + anon_sym_SEMI, + [52798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 1, + ACTIONS(2342), 1, anon_sym_COMMA, - STATE(1096), 1, + STATE(1125), 1, aux_sym_expression_list_repeat1, - ACTIONS(2115), 3, + ACTIONS(2095), 3, sym__newline, anon_sym_from, - sym__semicolon, - [52670] = 6, + anon_sym_SEMI, + [52813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [52824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(1987), 2, + sym__newline, + anon_sym_SEMI, + [52841] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2227), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2346), 1, anon_sym_COLON, - ACTIONS(2339), 1, + ACTIONS(2348), 1, anon_sym_RBRACE, - ACTIONS(2341), 1, + ACTIONS(2350), 1, anon_sym_EQ, - ACTIONS(2343), 1, + ACTIONS(2352), 1, sym_type_conversion, - STATE(1425), 1, + STATE(1499), 1, sym_format_specifier, - [52689] = 5, + [52877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2345), 2, + ACTIONS(2354), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52706] = 6, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_RBRACE, - ACTIONS(2349), 1, - anon_sym_LBRACE2, - ACTIONS(2351), 1, - aux_sym_format_specifier_token1, - STATE(1117), 1, - aux_sym_format_specifier_repeat1, - STATE(1269), 1, - sym_interpolation, - [52725] = 4, + [52894] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - STATE(1115), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(1871), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52740] = 2, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(2356), 2, + sym__newline, + anon_sym_SEMI, + [52911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1856), 5, @@ -70238,3283 +67917,3359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - sym__semicolon, - [52751] = 5, + anon_sym_SEMI, + [52922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2191), 2, + ACTIONS(2288), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [52768] = 5, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [52933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2353), 2, + ACTIONS(2358), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52785] = 6, + [52950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2360), 1, + anon_sym_COMMA, + STATE(1125), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2095), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [52965] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_if, + ACTIONS(2193), 1, anon_sym_and, - ACTIONS(2167), 1, + ACTIONS(2195), 1, anon_sym_or, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2355), 1, + ACTIONS(2362), 1, anon_sym_as, - ACTIONS(2357), 1, + ACTIONS(2364), 1, anon_sym_COLON, - [52804] = 5, + [52984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2071), 1, + ACTIONS(2366), 2, + sym__newline, + anon_sym_SEMI, + [53001] = 6, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(2368), 1, + anon_sym_RBRACE, + ACTIONS(2370), 1, + anon_sym_LBRACE2, + ACTIONS(2372), 1, + aux_sym_format_specifier_token1, + STATE(1114), 1, + aux_sym_format_specifier_repeat1, + STATE(1318), 1, + sym_interpolation, + [53020] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, anon_sym_if, - ACTIONS(2359), 2, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(2374), 2, sym__newline, - sym__semicolon, - [52821] = 2, + anon_sym_SEMI, + [53037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 5, - anon_sym_RPAREN, + ACTIONS(2378), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + STATE(1116), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2376), 3, + anon_sym_RPAREN, anon_sym_RBRACK, - [52832] = 6, + anon_sym_RBRACE, + [53052] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, + ACTIONS(2380), 1, anon_sym_LPAREN, - ACTIONS(2363), 1, + ACTIONS(2382), 1, anon_sym_COLON, - ACTIONS(2365), 1, + ACTIONS(2384), 1, anon_sym_LBRACK, - STATE(1224), 1, + STATE(1270), 1, sym_type_parameters, - STATE(1463), 1, + STATE(1498), 1, sym_argument_list, - [52851] = 6, + [53071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, + ACTIONS(2380), 1, anon_sym_LPAREN, - ACTIONS(2365), 1, + ACTIONS(2384), 1, anon_sym_LBRACK, - ACTIONS(2367), 1, + ACTIONS(2386), 1, anon_sym_COLON, - STATE(1210), 1, + STATE(1309), 1, sym_type_parameters, - STATE(1499), 1, + STATE(1470), 1, sym_argument_list, - [52870] = 5, - ACTIONS(3), 1, + [53090] = 6, + ACTIONS(1875), 1, sym_comment, - ACTIONS(2369), 1, - anon_sym_COMMA, - ACTIONS(2371), 1, - anon_sym_as, - STATE(1164), 1, - aux_sym__import_list_repeat1, - ACTIONS(2373), 2, - sym__newline, - sym__semicolon, - [52887] = 2, + ACTIONS(2370), 1, + anon_sym_LBRACE2, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(2390), 1, + aux_sym_format_specifier_token1, + STATE(1129), 1, + aux_sym_format_specifier_repeat1, + STATE(1318), 1, + sym_interpolation, + [53109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 5, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2392), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [52898] = 4, + [53126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, + ACTIONS(2396), 1, anon_sym_COMMA, - STATE(1114), 1, + STATE(1116), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2377), 3, + ACTIONS(2394), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [52913] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2381), 1, - anon_sym_COMMA, - STATE(1096), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2029), 3, - sym__newline, - anon_sym_from, - sym__semicolon, - [52928] = 5, + [53141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2383), 2, - sym__newline, - sym__semicolon, - [52945] = 4, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - STATE(1114), 1, + STATE(1120), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2385), 3, + ACTIONS(1904), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [52960] = 4, + [53173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(2346), 1, + anon_sym_COLON, + ACTIONS(2401), 1, + anon_sym_RBRACE, + ACTIONS(2403), 1, + anon_sym_EQ, + ACTIONS(2405), 1, + sym_type_conversion, + STATE(1513), 1, + sym_format_specifier, + [53192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, anon_sym_COMMA, - STATE(1114), 1, + STATE(1116), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2377), 3, + ACTIONS(2376), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [52975] = 6, + [53207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, + ACTIONS(2157), 1, sym_identifier, - ACTIONS(2392), 1, + ACTIONS(2409), 1, anon_sym_LPAREN, - STATE(1109), 1, + STATE(1094), 1, sym_dotted_name, - STATE(1143), 1, + STATE(1146), 1, sym_aliased_import, - STATE(1385), 1, + STATE(1400), 1, sym__import_list, - [52994] = 6, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2394), 1, - anon_sym_RBRACE, - ACTIONS(2396), 1, - anon_sym_LBRACE2, - ACTIONS(2399), 1, - aux_sym_format_specifier_token1, - STATE(1117), 1, - aux_sym_format_specifier_repeat1, - STATE(1269), 1, - sym_interpolation, - [53013] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2235), 1, - sym_identifier, - STATE(1183), 1, - sym_dotted_name, - STATE(1198), 1, - sym_aliased_import, - ACTIONS(2402), 2, - sym__newline, - sym__semicolon, - [53030] = 5, + [53226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2404), 2, + ACTIONS(2411), 2, anon_sym_COMMA, anon_sym_RBRACK, - [53047] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_COLON, - ACTIONS(2406), 1, - anon_sym_RBRACE, - ACTIONS(2408), 1, - anon_sym_EQ, - ACTIONS(2410), 1, - sym_type_conversion, - STATE(1523), 1, - sym_format_specifier, - [53066] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2412), 2, - sym__newline, - sym__semicolon, - [53083] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 1, - anon_sym_and, - ACTIONS(2053), 1, - anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2414), 2, - sym__newline, - sym__semicolon, - [53100] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 1, - anon_sym_and, - ACTIONS(2167), 1, - anon_sym_or, - ACTIONS(2173), 1, - anon_sym_if, - ACTIONS(2416), 1, - anon_sym_as, - ACTIONS(2418), 1, - anon_sym_COLON, - [53119] = 5, + [53243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2420), 2, - anon_sym_RPAREN, + ACTIONS(2413), 2, anon_sym_COMMA, - [53136] = 6, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2349), 1, - anon_sym_LBRACE2, - ACTIONS(2422), 1, - anon_sym_RBRACE, - ACTIONS(2424), 1, - aux_sym_format_specifier_token1, - STATE(1099), 1, - aux_sym_format_specifier_repeat1, - STATE(1269), 1, - sym_interpolation, - [53155] = 5, + anon_sym_RBRACK, + [53260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2029), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(2031), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2033), 1, anon_sym_or, - ACTIONS(2426), 2, - anon_sym_RPAREN, + ACTIONS(2415), 2, + sym__newline, + anon_sym_SEMI, + [53277] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 1, anon_sym_COMMA, - [53172] = 5, + STATE(1125), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2150), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [53292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2428), 2, + ACTIONS(2420), 2, anon_sym_RPAREN, anon_sym_COMMA, - [53189] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 1, - anon_sym_LBRACK, - ACTIONS(2430), 1, - anon_sym_LPAREN, - STATE(1370), 1, - sym_type_parameters, - STATE(1371), 1, - sym_parameters, - [53205] = 4, + [53309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 1, - anon_sym_case, - STATE(562), 1, - sym_cases, - STATE(345), 2, - sym_case_block, - aux_sym_cases_repeat1, - [53219] = 5, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2422), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, + ACTIONS(2157), 1, sym_identifier, - STATE(1109), 1, + STATE(1180), 1, sym_dotted_name, - STATE(1143), 1, + STATE(1240), 1, sym_aliased_import, - STATE(1383), 1, - sym__import_list, - [53235] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 1, - anon_sym_LBRACK, - ACTIONS(2430), 1, - anon_sym_LPAREN, - STATE(1354), 1, - sym_type_parameters, - STATE(1377), 1, - sym_parameters, - [53251] = 5, - ACTIONS(3), 1, + ACTIONS(2424), 2, + sym__newline, + anon_sym_SEMI, + [53343] = 6, + ACTIONS(1875), 1, sym_comment, - ACTIONS(2365), 1, - anon_sym_LBRACK, - ACTIONS(2430), 1, - anon_sym_LPAREN, - STATE(1356), 1, - sym_type_parameters, - STATE(1378), 1, - sym_parameters, - [53267] = 3, + ACTIONS(2426), 1, + anon_sym_RBRACE, + ACTIONS(2428), 1, + anon_sym_LBRACE2, + ACTIONS(2431), 1, + aux_sym_format_specifier_token1, + STATE(1129), 1, + aux_sym_format_specifier_repeat1, + STATE(1318), 1, + sym_interpolation, + [53362] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(2191), 1, + anon_sym_if, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_or, + ACTIONS(2434), 1, + anon_sym_as, ACTIONS(2436), 1, - anon_sym_EQ, - ACTIONS(2434), 3, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, - [53279] = 5, + [53381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, ACTIONS(2438), 1, anon_sym_COLON, - [53295] = 5, + [53397] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, ACTIONS(2440), 1, - anon_sym_COLON, - [53311] = 5, + sym_identifier, + STATE(1158), 1, + sym_dotted_name, + STATE(1275), 1, + sym_aliased_import, + STATE(1464), 1, + sym__import_list, + [53413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2442), 1, - anon_sym_COLON, - [53327] = 4, + ACTIONS(2442), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [53423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2444), 1, anon_sym_COMMA, - STATE(1160), 1, + STATE(1134), 1, aux_sym_assert_statement_repeat1, - ACTIONS(2444), 2, + ACTIONS(2261), 2, sym__newline, - sym__semicolon, - [53341] = 4, + anon_sym_SEMI, + [53437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(2447), 1, anon_sym_COMMA, - STATE(1138), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2449), 2, + STATE(1135), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2450), 2, + sym__newline, + anon_sym_SEMI, + [53451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(580), 1, sym__newline, + ACTIONS(2452), 1, + anon_sym_SEMI, + STATE(134), 1, sym__semicolon, - [53355] = 4, + STATE(1213), 1, + aux_sym__simple_statements_repeat1, + [53467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2453), 1, - anon_sym_COLON, - STATE(1343), 1, - sym__type_bound, - ACTIONS(2451), 2, + ACTIONS(2219), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - [53369] = 5, + anon_sym_RBRACE, + [53477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2455), 1, - anon_sym_COLON, - [53385] = 5, + ACTIONS(2454), 1, + anon_sym_SEMI, + ACTIONS(2456), 1, + sym__newline, + STATE(137), 1, + sym__semicolon, + STATE(1188), 1, + aux_sym__simple_statements_repeat1, + [53493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2457), 1, + ACTIONS(2458), 1, anon_sym_COLON, - [53401] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2332), 1, - anon_sym_RPAREN, - ACTIONS(2459), 1, - sym_identifier, - STATE(1245), 1, - sym_dotted_name, - STATE(1397), 1, - sym_aliased_import, - [53417] = 4, + [53509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 1, - anon_sym_COMMA, - STATE(1163), 1, - aux_sym__import_list_repeat1, - ACTIONS(2373), 2, + ACTIONS(2460), 1, + anon_sym_SEMI, + ACTIONS(2462), 1, sym__newline, + STATE(135), 1, sym__semicolon, - [53431] = 4, + STATE(1202), 1, + aux_sym__simple_statements_repeat1, + [53525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - anon_sym_DOT, - STATE(1165), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2461), 2, - anon_sym_import, - sym_identifier, - [53445] = 5, + ACTIONS(2466), 1, + anon_sym_COLON, + ACTIONS(2468), 1, + anon_sym_EQ, + ACTIONS(2464), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2465), 1, + ACTIONS(2470), 1, anon_sym_COLON, - [53461] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2469), 1, - anon_sym_COMMA, - STATE(1167), 1, - aux_sym__patterns_repeat1, - ACTIONS(2467), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [53475] = 5, + [53555] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, + ACTIONS(2424), 1, anon_sym_RPAREN, - ACTIONS(2459), 1, + ACTIONS(2440), 1, sym_identifier, - STATE(1245), 1, + STATE(1303), 1, sym_dotted_name, - STATE(1397), 1, + STATE(1364), 1, sym_aliased_import, - [53491] = 5, + [53571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2471), 1, - anon_sym_COLON, - [53507] = 5, + ACTIONS(2472), 1, + anon_sym_else, + [53587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2473), 1, - anon_sym_else, - [53523] = 4, + ACTIONS(2474), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2336), 1, anon_sym_COMMA, - STATE(1171), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2477), 2, + STATE(1210), 1, + aux_sym__import_list_repeat1, + ACTIONS(2340), 2, sym__newline, - sym__semicolon, - [53537] = 5, + anon_sym_SEMI, + [53611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2479), 1, + ACTIONS(2346), 1, anon_sym_COLON, - [53553] = 5, + ACTIONS(2476), 1, + anon_sym_RBRACE, + ACTIONS(2478), 1, + sym_type_conversion, + STATE(1486), 1, + sym_format_specifier, + [53627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(594), 1, + sym__newline, + ACTIONS(2480), 1, + anon_sym_SEMI, + STATE(144), 1, + sym__semicolon, + STATE(1213), 1, + aux_sym__simple_statements_repeat1, + [53643] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2482), 1, + anon_sym_SEMI, + ACTIONS(2484), 1, + sym__newline, + STATE(136), 1, + sym__semicolon, + STATE(1136), 1, + aux_sym__simple_statements_repeat1, + [53659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2481), 1, - anon_sym_else, - [53569] = 5, + ACTIONS(2486), 1, + anon_sym_COLON, + [53675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2483), 1, + ACTIONS(2488), 1, anon_sym_COLON, - [53585] = 4, + [53691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_COMMA, - STATE(1192), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2487), 2, - sym__newline, - sym__semicolon, - [53599] = 4, + ACTIONS(2490), 1, + anon_sym_case, + STATE(593), 1, + sym_cases, + STATE(352), 2, + sym_case_block, + aux_sym_cases_repeat1, + [53705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2330), 1, + anon_sym_EQ, + STATE(1381), 1, + sym__type_param_default, + ACTIONS(2492), 2, anon_sym_COMMA, - STATE(1191), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2489), 2, - sym__newline, - sym__semicolon, - [53613] = 5, + anon_sym_RBRACK, + [53719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(2053), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2071), 1, - anon_sym_if, - ACTIONS(2491), 1, - sym__newline, - [53629] = 5, + ACTIONS(2494), 1, + anon_sym_COLON, + [53735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2493), 1, + ACTIONS(2496), 1, anon_sym_COLON, - [53645] = 5, + [53751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2498), 1, + anon_sym_SEMI, + ACTIONS(2500), 1, + sym__newline, + STATE(143), 1, + sym__semicolon, + STATE(1148), 1, + aux_sym__simple_statements_repeat1, + [53767] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2495), 1, + ACTIONS(2502), 1, anon_sym_COLON, - [53661] = 5, + [53783] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2340), 1, + anon_sym_RPAREN, + ACTIONS(2504), 1, + anon_sym_COMMA, + ACTIONS(2506), 1, + anon_sym_as, + STATE(1327), 1, + aux_sym__import_list_repeat1, + [53799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2497), 1, + ACTIONS(2508), 1, anon_sym_COLON, - [53677] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2499), 1, - anon_sym_COMMA, - STATE(1160), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2267), 2, - sym__newline, - sym__semicolon, - [53691] = 5, + [53815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 1, + ACTIONS(2510), 4, anon_sym_RPAREN, - ACTIONS(2502), 1, anon_sym_COMMA, - ACTIONS(2504), 1, - anon_sym_as, - STATE(1205), 1, - aux_sym__import_list_repeat1, - [53707] = 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + [53825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(2512), 1, anon_sym_COMMA, - STATE(1162), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2509), 2, + STATE(1185), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2514), 2, sym__newline, - sym__semicolon, - [53721] = 4, + anon_sym_SEMI, + [53839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2511), 1, + ACTIONS(2512), 1, anon_sym_COMMA, - STATE(1189), 1, - aux_sym__import_list_repeat1, - ACTIONS(2513), 2, + STATE(1185), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2516), 2, sym__newline, - sym__semicolon, - [53735] = 4, + anon_sym_SEMI, + [53853] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2520), 1, anon_sym_COMMA, - STATE(1189), 1, - aux_sym__import_list_repeat1, - ACTIONS(2513), 2, - sym__newline, - sym__semicolon, - [53749] = 4, + STATE(1163), 1, + aux_sym_with_clause_repeat1, + ACTIONS(2518), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [53867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, - anon_sym_DOT, - STATE(1165), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2517), 2, - anon_sym_import, - sym_identifier, - [53763] = 2, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2523), 1, + anon_sym_else, + [53883] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53773] = 4, + ACTIONS(600), 1, + sym__newline, + ACTIONS(2525), 1, + anon_sym_SEMI, + STATE(139), 1, + sym__semicolon, + STATE(1213), 1, + aux_sym__simple_statements_repeat1, + [53899] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2527), 1, + anon_sym_COLON, + [53915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, + ACTIONS(2531), 1, anon_sym_COMMA, - STATE(872), 1, + STATE(1203), 1, aux_sym__patterns_repeat1, - ACTIONS(2522), 2, + ACTIONS(2529), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [53787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(315), 1, - sym__string_start, - ACTIONS(1899), 1, - anon_sym_COLON, - STATE(598), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - [53801] = 5, + [53929] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1910), 1, anon_sym_if, - ACTIONS(1881), 1, + ACTIONS(1912), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(1914), 1, anon_sym_or, - ACTIONS(2526), 1, - anon_sym_else, - [53817] = 2, + ACTIONS(2533), 1, + anon_sym_COLON, + [53945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53827] = 4, + ACTIONS(2490), 1, + anon_sym_case, + STATE(592), 1, + sym_cases, + STATE(352), 2, + sym_case_block, + aux_sym_cases_repeat1, + [53959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_COMMA, - STATE(1162), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2532), 2, + ACTIONS(2440), 1, + sym_identifier, + STATE(1158), 1, + sym_dotted_name, + STATE(1275), 1, + sym_aliased_import, + STATE(1463), 1, + sym__import_list, + [53975] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(574), 1, sym__newline, + ACTIONS(2535), 1, + anon_sym_SEMI, + STATE(142), 1, sym__semicolon, - [53841] = 4, + STATE(1213), 1, + aux_sym__simple_statements_repeat1, + [53991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(2512), 1, anon_sym_COMMA, STATE(1162), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2536), 2, + aux_sym_global_statement_repeat1, + ACTIONS(2537), 2, sym__newline, - sym__semicolon, - [53855] = 5, + anon_sym_SEMI, + [54005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_COLON, - ACTIONS(2538), 1, - anon_sym_RBRACE, - ACTIONS(2540), 1, - sym_type_conversion, - STATE(1479), 1, - sym_format_specifier, - [53871] = 4, + ACTIONS(2384), 1, + anon_sym_LBRACK, + ACTIONS(2539), 1, + anon_sym_LPAREN, + STATE(1384), 1, + sym_parameters, + STATE(1392), 1, + sym_type_parameters, + [54021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 1, + anon_sym_case, + STATE(531), 1, + sym_cases, + STATE(384), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2543), 1, anon_sym_COMMA, - STATE(1160), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2542), 2, + STATE(1175), 1, + aux_sym__import_list_repeat1, + ACTIONS(2546), 2, sym__newline, - sym__semicolon, - [53885] = 2, + anon_sym_SEMI, + [54049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53895] = 5, + ACTIONS(2541), 1, + anon_sym_case, + STATE(530), 1, + sym_cases, + STATE(384), 2, + sym_case_block, + aux_sym_cases_repeat1, + [54063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, - anon_sym_LBRACK, - ACTIONS(2430), 1, - anon_sym_LPAREN, + ACTIONS(2157), 1, + sym_identifier, + STATE(1094), 1, + sym_dotted_name, + STATE(1146), 1, + sym_aliased_import, STATE(1358), 1, - sym_type_parameters, - STATE(1363), 1, - sym_parameters, - [53911] = 4, + sym__import_list, + [54079] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2548), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(2550), 1, - anon_sym_EQ, - ACTIONS(2546), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53925] = 4, + sym__newline, + STATE(146), 1, + sym__semicolon, + STATE(1165), 1, + aux_sym__simple_statements_repeat1, + [54095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, - anon_sym_COMMA, - STATE(1178), 1, - aux_sym_with_clause_repeat1, + ACTIONS(2330), 1, + anon_sym_EQ, + STATE(1387), 1, + sym__type_param_default, ACTIONS(2552), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [53939] = 4, + anon_sym_COMMA, + anon_sym_RBRACK, + [54109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 1, - anon_sym_case, - STATE(541), 1, - sym_cases, - STATE(380), 2, - sym_case_block, - aux_sym_cases_repeat1, - [53953] = 4, + ACTIONS(2338), 1, + anon_sym_as, + ACTIONS(2554), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [54121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2557), 1, - anon_sym_case, - STATE(543), 1, - sym_cases, - STATE(380), 2, - sym_case_block, - aux_sym_cases_repeat1, - [53967] = 5, + ACTIONS(2330), 1, + anon_sym_EQ, + STATE(1386), 1, + sym__type_param_default, + ACTIONS(2556), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(315), 1, + sym__string_start, + ACTIONS(1961), 1, anon_sym_COLON, - ACTIONS(2559), 1, - anon_sym_RBRACE, - ACTIONS(2561), 1, - sym_type_conversion, - STATE(1420), 1, - sym_format_specifier, - [53983] = 5, + STATE(601), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + [54149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 1, + ACTIONS(2334), 1, anon_sym_RPAREN, - ACTIONS(2459), 1, + ACTIONS(2440), 1, sym_identifier, - STATE(1245), 1, + STATE(1303), 1, sym_dotted_name, - STATE(1397), 1, + STATE(1364), 1, sym_aliased_import, - [53999] = 3, + [54165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_as, - ACTIONS(2563), 3, + ACTIONS(2558), 1, + anon_sym_COMMA, + STATE(1198), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2560), 2, sym__newline, + anon_sym_SEMI, + [54179] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_COMMA, - sym__semicolon, - [54011] = 4, + STATE(1185), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2565), 2, + sym__newline, + anon_sym_SEMI, + [54193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 1, - anon_sym_case, - STATE(560), 1, - sym_cases, - STATE(345), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54025] = 2, + ACTIONS(2569), 1, + anon_sym_DOT, + STATE(1205), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2567), 2, + anon_sym_import, + sym_identifier, + [54207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [54035] = 5, + ACTIONS(2384), 1, + anon_sym_LBRACK, + ACTIONS(2539), 1, + anon_sym_LPAREN, + STATE(1346), 1, + sym_parameters, + STATE(1389), 1, + sym_type_parameters, + [54223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym_if, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(2567), 1, - anon_sym_else, - [54051] = 2, + ACTIONS(582), 1, + sym__newline, + ACTIONS(2571), 1, + anon_sym_SEMI, + STATE(138), 1, + sym__semicolon, + STATE(1213), 1, + aux_sym__simple_statements_repeat1, + [54239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1934), 4, + ACTIONS(598), 1, sym__newline, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(2573), 1, + anon_sym_SEMI, + STATE(141), 1, sym__semicolon, - [54061] = 5, + STATE(1213), 1, + aux_sym__simple_statements_repeat1, + [54255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - sym_identifier, - STATE(1161), 1, - sym_dotted_name, - STATE(1321), 1, - sym_aliased_import, - STATE(1415), 1, - sym__import_list, - [54077] = 4, + ACTIONS(2029), 1, + anon_sym_if, + ACTIONS(2031), 1, + anon_sym_and, + ACTIONS(2033), 1, + anon_sym_or, + ACTIONS(2575), 1, + sym__newline, + [54271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2569), 1, - anon_sym_COMMA, - STATE(1189), 1, - aux_sym__import_list_repeat1, - ACTIONS(2572), 2, - sym__newline, - sym__semicolon, - [54091] = 4, + ACTIONS(2346), 1, + anon_sym_COLON, + ACTIONS(2577), 1, + anon_sym_RBRACE, + ACTIONS(2579), 1, + sym_type_conversion, + STATE(1467), 1, + sym_format_specifier, + [54287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(2583), 1, + anon_sym_EQ, + ACTIONS(2581), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1077), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(1703), 2, - anon_sym_if, anon_sym_COLON, - [54105] = 4, + [54299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2215), 1, anon_sym_COMMA, - STATE(1138), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2576), 2, + STATE(1134), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2585), 2, sym__newline, - sym__semicolon, - [54119] = 4, + anon_sym_SEMI, + [54313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2215), 1, anon_sym_COMMA, - STATE(1138), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2578), 2, + STATE(1134), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2587), 2, sym__newline, - sym__semicolon, - [54133] = 5, + anon_sym_SEMI, + [54327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - sym_identifier, - STATE(1161), 1, - sym_dotted_name, - STATE(1321), 1, - sym_aliased_import, - STATE(1418), 1, - sym__import_list, - [54149] = 4, + ACTIONS(2589), 1, + anon_sym_COMMA, + STATE(1135), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2591), 2, + sym__newline, + anon_sym_SEMI, + [54341] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(584), 1, - sym__newline, - ACTIONS(2580), 1, - sym__semicolon, - STATE(1200), 1, - aux_sym__simple_statements_repeat1, - [54162] = 4, + ACTIONS(2384), 1, + anon_sym_LBRACK, + ACTIONS(2539), 1, + anon_sym_LPAREN, + STATE(1356), 1, + sym_parameters, + STATE(1402), 1, + sym_type_parameters, + [54357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, - sym_identifier, - ACTIONS(2584), 1, - anon_sym_RPAREN, - STATE(1341), 1, - sym_match_keyword_pattern, - [54175] = 4, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2593), 1, + anon_sym_else, + [54373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, + ACTIONS(2595), 1, anon_sym_COMMA, - ACTIONS(2588), 1, - anon_sym_RBRACK, - STATE(1299), 1, - aux_sym_subscript_repeat1, - [54188] = 4, + STATE(1135), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2597), 2, + sym__newline, + anon_sym_SEMI, + [54387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 1, - anon_sym_COMMA, - ACTIONS(2590), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [54201] = 2, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2599), 1, + anon_sym_else, + [54403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [54210] = 4, + ACTIONS(2334), 1, + anon_sym_RPAREN, + ACTIONS(2440), 1, + sym_identifier, + STATE(1303), 1, + sym_dotted_name, + STATE(1364), 1, + sym_aliased_import, + [54419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 1, - anon_sym_COMMA, - ACTIONS(2592), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [54223] = 4, + ACTIONS(2384), 1, + anon_sym_LBRACK, + ACTIONS(2539), 1, + anon_sym_LPAREN, + STATE(1361), 1, + sym_parameters, + STATE(1403), 1, + sym_type_parameters, + [54435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 1, - sym__semicolon, - ACTIONS(2597), 1, + ACTIONS(578), 1, sym__newline, - STATE(1200), 1, + ACTIONS(2601), 1, + anon_sym_SEMI, + STATE(140), 1, + sym__semicolon, + STATE(1213), 1, aux_sym__simple_statements_repeat1, - [54236] = 2, + [54451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 3, - anon_sym_RPAREN, + ACTIONS(2605), 1, anon_sym_COMMA, - anon_sym_COLON, - [54245] = 4, + STATE(873), 1, + aux_sym__patterns_repeat1, + ACTIONS(2603), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, + ACTIONS(2607), 1, anon_sym_COMMA, - ACTIONS(2603), 1, - anon_sym_RBRACK, - STATE(1323), 1, + STATE(1076), 1, aux_sym_open_sequence_match_pattern_repeat1, - [54258] = 4, + ACTIONS(1707), 2, + anon_sym_if, + anon_sym_COLON, + [54479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, - anon_sym_COMMA, - ACTIONS(2607), 1, - anon_sym_RBRACK, - STATE(1299), 1, - aux_sym_subscript_repeat1, - [54271] = 4, + ACTIONS(2611), 1, + anon_sym_DOT, + STATE(1205), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2609), 2, + anon_sym_import, + sym_identifier, + [54493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, + ACTIONS(1910), 1, + anon_sym_if, + ACTIONS(1912), 1, + anon_sym_and, + ACTIONS(1914), 1, + anon_sym_or, + ACTIONS(2614), 1, anon_sym_COLON, - ACTIONS(2609), 1, - anon_sym_COMMA, - STATE(1295), 1, - aux_sym__parameters_repeat1, - [54284] = 4, + [54509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 1, - anon_sym_RPAREN, - ACTIONS(2611), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, + sym__newline, + STATE(145), 1, + sym__semicolon, + STATE(1189), 1, + aux_sym__simple_statements_repeat1, + [54525] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2620), 1, anon_sym_COMMA, - STATE(1240), 1, + STATE(1175), 1, aux_sym__import_list_repeat1, - [54297] = 4, + ACTIONS(2622), 2, + sym__newline, + anon_sym_SEMI, + [54539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 1, - anon_sym_RPAREN, - ACTIONS(2613), 1, + ACTIONS(2624), 1, + anon_sym_SEMI, + ACTIONS(2626), 1, + sym__newline, + STATE(133), 1, + sym__semicolon, + STATE(1171), 1, + aux_sym__simple_statements_repeat1, + [54555] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2628), 1, anon_sym_COMMA, - STATE(1240), 1, + STATE(1175), 1, aux_sym__import_list_repeat1, - [54310] = 2, + ACTIONS(2622), 2, + sym__newline, + anon_sym_SEMI, + [54569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 3, - anon_sym_RPAREN, + ACTIONS(2512), 1, anon_sym_COMMA, - anon_sym_COLON, - [54319] = 4, + STATE(1161), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2630), 2, + sym__newline, + anon_sym_SEMI, + [54583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(1965), 4, + sym__newline, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2617), 1, - anon_sym_RBRACK, - STATE(1252), 1, - aux_sym_type_parameters_repeat1, - [54332] = 4, + anon_sym_SEMI, + [54593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, - sym__semicolon, - ACTIONS(2621), 1, + ACTIONS(2632), 1, + anon_sym_SEMI, + ACTIONS(2635), 1, sym__newline, - STATE(1194), 1, + STATE(147), 1, + sym__semicolon, + STATE(1213), 1, aux_sym__simple_statements_repeat1, - [54345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_LPAREN, - ACTIONS(2623), 1, - anon_sym_COLON, - STATE(1476), 1, - sym_argument_list, - [54358] = 4, + [54609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(2637), 1, anon_sym_COMMA, - ACTIONS(2628), 1, - anon_sym_RBRACE, - STATE(1211), 1, - aux_sym_match_mapping_pattern_repeat1, - [54371] = 4, + ACTIONS(2639), 1, + anon_sym_COLON, + STATE(1241), 1, + aux_sym__parameters_repeat1, + [54622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, + ACTIONS(2641), 3, anon_sym_RPAREN, - ACTIONS(2632), 1, anon_sym_COMMA, - STATE(1213), 1, - aux_sym_match_class_pattern_repeat1, - [54384] = 4, + anon_sym_COLON, + [54631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, + ACTIONS(2643), 1, anon_sym_RPAREN, - ACTIONS(2634), 1, + ACTIONS(2645), 1, anon_sym_COMMA, - STATE(1296), 1, - aux_sym_match_class_pattern_repeat1, - [54397] = 4, + STATE(1312), 1, + aux_sym_argument_list_repeat1, + [54644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, - sym__semicolon, - ACTIONS(2638), 1, + ACTIONS(2647), 1, + anon_sym_EQ, + ACTIONS(2649), 2, sym__newline, - STATE(1231), 1, - aux_sym__simple_statements_repeat1, - [54410] = 4, + anon_sym_SEMI, + [54655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, + ACTIONS(1983), 1, anon_sym_RPAREN, - ACTIONS(2582), 1, - sym_identifier, - STATE(1341), 1, - sym_match_keyword_pattern, - [54423] = 4, + ACTIONS(1985), 1, + anon_sym_COMMA, + STATE(1311), 1, + aux_sym_argument_list_repeat1, + [54668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 1, + ACTIONS(1900), 1, + anon_sym_COMMA, + ACTIONS(1981), 1, + anon_sym_RPAREN, + STATE(1313), 1, + aux_sym__collection_elements_repeat1, + [54681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2651), 1, anon_sym_RPAREN, - ACTIONS(2640), 1, + ACTIONS(2653), 1, anon_sym_COMMA, - STATE(1316), 1, - aux_sym_match_class_pattern_repeat2, - [54436] = 3, + STATE(1301), 1, + aux_sym_argument_list_repeat1, + [54694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_except, - ACTIONS(970), 2, - anon_sym_except_STAR, - anon_sym_finally, - [54447] = 4, + ACTIONS(1814), 1, + anon_sym_COMMA, + ACTIONS(2655), 1, + anon_sym_in, + STATE(885), 1, + aux_sym__patterns_repeat1, + [54707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2642), 1, + ACTIONS(2657), 1, anon_sym_COMMA, - ACTIONS(2644), 1, + ACTIONS(2659), 1, anon_sym_RBRACE, - STATE(1257), 1, + STATE(1328), 1, aux_sym_match_mapping_pattern_repeat1, - [54460] = 4, + [54720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1814), 1, anon_sym_COMMA, - ACTIONS(1930), 1, - anon_sym_RPAREN, - STATE(1292), 1, - aux_sym__collection_elements_repeat1, - [54473] = 4, + ACTIONS(2661), 1, + anon_sym_in, + STATE(885), 1, + aux_sym__patterns_repeat1, + [54733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(2183), 1, anon_sym_COMMA, - ACTIONS(2157), 1, + ACTIONS(2185), 1, anon_sym_RBRACK, - STATE(1196), 1, + STATE(1315), 1, aux_sym_subscript_repeat1, - [54486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, - anon_sym_if, - ACTIONS(2648), 1, - anon_sym_COLON, - STATE(1481), 1, - sym_guard, - [54499] = 3, - ACTIONS(1942), 1, + [54746] = 3, + ACTIONS(1875), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(2278), 1, anon_sym_RBRACE, - ACTIONS(2291), 2, + ACTIONS(2280), 2, anon_sym_LBRACE2, aux_sym_format_specifier_token1, - [54510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2449), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [54519] = 4, + [54757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, - anon_sym_LPAREN, - ACTIONS(2650), 1, - anon_sym_COLON, - STATE(1470), 1, - sym_argument_list, - [54532] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, + ACTIONS(2173), 1, anon_sym_COMMA, - ACTIONS(2189), 1, + ACTIONS(2175), 1, anon_sym_RBRACE, - STATE(1243), 1, + STATE(1248), 1, aux_sym_dictionary_repeat1, - [54545] = 2, + [54770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 3, - sym__newline, - anon_sym_COMMA, - sym__semicolon, - [54554] = 4, + ACTIONS(2440), 1, + sym_identifier, + STATE(1303), 1, + sym_dotted_name, + STATE(1364), 1, + sym_aliased_import, + [54783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(2177), 1, anon_sym_COMMA, - ACTIONS(2654), 1, + ACTIONS(2181), 1, anon_sym_RBRACK, - STATE(1208), 1, - aux_sym_type_parameters_repeat1, - [54567] = 4, + STATE(1249), 1, + aux_sym_subscript_repeat1, + [54796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2663), 1, anon_sym_RPAREN, - ACTIONS(2658), 1, + ACTIONS(2665), 1, anon_sym_COMMA, - STATE(1232), 1, + STATE(1236), 1, aux_sym_argument_list_repeat1, - [54580] = 4, + [54809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 1, + ACTIONS(2639), 1, anon_sym_RPAREN, - ACTIONS(2662), 1, + ACTIONS(2667), 1, anon_sym_COMMA, - STATE(1249), 1, + STATE(1254), 1, aux_sym__parameters_repeat1, - [54593] = 4, + [54822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 1, + ACTIONS(1973), 1, anon_sym_RPAREN, - ACTIONS(2666), 1, + ACTIONS(1975), 1, anon_sym_COMMA, - STATE(1232), 1, + STATE(1220), 1, aux_sym_argument_list_repeat1, - [54606] = 4, + [54835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(586), 1, - sym__newline, - ACTIONS(2668), 1, - sym__semicolon, - STATE(1200), 1, - aux_sym__simple_statements_repeat1, - [54619] = 4, + ACTIONS(2518), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [54844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, + ACTIONS(1721), 1, anon_sym_RPAREN, - ACTIONS(2672), 1, - anon_sym_COMMA, - STATE(1232), 1, - aux_sym_argument_list_repeat1, - [54632] = 3, + ACTIONS(2669), 1, + sym_identifier, + STATE(1360), 1, + sym_match_keyword_pattern, + [54857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1016), 1, - anon_sym_except, - ACTIONS(1018), 2, - anon_sym_except_STAR, - anon_sym_finally, - [54643] = 4, + ACTIONS(2346), 1, + anon_sym_COLON, + ACTIONS(2577), 1, + anon_sym_RBRACE, + STATE(1467), 1, + sym_format_specifier, + [54870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2671), 1, + anon_sym_RPAREN, + ACTIONS(2673), 1, anon_sym_COMMA, - ACTIONS(2677), 1, - anon_sym_RBRACE, STATE(1235), 1, - aux_sym_dictionary_repeat1, - [54656] = 4, + aux_sym_match_class_pattern_repeat2, + [54883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2676), 1, + anon_sym_RPAREN, + ACTIONS(2678), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym_argument_list_repeat1, + [54896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 1, + ACTIONS(2680), 1, anon_sym_COMMA, ACTIONS(2682), 1, - anon_sym_RBRACE, - STATE(1235), 1, - aux_sym_dictionary_repeat1, - [54669] = 4, + anon_sym_COLON, + STATE(1297), 1, + aux_sym_with_clause_repeat1, + [54909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(2669), 1, sym_identifier, ACTIONS(2684), 1, - anon_sym_import, - STATE(1408), 1, - sym_dotted_name, - [54682] = 4, + anon_sym_RPAREN, + STATE(1360), 1, + sym_match_keyword_pattern, + [54922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(598), 1, - sym__newline, + ACTIONS(2684), 1, + anon_sym_RPAREN, ACTIONS(2686), 1, - sym__semicolon, - STATE(1200), 1, - aux_sym__simple_statements_repeat1, - [54695] = 4, + anon_sym_COMMA, + STATE(1235), 1, + aux_sym_match_class_pattern_repeat2, + [54935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2554), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_SEMI, + [54944] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1846), 1, + anon_sym_COLON, ACTIONS(2688), 1, - sym__semicolon, - ACTIONS(2690), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym__parameters_repeat1, + [54957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1399), 3, sym__newline, - STATE(1237), 1, - aux_sym__simple_statements_repeat1, - [54708] = 4, + anon_sym_in, + anon_sym_SEMI, + [54966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 1, - anon_sym_RPAREN, - ACTIONS(1965), 1, + ACTIONS(2690), 3, + sym__newline, anon_sym_COMMA, - STATE(1264), 1, - aux_sym_argument_list_repeat1, - [54721] = 4, + anon_sym_SEMI, + [54975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, - anon_sym_RPAREN, ACTIONS(2692), 1, anon_sym_COMMA, - STATE(1240), 1, - aux_sym__import_list_repeat1, - [54734] = 4, + ACTIONS(2694), 1, + anon_sym_RBRACE, + STATE(1281), 1, + aux_sym_dictionary_repeat1, + [54988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(576), 1, + ACTIONS(1403), 3, sym__newline, - ACTIONS(2695), 1, - sym__semicolon, - STATE(1200), 1, - aux_sym__simple_statements_repeat1, - [54747] = 4, + anon_sym_in, + anon_sym_SEMI, + [54997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(2684), 1, + anon_sym_RPAREN, + ACTIONS(2686), 1, anon_sym_COMMA, - ACTIONS(2699), 1, - anon_sym_RBRACE, - STATE(1235), 1, - aux_sym_dictionary_repeat1, - [54760] = 4, + STATE(1266), 1, + aux_sym_match_class_pattern_repeat2, + [55010] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2696), 1, + anon_sym_RPAREN, + ACTIONS(2698), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym_argument_list_repeat1, + [55023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(2700), 1, anon_sym_COMMA, - ACTIONS(2703), 1, + ACTIONS(2702), 1, anon_sym_RBRACE, - STATE(1235), 1, + STATE(1281), 1, aux_sym_dictionary_repeat1, - [54773] = 4, + [55036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, - sym__semicolon, - ACTIONS(2707), 1, - sym__newline, - STATE(1241), 1, - aux_sym__simple_statements_repeat1, - [54786] = 3, + ACTIONS(2704), 1, + anon_sym_COMMA, + ACTIONS(2706), 1, + anon_sym_RBRACK, + STATE(1296), 1, + aux_sym_subscript_repeat1, + [55049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, - anon_sym_as, - ACTIONS(2563), 2, - anon_sym_RPAREN, + ACTIONS(2708), 1, anon_sym_COMMA, - [54797] = 4, + ACTIONS(2710), 1, + anon_sym_RBRACE, + STATE(1281), 1, + aux_sym_dictionary_repeat1, + [55062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(582), 1, - sym__newline, - ACTIONS(2709), 1, - sym__semicolon, - STATE(1200), 1, - aux_sym__simple_statements_repeat1, - [54810] = 4, + ACTIONS(2712), 1, + anon_sym_COMMA, + ACTIONS(2714), 1, + anon_sym_RBRACK, + STATE(1296), 1, + aux_sym_subscript_repeat1, + [55075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, + ACTIONS(2716), 1, anon_sym_COMMA, - ACTIONS(2713), 1, + ACTIONS(2718), 1, anon_sym_RBRACE, - STATE(1235), 1, + STATE(1281), 1, aux_sym_dictionary_repeat1, - [54823] = 4, + [55088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, - sym__semicolon, - ACTIONS(2717), 1, + ACTIONS(2045), 1, + anon_sym_from, + ACTIONS(2049), 2, sym__newline, - STATE(1246), 1, - aux_sym__simple_statements_repeat1, - [54836] = 4, + anon_sym_SEMI, + [55099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, + ACTIONS(1846), 1, anon_sym_RPAREN, - ACTIONS(2719), 1, + ACTIONS(2720), 1, anon_sym_COMMA, - STATE(1275), 1, + STATE(1282), 1, aux_sym__parameters_repeat1, - [54849] = 2, + [55112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 3, - anon_sym_LPAREN, + ACTIONS(1172), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [54858] = 4, + [55121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1932), 1, - anon_sym_RPAREN, - STATE(1292), 1, - aux_sym__collection_elements_repeat1, - [54871] = 4, + ACTIONS(974), 1, + anon_sym_except, + ACTIONS(976), 2, + anon_sym_except_STAR, + anon_sym_finally, + [55132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2722), 1, anon_sym_COMMA, - ACTIONS(2726), 1, + ACTIONS(2724), 1, anon_sym_RBRACK, - STATE(1252), 1, - aux_sym_type_parameters_repeat1, - [54884] = 3, - ACTIONS(1942), 1, + STATE(1335), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [55145] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_RBRACE, - ACTIONS(2250), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [54895] = 4, + ACTIONS(2376), 1, + anon_sym_RPAREN, + ACTIONS(2726), 1, + anon_sym_COMMA, + STATE(1116), 1, + aux_sym__collection_elements_repeat1, + [55158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(574), 1, - sym__newline, + ACTIONS(1814), 1, + anon_sym_COMMA, ACTIONS(2728), 1, - sym__semicolon, - STATE(1200), 1, - aux_sym__simple_statements_repeat1, - [54908] = 4, + anon_sym_in, + STATE(885), 1, + aux_sym__patterns_repeat1, + [55171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2669), 1, + sym_identifier, + ACTIONS(2730), 1, + anon_sym_RPAREN, + STATE(1360), 1, + sym_match_keyword_pattern, + [55184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_RPAREN, - ACTIONS(1995), 1, + ACTIONS(1969), 1, anon_sym_COMMA, - STATE(1277), 1, + STATE(1284), 1, aux_sym_argument_list_repeat1, - [54921] = 4, + [55197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 1, - anon_sym_RPAREN, ACTIONS(2732), 1, + anon_sym_RPAREN, + ACTIONS(2734), 1, anon_sym_COMMA, - STATE(1279), 1, + STATE(1286), 1, aux_sym_argument_list_repeat1, - [54934] = 4, + [55210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 1, - anon_sym_RBRACE, - ACTIONS(2734), 1, + ACTIONS(1814), 1, anon_sym_COMMA, - STATE(1211), 1, - aux_sym_match_mapping_pattern_repeat1, - [54947] = 4, + ACTIONS(2736), 1, + anon_sym_in, + STATE(885), 1, + aux_sym__patterns_repeat1, + [55223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(2223), 1, anon_sym_COMMA, - ACTIONS(2195), 1, + ACTIONS(2225), 1, anon_sym_RBRACK, - STATE(1283), 1, + STATE(1289), 1, aux_sym_subscript_repeat1, - [54960] = 4, + [55236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 1, - sym_identifier, + ACTIONS(2211), 1, + anon_sym_COMMA, + ACTIONS(2213), 1, + anon_sym_RBRACE, + STATE(1250), 1, + aux_sym_dictionary_repeat1, + [55249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2730), 1, + anon_sym_RPAREN, ACTIONS(2738), 1, - sym_match_wildcard_pattern, - STATE(1110), 1, - sym_match_capture_pattern, - [54973] = 4, + anon_sym_COMMA, + STATE(1235), 1, + aux_sym_match_class_pattern_repeat2, + [55262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2346), 1, anon_sym_COLON, - ACTIONS(2559), 1, + ACTIONS(2476), 1, anon_sym_RBRACE, - STATE(1420), 1, + STATE(1486), 1, sym_format_specifier, - [54986] = 4, + [55275] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2669), 1, + sym_identifier, ACTIONS(2740), 1, - sym__semicolon, - ACTIONS(2742), 1, - sym__newline, - STATE(1254), 1, - aux_sym__simple_statements_repeat1, - [54999] = 4, + anon_sym_RPAREN, + STATE(1360), 1, + sym_match_keyword_pattern, + [55288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - anon_sym_DOT, - ACTIONS(1893), 1, - anon_sym_COLON, - STATE(906), 1, - aux_sym_match_value_pattern_repeat1, - [55012] = 3, + ACTIONS(1717), 1, + anon_sym_RPAREN, + ACTIONS(2742), 1, + anon_sym_COMMA, + STATE(1285), 1, + aux_sym_match_class_pattern_repeat1, + [55301] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2380), 1, + anon_sym_LPAREN, ACTIONS(2744), 1, - anon_sym_EQ, - ACTIONS(2746), 2, - sym__newline, - sym__semicolon, - [55023] = 4, + anon_sym_COLON, + STATE(1474), 1, + sym_argument_list, + [55314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 1, + ACTIONS(1717), 1, anon_sym_RPAREN, - ACTIONS(2750), 1, - anon_sym_COMMA, - STATE(1232), 1, - aux_sym_argument_list_repeat1, - [55036] = 3, + ACTIONS(2669), 1, + sym_identifier, + STATE(1360), 1, + sym_match_keyword_pattern, + [55327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(968), 1, - anon_sym_except, - ACTIONS(966), 2, - anon_sym_except_STAR, - anon_sym_finally, - [55047] = 4, + ACTIONS(1717), 1, + anon_sym_RPAREN, + ACTIONS(2746), 1, + anon_sym_COMMA, + STATE(1235), 1, + aux_sym_match_class_pattern_repeat2, + [55340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2748), 1, anon_sym_COMMA, - ACTIONS(2754), 1, - anon_sym_COLON, - STATE(1178), 1, - aux_sym_with_clause_repeat1, - [55060] = 3, + ACTIONS(2751), 1, + anon_sym_RBRACE, + STATE(1273), 1, + aux_sym_match_mapping_pattern_repeat1, + [55353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, - anon_sym_COLON, - ACTIONS(2546), 2, + ACTIONS(982), 1, anon_sym_RPAREN, + ACTIONS(2753), 1, anon_sym_COMMA, - [55071] = 4, + STATE(1163), 1, + aux_sym_with_clause_repeat1, + [55366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(2340), 1, anon_sym_RPAREN, - ACTIONS(2760), 1, + ACTIONS(2504), 1, anon_sym_COMMA, - STATE(1310), 1, - aux_sym_with_clause_repeat1, - [55084] = 3, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2762), 1, - anon_sym_RBRACE, - ACTIONS(2764), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55095] = 2, + STATE(1326), 1, + aux_sym__import_list_repeat1, + [55379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 3, + ACTIONS(2755), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [55104] = 4, + [55388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, + ACTIONS(2757), 1, anon_sym_COMMA, - ACTIONS(2768), 1, - anon_sym_RBRACK, - STATE(1299), 1, - aux_sym_subscript_repeat1, - [55117] = 4, + ACTIONS(2759), 1, + anon_sym_RBRACE, + STATE(1281), 1, + aux_sym_dictionary_repeat1, + [55401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2761), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [55410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2770), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - ACTIONS(2772), 1, - anon_sym_RBRACK, - STATE(1299), 1, - aux_sym_subscript_repeat1, - [55130] = 4, + ACTIONS(1989), 1, + anon_sym_RPAREN, + STATE(1313), 1, + aux_sym__collection_elements_repeat1, + [55423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2774), 1, + ACTIONS(1881), 1, anon_sym_RPAREN, - ACTIONS(2776), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - STATE(1232), 1, - aux_sym_argument_list_repeat1, - [55143] = 4, + STATE(1313), 1, + aux_sym__collection_elements_repeat1, + [55436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2778), 1, - anon_sym_RPAREN, - ACTIONS(2780), 1, + ACTIONS(2763), 1, anon_sym_COMMA, - STATE(1232), 1, - aux_sym_argument_list_repeat1, - [55156] = 4, + ACTIONS(2766), 1, + anon_sym_RBRACE, + STATE(1281), 1, + aux_sym_dictionary_repeat1, + [55449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, + ACTIONS(2755), 1, anon_sym_RPAREN, - ACTIONS(2782), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - STATE(1275), 1, + STATE(1282), 1, aux_sym__parameters_repeat1, - [55169] = 4, + [55462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 1, + ACTIONS(2771), 1, anon_sym_COMMA, - ACTIONS(2785), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [55182] = 4, + ACTIONS(2774), 1, + anon_sym_RBRACK, + STATE(1283), 1, + aux_sym_type_parameters_repeat1, + [55475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(2776), 1, anon_sym_RPAREN, - ACTIONS(2789), 1, + ACTIONS(2778), 1, anon_sym_COMMA, - STATE(1232), 1, + STATE(1301), 1, aux_sym_argument_list_repeat1, - [55195] = 4, + [55488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_COLON, - ACTIONS(2538), 1, - anon_sym_RBRACE, - STATE(1479), 1, - sym_format_specifier, - [55208] = 4, + ACTIONS(2780), 1, + anon_sym_RPAREN, + ACTIONS(2782), 1, + anon_sym_COMMA, + STATE(1285), 1, + aux_sym_match_class_pattern_repeat1, + [55501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, + ACTIONS(2785), 1, anon_sym_RPAREN, - ACTIONS(2793), 1, + ACTIONS(2787), 1, anon_sym_COMMA, - STATE(1232), 1, + STATE(1301), 1, aux_sym_argument_list_repeat1, - [55221] = 4, + [55514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2789), 1, anon_sym_RPAREN, - ACTIONS(2797), 1, + ACTIONS(2791), 1, anon_sym_COMMA, - STATE(1232), 1, + STATE(1301), 1, aux_sym_argument_list_repeat1, - [55234] = 2, + [55527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 3, - anon_sym_RPAREN, + ACTIONS(2793), 1, anon_sym_COMMA, - anon_sym_COLON, - [55243] = 4, + ACTIONS(2795), 1, + anon_sym_RBRACE, + STATE(1281), 1, + aux_sym_dictionary_repeat1, + [55540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2797), 1, anon_sym_COMMA, - ACTIONS(2803), 1, + ACTIONS(2799), 1, anon_sym_RBRACK, - STATE(1299), 1, + STATE(1296), 1, aux_sym_subscript_repeat1, - [55256] = 4, + [55553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2801), 1, anon_sym_COMMA, - ACTIONS(2807), 1, + ACTIONS(2803), 1, anon_sym_RBRACK, - STATE(1299), 1, + STATE(1296), 1, aux_sym_subscript_repeat1, - [55269] = 4, + [55566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2346), 1, anon_sym_COLON, - ACTIONS(2809), 1, + ACTIONS(2805), 1, anon_sym_RBRACE, - STATE(1409), 1, + STATE(1471), 1, sym_format_specifier, - [55282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_RPAREN, - ACTIONS(2813), 1, - anon_sym_COMMA, - STATE(1232), 1, - aux_sym_argument_list_repeat1, - [55295] = 4, + [55579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 1, + ACTIONS(2807), 1, anon_sym_if, - ACTIONS(2815), 1, + ACTIONS(2809), 1, anon_sym_COLON, - STATE(1501), 1, + STATE(1488), 1, sym_guard, - [55308] = 3, + [55592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2546), 1, + anon_sym_RPAREN, + ACTIONS(2811), 1, anon_sym_COMMA, - ACTIONS(2819), 2, - anon_sym_if, - anon_sym_COLON, - [55319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2067), 1, - anon_sym_from, - ACTIONS(2073), 2, - sym__newline, - sym__semicolon, - [55330] = 4, + STATE(1293), 1, + aux_sym__import_list_repeat1, + [55605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_RPAREN, - ACTIONS(2821), 1, + ACTIONS(2231), 1, anon_sym_COMMA, - STATE(1114), 1, - aux_sym__collection_elements_repeat1, - [55343] = 4, + ACTIONS(2233), 1, + anon_sym_RBRACE, + STATE(1288), 1, + aux_sym_dictionary_repeat1, + [55618] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1721), 1, anon_sym_RPAREN, - ACTIONS(2823), 1, + ACTIONS(2814), 1, anon_sym_COMMA, - STATE(1325), 1, + STATE(1239), 1, aux_sym_match_class_pattern_repeat2, - [55356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 3, - sym__newline, - anon_sym_in, - sym__semicolon, - [55365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - anon_sym_RPAREN, - ACTIONS(2825), 1, - anon_sym_COMMA, - STATE(1114), 1, - aux_sym__collection_elements_repeat1, - [55378] = 4, + [55631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 1, + ACTIONS(2816), 1, anon_sym_COMMA, - ACTIONS(2827), 1, - anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [55391] = 4, + ACTIONS(2819), 1, + anon_sym_RBRACK, + STATE(1296), 1, + aux_sym_subscript_repeat1, + [55644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 1, + ACTIONS(2680), 1, anon_sym_COMMA, - ACTIONS(2209), 1, - anon_sym_RBRACK, - STATE(1271), 1, - aux_sym_subscript_repeat1, - [55404] = 4, + ACTIONS(2821), 1, + anon_sym_COLON, + STATE(1163), 1, + aux_sym_with_clause_repeat1, + [55657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, + ACTIONS(2823), 1, anon_sym_COLON, - ACTIONS(2829), 1, + ACTIONS(2464), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1295), 1, - aux_sym__parameters_repeat1, - [55417] = 4, + [55668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_RPAREN, - ACTIONS(2834), 1, + ACTIONS(2825), 1, anon_sym_COMMA, - STATE(1296), 1, - aux_sym_match_class_pattern_repeat1, - [55430] = 4, + ACTIONS(2827), 1, + anon_sym_RBRACK, + STATE(1345), 1, + aux_sym_type_parameters_repeat1, + [55681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(2829), 1, anon_sym_RPAREN, - ACTIONS(2839), 1, + ACTIONS(2831), 1, anon_sym_COMMA, STATE(1274), 1, - aux_sym_argument_list_repeat1, - [55443] = 4, + aux_sym_with_clause_repeat1, + [55694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1975), 1, + ACTIONS(2833), 1, anon_sym_RPAREN, - ACTIONS(1977), 1, + ACTIONS(2835), 1, anon_sym_COMMA, - STATE(1285), 1, + STATE(1301), 1, aux_sym_argument_list_repeat1, - [55456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_COMMA, - ACTIONS(2844), 1, - anon_sym_RBRACK, - STATE(1299), 1, - aux_sym_subscript_repeat1, - [55469] = 4, + [55707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(2565), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2848), 1, - anon_sym_RBRACE, - STATE(1235), 1, - aux_sym_dictionary_repeat1, - [55482] = 4, + anon_sym_SEMI, + [55716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(2850), 1, + ACTIONS(2506), 1, + anon_sym_as, + ACTIONS(2554), 2, anon_sym_RPAREN, - STATE(1289), 1, - aux_sym__collection_elements_repeat1, - [55495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 1, - anon_sym_COMMA, - ACTIONS(2854), 1, - anon_sym_RBRACE, - STATE(1235), 1, - aux_sym_dictionary_repeat1, - [55508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1861), 1, anon_sym_COMMA, - ACTIONS(2856), 1, - anon_sym_RPAREN, - STATE(1115), 1, - aux_sym__collection_elements_repeat1, - [55521] = 3, - ACTIONS(3), 1, + [55727] = 3, + ACTIONS(1875), 1, sym_comment, - ACTIONS(987), 1, - anon_sym_except, - ACTIONS(985), 2, - anon_sym_except_STAR, - anon_sym_finally, - [55532] = 4, + ACTIONS(2245), 1, + anon_sym_RBRACE, + ACTIONS(2247), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 1, + ACTIONS(1814), 1, anon_sym_COMMA, - ACTIONS(2858), 1, + ACTIONS(2838), 1, anon_sym_in, - STATE(884), 1, + STATE(885), 1, aux_sym__patterns_repeat1, - [55545] = 4, + [55751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 1, - anon_sym_COMMA, - ACTIONS(2860), 1, + ACTIONS(2840), 1, anon_sym_in, - STATE(884), 1, - aux_sym__patterns_repeat1, - [55558] = 3, - ACTIONS(1942), 1, + ACTIONS(2842), 2, + sym__newline, + anon_sym_SEMI, + [55762] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 1, - anon_sym_RBRACE, - ACTIONS(2279), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55569] = 2, + ACTIONS(2384), 1, + anon_sym_LBRACK, + ACTIONS(2844), 1, + anon_sym_EQ, + STATE(1497), 1, + sym_type_parameters, + [55775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2755), 1, anon_sym_COLON, - [55578] = 4, + ACTIONS(2846), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym__parameters_repeat1, + [55788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(588), 1, - sym__newline, - ACTIONS(2862), 1, - sym__semicolon, - STATE(1200), 1, - aux_sym__simple_statements_repeat1, - [55591] = 4, + ACTIONS(2380), 1, + anon_sym_LPAREN, + ACTIONS(2849), 1, + anon_sym_COLON, + STATE(1477), 1, + sym_argument_list, + [55801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(995), 1, + ACTIONS(2581), 3, anon_sym_RPAREN, - ACTIONS(2864), 1, anon_sym_COMMA, - STATE(1178), 1, - aux_sym_with_clause_repeat1, - [55604] = 4, + anon_sym_COLON, + [55810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 1, + ACTIONS(2851), 1, + anon_sym_RPAREN, + ACTIONS(2853), 1, anon_sym_COMMA, - ACTIONS(2213), 1, - anon_sym_RBRACE, - STATE(1302), 1, - aux_sym_dictionary_repeat1, - [55617] = 4, + STATE(1301), 1, + aux_sym_argument_list_repeat1, + [55823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2235), 1, - sym_identifier, - STATE(1183), 1, - sym_dotted_name, - STATE(1198), 1, - sym_aliased_import, - [55630] = 4, + ACTIONS(2855), 1, + anon_sym_RPAREN, + ACTIONS(2857), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym_argument_list_repeat1, + [55836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1905), 1, + ACTIONS(2376), 1, anon_sym_RPAREN, - STATE(1292), 1, + ACTIONS(2859), 1, + anon_sym_COMMA, + STATE(1116), 1, aux_sym__collection_elements_repeat1, - [55643] = 4, + [55849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1721), 1, + ACTIONS(2861), 1, anon_sym_RPAREN, - ACTIONS(2582), 1, - sym_identifier, - STATE(1341), 1, - sym_match_keyword_pattern, - [55656] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_COLON, - ACTIONS(2866), 1, - anon_sym_RBRACE, - STATE(1515), 1, - sym_format_specifier, - [55669] = 4, + ACTIONS(2863), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym_argument_list_repeat1, + [55862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_RPAREN, - ACTIONS(2870), 1, + ACTIONS(2865), 1, anon_sym_COMMA, - STATE(1316), 1, - aux_sym_match_class_pattern_repeat2, - [55682] = 4, + ACTIONS(2867), 1, + anon_sym_RBRACK, + STATE(1296), 1, + aux_sym_subscript_repeat1, + [55875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, - sym_identifier, - STATE(1245), 1, - sym_dotted_name, - STATE(1397), 1, - sym_aliased_import, - [55695] = 2, + ACTIONS(1001), 1, + anon_sym_except, + ACTIONS(999), 2, + anon_sym_except_STAR, + anon_sym_finally, + [55886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 3, - sym__newline, - anon_sym_in, - sym__semicolon, - [55704] = 4, - ACTIONS(3), 1, + ACTIONS(2869), 1, + anon_sym_COMMA, + ACTIONS(2871), 1, + anon_sym_RBRACK, + STATE(1296), 1, + aux_sym_subscript_repeat1, + [55899] = 3, + ACTIONS(1875), 1, sym_comment, ACTIONS(2873), 1, - sym__semicolon, - ACTIONS(2875), 1, - sym__newline, - STATE(1309), 1, - aux_sym__simple_statements_repeat1, - [55717] = 4, + anon_sym_RBRACE, + ACTIONS(2875), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [55910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_COMMA, - ACTIONS(2877), 1, + ACTIONS(2346), 1, anon_sym_COLON, - STATE(1266), 1, - aux_sym_with_clause_repeat1, - [55730] = 4, + ACTIONS(2877), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_format_specifier, + [55923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 1, - anon_sym_RPAREN, - ACTIONS(2502), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - STATE(1206), 1, - aux_sym__import_list_repeat1, - [55743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2879), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [55752] = 4, + ACTIONS(2879), 1, + anon_sym_RPAREN, + STATE(1258), 1, + aux_sym__collection_elements_repeat1, + [55936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 1, - anon_sym_RBRACK, - ACTIONS(2881), 1, + ACTIONS(1900), 1, anon_sym_COMMA, - STATE(1077), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55765] = 3, + ACTIONS(2881), 1, + anon_sym_RPAREN, + STATE(1120), 1, + aux_sym__collection_elements_repeat1, + [55949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, - anon_sym_except, - ACTIONS(991), 2, - anon_sym_except_STAR, - anon_sym_finally, - [55776] = 4, + ACTIONS(2157), 1, + sym_identifier, + STATE(1180), 1, + sym_dotted_name, + STATE(1240), 1, + sym_aliased_import, + [55962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, - anon_sym_RPAREN, ACTIONS(2883), 1, - anon_sym_COMMA, - STATE(1316), 1, - aux_sym_match_class_pattern_repeat2, - [55789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2584), 1, anon_sym_RPAREN, - ACTIONS(2883), 1, + ACTIONS(2885), 1, anon_sym_COMMA, - STATE(1331), 1, + STATE(1272), 1, aux_sym_match_class_pattern_repeat2, - [55802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2219), 1, - anon_sym_COMMA, - ACTIONS(2221), 1, - anon_sym_RBRACE, - STATE(1242), 1, - aux_sym_dictionary_repeat1, - [55815] = 4, + [55975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, + ACTIONS(2883), 1, anon_sym_RPAREN, ACTIONS(2887), 1, anon_sym_COMMA, - STATE(1230), 1, - aux_sym_argument_list_repeat1, - [55828] = 4, + STATE(1269), 1, + aux_sym_match_class_pattern_repeat1, + [55988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, - sym_identifier, + ACTIONS(1814), 1, + anon_sym_COMMA, ACTIONS(2889), 1, - anon_sym_RPAREN, - STATE(1341), 1, - sym_match_keyword_pattern, - [55841] = 4, + anon_sym_in, + STATE(885), 1, + aux_sym__patterns_repeat1, + [56001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, + ACTIONS(2622), 1, anon_sym_RPAREN, ACTIONS(2891), 1, anon_sym_COMMA, - STATE(1216), 1, - aux_sym_match_class_pattern_repeat2, - [55854] = 4, + STATE(1293), 1, + aux_sym__import_list_repeat1, + [56014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(2622), 1, anon_sym_RPAREN, ACTIONS(2893), 1, anon_sym_COMMA, - STATE(1316), 1, - aux_sym_match_class_pattern_repeat2, - [55867] = 3, - ACTIONS(1942), 1, + STATE(1293), 1, + aux_sym__import_list_repeat1, + [56027] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(1838), 1, anon_sym_RBRACE, - ACTIONS(2273), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55878] = 2, + ACTIONS(2895), 1, + anon_sym_COMMA, + STATE(1273), 1, + aux_sym_match_mapping_pattern_repeat1, + [56040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [55887] = 4, + ACTIONS(980), 1, + anon_sym_except, + ACTIONS(978), 2, + anon_sym_except_STAR, + anon_sym_finally, + [56051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 1, - anon_sym_COLON, - ACTIONS(2895), 1, - anon_sym_COMMA, - STATE(1204), 1, - aux_sym__parameters_repeat1, - [55900] = 3, + ACTIONS(1013), 1, + anon_sym_except, + ACTIONS(1011), 2, + anon_sym_except_STAR, + anon_sym_finally, + [56062] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2163), 1, + sym_identifier, ACTIONS(2897), 1, - anon_sym_in, - ACTIONS(2899), 2, - sym__newline, - sym__semicolon, - [55911] = 4, + anon_sym_import, + STATE(1465), 1, + sym_dotted_name, + [56075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, - anon_sym_LBRACK, + ACTIONS(1005), 1, + anon_sym_except, + ACTIONS(1007), 2, + anon_sym_except_STAR, + anon_sym_finally, + [56086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1894), 1, + anon_sym_DOT, + ACTIONS(1898), 1, + anon_sym_COLON, + STATE(907), 1, + aux_sym_match_value_pattern_repeat1, + [56099] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 1, + sym_identifier, ACTIONS(2901), 1, - anon_sym_EQ, - STATE(1492), 1, - sym_type_parameters, - [55924] = 4, + sym_match_wildcard_pattern, + STATE(1097), 1, + sym_match_capture_pattern, + [56112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 1, - anon_sym_RPAREN, + ACTIONS(1713), 1, + anon_sym_RBRACK, ACTIONS(2903), 1, anon_sym_COMMA, - STATE(1077), 1, + STATE(1076), 1, aux_sym_open_sequence_match_pattern_repeat1, - [55937] = 4, + [56125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, - sym_identifier, + ACTIONS(2807), 1, + anon_sym_if, ACTIONS(2905), 1, - anon_sym_RPAREN, - STATE(1341), 1, - sym_match_keyword_pattern, - [55950] = 3, + anon_sym_COLON, + STATE(1420), 1, + sym_guard, + [56138] = 3, + ACTIONS(1875), 1, + sym_comment, + ACTIONS(2265), 1, + anon_sym_RBRACE, + ACTIONS(2267), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_EQ, - ACTIONS(2546), 2, + ACTIONS(2907), 1, anon_sym_COMMA, + ACTIONS(2909), 2, + anon_sym_if, anon_sym_COLON, - [55961] = 2, + [56160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 3, + ACTIONS(2464), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [55970] = 2, + [56169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 2, + ACTIONS(1713), 1, anon_sym_RPAREN, + ACTIONS(2911), 1, anon_sym_COMMA, - [55978] = 2, - ACTIONS(3), 1, + STATE(1076), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56182] = 3, + ACTIONS(1875), 1, sym_comment, - ACTIONS(2909), 2, - sym__newline, - sym__semicolon, - [55986] = 2, + ACTIONS(2303), 1, + anon_sym_RBRACE, + ACTIONS(2305), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [56193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 2, + ACTIONS(2468), 1, + anon_sym_EQ, + ACTIONS(2464), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [55994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, anon_sym_COLON, - ACTIONS(2915), 1, - anon_sym_DASH_GT, - [56004] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 2, - sym__newline, - sym__semicolon, - [56012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 2, - sym__newline, - sym__semicolon, - [56020] = 2, + [56204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 2, + ACTIONS(2913), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [56028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1926), 2, - sym__newline, - sym__semicolon, - [56036] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 2, - sym__newline, - sym__semicolon, - [56044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 2, - sym__newline, - sym__semicolon, - [56052] = 2, + [56213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 2, - sym__newline, - sym__semicolon, - [56060] = 2, + ACTIONS(2915), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [56222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 2, + ACTIONS(2825), 1, anon_sym_COMMA, + ACTIONS(2917), 1, anon_sym_RBRACK, - [56068] = 3, + STATE(1283), 1, + aux_sym_type_parameters_repeat1, + [56235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, - sym_identifier, - STATE(1341), 1, - sym_match_keyword_pattern, - [56078] = 3, + ACTIONS(2919), 1, + anon_sym_COLON, + ACTIONS(2921), 1, + anon_sym_DASH_GT, + [56245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 1, - anon_sym_LPAREN, - STATE(1372), 1, - sym_parameters, - [56088] = 2, + ACTIONS(2923), 1, + sym_integer, + ACTIONS(2925), 1, + sym_float, + [56255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56096] = 3, + ACTIONS(1951), 2, + sym__newline, + anon_sym_SEMI, + [56263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 1, - anon_sym_LPAREN, - STATE(1375), 1, - sym_parameters, - [56106] = 3, + ACTIONS(2464), 2, + anon_sym_COMMA, + anon_sym_COLON, + [56271] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(2927), 1, + anon_sym_COLON, ACTIONS(2929), 1, - sym_identifier, - STATE(1367), 1, - sym_match_capture_pattern, - [56116] = 3, + anon_sym_DASH_GT, + [56281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 1, - anon_sym_LPAREN, - STATE(1344), 1, - sym_parameters, - [56126] = 3, + ACTIONS(2931), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [56289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1842), 1, - anon_sym_RBRACE, - ACTIONS(2931), 1, + ACTIONS(2933), 2, anon_sym_COMMA, - [56136] = 3, + anon_sym_RBRACE, + [56297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 1, + ACTIONS(2935), 2, anon_sym_COMMA, - STATE(1112), 1, - aux_sym_expression_list_repeat1, - [56146] = 2, + anon_sym_RBRACE, + [56305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 2, - sym__newline, - sym__semicolon, - [56154] = 2, + ACTIONS(2937), 1, + sym_integer, + ACTIONS(2939), 1, + sym_float, + [56315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 2, + ACTIONS(2941), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [56162] = 3, + anon_sym_RBRACK, + [56323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(2943), 1, anon_sym_COLON, - ACTIONS(2935), 1, + ACTIONS(2945), 1, anon_sym_DASH_GT, - [56172] = 2, + [56333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 2, + ACTIONS(2947), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56180] = 3, + [56341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - anon_sym_DOT, - STATE(1262), 1, - aux_sym_match_value_pattern_repeat1, - [56190] = 3, + ACTIONS(2949), 2, + sym__newline, + anon_sym_SEMI, + [56349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1928), 1, + ACTIONS(2951), 1, anon_sym_COMMA, - STATE(985), 1, - aux_sym_expression_list_repeat1, - [56200] = 2, + STATE(1204), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 2, + ACTIONS(2671), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [56208] = 3, + [56367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, - anon_sym_RBRACE, - ACTIONS(2941), 1, - anon_sym_COMMA, - [56218] = 2, + ACTIONS(2953), 1, + anon_sym_COLON, + ACTIONS(2955), 1, + anon_sym_DASH_GT, + [56377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 2, + ACTIONS(2957), 2, sym__newline, - sym__semicolon, - [56226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2430), 1, - anon_sym_LPAREN, - STATE(1376), 1, - sym_parameters, - [56236] = 3, + anon_sym_SEMI, + [56385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 1, - anon_sym_COLON, - ACTIONS(2947), 1, - anon_sym_DASH_GT, - [56246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_COLON, - ACTIONS(2951), 1, - anon_sym_DASH_GT, - [56256] = 2, + ACTIONS(2392), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 2, + ACTIONS(2554), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56264] = 2, + [56401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [56272] = 3, + ACTIONS(1832), 1, + anon_sym_RBRACE, + ACTIONS(2959), 1, + anon_sym_COMMA, + [56411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 1, - anon_sym_COLON, - ACTIONS(2957), 1, - anon_sym_DASH_GT, - [56282] = 3, + ACTIONS(2961), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_COLON, - ACTIONS(2961), 1, - anon_sym_DASH_GT, - [56292] = 3, + ACTIONS(2751), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56427] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2963), 1, anon_sym_COLON, ACTIONS(2965), 1, anon_sym_DASH_GT, - [56302] = 3, + [56437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56445] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2967), 1, anon_sym_COLON, ACTIONS(2969), 1, anon_sym_DASH_GT, - [56312] = 2, + [56455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56320] = 2, + ACTIONS(2971), 1, + anon_sym_COLON, + ACTIONS(2973), 1, + anon_sym_DASH_GT, + [56465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 2, + ACTIONS(2975), 2, anon_sym_COLON, anon_sym_DASH_GT, - [56328] = 3, + [56473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, - sym_integer, - ACTIONS(2977), 1, - sym_float, - [56338] = 2, + ACTIONS(1953), 1, + anon_sym_COMMA, + STATE(992), 1, + aux_sym_expression_list_repeat1, + [56483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 2, + ACTIONS(2780), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56346] = 2, + [56491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 2, + sym__newline, + anon_sym_SEMI, + [56499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2979), 2, sym__newline, - sym__semicolon, - [56354] = 2, + anon_sym_SEMI, + [56507] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2981), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [56362] = 2, + [56515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 2, - sym__newline, - sym__semicolon, - [56370] = 2, + ACTIONS(2983), 1, + anon_sym_COMMA, + ACTIONS(2985), 1, + anon_sym_RBRACE, + [56525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 2, - sym__newline, - sym__semicolon, - [56378] = 3, + ACTIONS(2987), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - sym_integer, - ACTIONS(2989), 1, - sym_float, - [56388] = 2, + ACTIONS(2989), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2991), 2, anon_sym_COMMA, anon_sym_RBRACK, - [56396] = 2, + [56549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 2, + ACTIONS(2354), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56557] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2203), 2, sym__newline, - sym__semicolon, - [56404] = 3, + anon_sym_SEMI, + [56565] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2993), 1, - sym_integer, + anon_sym_COLON, ACTIONS(2995), 1, - sym_float, - [56414] = 2, + anon_sym_DASH_GT, + [56575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 2, - sym__newline, - sym__semicolon, - [56422] = 3, + ACTIONS(2907), 1, + anon_sym_COMMA, + ACTIONS(2997), 1, + anon_sym_RPAREN, + [56585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2999), 2, anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_RPAREN, - [56432] = 2, + anon_sym_RBRACK, + [56593] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3001), 2, - sym__newline, - sym__semicolon, - [56440] = 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 2, - sym__newline, - sym__semicolon, - [56448] = 2, + ACTIONS(3003), 1, + anon_sym_COMMA, + STATE(1340), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [56611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 2, - sym__newline, - sym__semicolon, - [56456] = 3, + ACTIONS(2539), 1, + anon_sym_LPAREN, + STATE(1350), 1, + sym_parameters, + [56621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, - anon_sym_COMMA, - STATE(1337), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56466] = 2, + ACTIONS(2169), 2, + sym__newline, + anon_sym_SEMI, + [56629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2563), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56474] = 2, + ACTIONS(2669), 1, + sym_identifier, + STATE(1360), 1, + sym_match_keyword_pattern, + [56639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56482] = 2, + ACTIONS(2539), 1, + anon_sym_LPAREN, + STATE(1370), 1, + sym_parameters, + [56649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56490] = 2, + ACTIONS(3005), 1, + sym_integer, + ACTIONS(3007), 1, + sym_float, + [56659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3009), 2, sym__newline, - sym__semicolon, - [56498] = 3, + anon_sym_SEMI, + [56667] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3011), 1, + sym_identifier, + STATE(1352), 1, + sym_match_capture_pattern, + [56677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 2, + sym__newline, + anon_sym_SEMI, + [56685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, anon_sym_COMMA, - ACTIONS(3013), 1, - anon_sym_RBRACE, - [56508] = 2, + STATE(1096), 1, + aux_sym_expression_list_repeat1, + [56695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 2, + sym__newline, + anon_sym_SEMI, + [56703] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3015), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56516] = 2, + sym__newline, + anon_sym_SEMI, + [56711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56524] = 3, + ACTIONS(3017), 2, + sym__newline, + anon_sym_SEMI, + [56719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, - anon_sym_COMMA, - STATE(1190), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56534] = 2, + ACTIONS(1894), 1, + anon_sym_DOT, + STATE(1333), 1, + aux_sym_match_value_pattern_repeat1, + [56729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_RBRACE, - [56541] = 2, + ACTIONS(2539), 1, + anon_sym_LPAREN, + STATE(1368), 1, + sym_parameters, + [56739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(2539), 1, anon_sym_LPAREN, - [56548] = 2, + STATE(1371), 1, + sym_parameters, + [56749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, - anon_sym_RBRACK, - [56555] = 2, + ACTIONS(2635), 2, + sym__newline, + anon_sym_SEMI, + [56757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - anon_sym_import, - [56562] = 2, + ACTIONS(2690), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, - anon_sym_RBRACE, - [56569] = 2, + ACTIONS(3019), 2, + sym__newline, + anon_sym_SEMI, + [56773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, + ACTIONS(2659), 1, anon_sym_RBRACE, - [56576] = 2, + ACTIONS(3021), 1, + anon_sym_COMMA, + [56783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 2, + sym__newline, + anon_sym_SEMI, + [56791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3025), 2, + sym__newline, + anon_sym_SEMI, + [56799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3027), 2, + sym__newline, + anon_sym_SEMI, + [56807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3029), 2, + sym__newline, + anon_sym_SEMI, + [56815] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3031), 1, - anon_sym_RBRACE, - [56583] = 2, + anon_sym_RBRACK, + [56822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, - anon_sym_EQ, - [56590] = 2, + ACTIONS(2736), 1, + anon_sym_in, + [56829] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3033), 1, anon_sym_COLON, - [56597] = 2, + [56836] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3035), 1, anon_sym_RPAREN, - [56604] = 2, + [56843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3037), 1, - anon_sym_RPAREN, - [56611] = 2, + sym_identifier, + [56850] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3039), 1, - anon_sym_for, - [56618] = 2, + anon_sym_RBRACE, + [56857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3041), 1, - anon_sym_RPAREN, - [56625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_RPAREN, - [56632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_in, - [56639] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2809), 1, anon_sym_RBRACE, - [56646] = 2, + [56864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, - anon_sym_in, - [56653] = 2, + ACTIONS(3043), 1, + anon_sym_RBRACK, + [56871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3045), 1, anon_sym_COLON, - [56660] = 2, + [56878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3047), 1, - anon_sym_COLON, - [56667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, - anon_sym_RBRACE, - [56674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 1, - anon_sym_RBRACE, - [56681] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1832), 1, - anon_sym_RBRACE, - [56688] = 2, + anon_sym_RPAREN, + [56885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3049), 1, - anon_sym_COLON, - [56695] = 2, + anon_sym_in, + [56892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3051), 1, anon_sym_COLON, - [56702] = 2, + [56899] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3053), 1, - anon_sym_RBRACK, - [56709] = 2, + sym_identifier, + [56906] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3055), 1, - anon_sym_in, - [56716] = 2, + anon_sym_COLON, + [56913] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3057), 1, - anon_sym_RPAREN, - [56723] = 2, + anon_sym_RBRACE, + [56920] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3059), 1, - anon_sym_RPAREN, - [56730] = 2, + anon_sym_RBRACE, + [56927] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3061), 1, - anon_sym_RBRACE, - [56737] = 2, + anon_sym_RBRACK, + [56934] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3063), 1, - anon_sym_RPAREN, - [56744] = 2, + anon_sym_RBRACK, + [56941] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3065), 1, anon_sym_COLON, - [56751] = 2, + [56948] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3067), 1, - anon_sym_in, - [56758] = 2, + anon_sym_COLON, + [56955] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3069), 1, - anon_sym_RBRACK, - [56765] = 2, + anon_sym_RPAREN, + [56962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3071), 1, - anon_sym_RBRACE, - [56772] = 2, + anon_sym_in, + [56969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3073), 1, - anon_sym_RBRACE, - [56779] = 2, + anon_sym_COLON, + [56976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3075), 1, - sym_identifier, - [56786] = 2, + anon_sym_COLON, + [56983] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3077), 1, - anon_sym_import, - [56793] = 2, + anon_sym_COLON, + [56990] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3079), 1, - anon_sym_RPAREN, - [56800] = 2, + anon_sym_RBRACE, + [56997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3081), 1, - sym_identifier, - [56807] = 2, + anon_sym_RBRACE, + [57004] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3083), 1, - anon_sym_import, - [56814] = 2, + anon_sym_RBRACE, + [57011] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3085), 1, - sym_identifier, - [56821] = 2, + anon_sym_RPAREN, + [57018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3087), 1, - anon_sym_in, - [56828] = 2, + anon_sym_COLON, + [57025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3089), 1, - anon_sym_RPAREN, - [56835] = 2, + anon_sym_COLON, + [57032] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3091), 1, - sym_identifier, - [56842] = 2, + anon_sym_COLON, + [57039] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3093), 1, - sym_identifier, - [56849] = 2, + anon_sym_COLON, + [57046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3095), 1, - sym_identifier, - [56856] = 2, + anon_sym_RPAREN, + [57053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3097), 1, - anon_sym_COLON, - [56863] = 2, + anon_sym_RPAREN, + [57060] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3099), 1, - anon_sym_COLON, - [56870] = 2, + anon_sym_LPAREN, + [57067] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3101), 1, - anon_sym_COLON, - [56877] = 2, + sym_identifier, + [57074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(3103), 1, anon_sym_in, - [56884] = 2, + [57081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, - anon_sym_RPAREN, - [56891] = 2, + ACTIONS(1838), 1, + anon_sym_RBRACE, + [57088] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3105), 1, - sym_identifier, - [56898] = 2, + anon_sym_import, + [57095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(914), 1, + anon_sym_def, + [57102] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3107), 1, - sym_identifier, - [56905] = 2, + anon_sym_import, + [57109] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3109), 1, anon_sym_COLON, - [56912] = 2, + [57116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(2253), 1, anon_sym_COLON, - [56919] = 2, + [57123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3111), 1, + sym_identifier, + [57130] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3113), 1, - anon_sym_RBRACE, - [56926] = 2, + sym_identifier, + [57137] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3115), 1, - anon_sym_RBRACE, - [56933] = 2, + anon_sym_COLON, + [57144] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3117), 1, - anon_sym_RBRACE, - [56940] = 2, + anon_sym_COLON, + [57151] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3119), 1, anon_sym_COLON, - [56947] = 2, + [57158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 1, - anon_sym_RPAREN, - [56954] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 1, - anon_sym_COLON, - [56961] = 2, + ACTIONS(2889), 1, + anon_sym_in, + [57165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, - anon_sym_in, - [56968] = 2, + ACTIONS(3121), 1, + sym_identifier, + [57172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3123), 1, - anon_sym_RBRACK, - [56975] = 2, + anon_sym_RPAREN, + [57179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3125), 1, - anon_sym_COLON, - [56982] = 2, + anon_sym_RPAREN, + [57186] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3127), 1, - anon_sym_RBRACE, - [56989] = 2, + anon_sym_import, + [57193] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3129), 1, anon_sym_COLON, - [56996] = 2, + [57200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3131), 1, - anon_sym_COLON, - [57003] = 2, + ACTIONS(2877), 1, + anon_sym_RBRACE, + [57207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2281), 1, - anon_sym_COLON, - [57010] = 2, + ACTIONS(3131), 1, + anon_sym_for, + [57214] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3133), 1, - anon_sym_RBRACK, - [57017] = 2, + anon_sym_RPAREN, + [57221] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3135), 1, anon_sym_COLON, - [57024] = 2, + [57228] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3137), 1, - anon_sym_RPAREN, - [57031] = 2, + anon_sym_RBRACE, + [57235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, + anon_sym_COLON, + [57242] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3139), 1, anon_sym_COLON, - [57038] = 2, + [57249] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3141), 1, - sym_identifier, - [57045] = 2, + anon_sym_COLON, + [57256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3143), 1, anon_sym_COLON, - [57052] = 2, + [57263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, - anon_sym_RBRACE, - [57059] = 2, + ACTIONS(2838), 1, + anon_sym_in, + [57270] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3145), 1, anon_sym_COLON, - [57066] = 2, + [57277] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3147), 1, anon_sym_COLON, - [57073] = 2, + [57284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2301), 1, + anon_sym_COLON, + [57291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3149), 1, anon_sym_COLON, - [57080] = 2, + [57298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3151), 1, - anon_sym_COLON, - [57087] = 2, + sym_identifier, + [57305] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3153), 1, - anon_sym_RPAREN, - [57094] = 2, + sym_identifier, + [57312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3155), 1, - anon_sym_COLON, - [57101] = 2, + anon_sym_RPAREN, + [57319] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3157), 1, - anon_sym_COLON, - [57108] = 2, + anon_sym_RBRACK, + [57326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3159), 1, anon_sym_COLON, - [57115] = 2, + [57333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(876), 1, - anon_sym_def, - [57122] = 2, + ACTIONS(2805), 1, + anon_sym_RBRACE, + [57340] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3161), 1, anon_sym_COLON, - [57129] = 2, + [57347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3163), 1, - sym_identifier, - [57136] = 2, + anon_sym_COLON, + [57354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3165), 1, anon_sym_COLON, - [57143] = 2, + [57361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3167), 1, - anon_sym_EQ, - [57150] = 2, + anon_sym_COLON, + [57368] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3169), 1, - anon_sym_COLON, - [57157] = 2, + anon_sym_RBRACE, + [57375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2985), 1, + anon_sym_RBRACE, + [57382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3171), 1, - anon_sym_in, - [57164] = 2, + anon_sym_RBRACE, + [57389] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3173), 1, - anon_sym_COLON, - [57171] = 2, + sym_identifier, + [57396] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3175), 1, - anon_sym_RBRACE, - [57178] = 2, + anon_sym_COLON, + [57403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3177), 1, - anon_sym_RBRACK, - [57185] = 2, + anon_sym_COLON, + [57410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3179), 1, - sym_identifier, - [57192] = 2, + anon_sym_EQ, + [57417] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3181), 1, anon_sym_COLON, - [57199] = 2, + [57424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_RBRACE, + [57431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2299), 1, + anon_sym_COLON, + [57438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + anon_sym_in, + [57445] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3183), 1, - sym_identifier, - [57206] = 2, + anon_sym_COLON, + [57452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3185), 1, - anon_sym_COLON, - [57213] = 2, + anon_sym_RPAREN, + [57459] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3187), 1, - ts_builtin_sym_end, - [57220] = 2, + anon_sym_RBRACE, + [57466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3189), 1, - anon_sym_RBRACK, - [57227] = 2, + sym_identifier, + [57473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3191), 1, anon_sym_RBRACE, - [57234] = 2, + [57480] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3193), 1, - anon_sym_COLON, - [57241] = 2, + anon_sym_RBRACK, + [57487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3195), 1, - anon_sym_COLON, - [57248] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2246), 1, - anon_sym_COLON, - [57255] = 2, + anon_sym_RPAREN, + [57494] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3197), 1, - sym_identifier, - [57262] = 2, + anon_sym_RBRACE, + [57501] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3199), 1, sym_identifier, - [57269] = 2, + [57508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3201), 1, - sym_identifier, - [57276] = 2, + ts_builtin_sym_end, + [57515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3203), 1, sym_identifier, - [57283] = 2, + [57522] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 1, + anon_sym_RBRACE, + [57529] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3205), 1, - anon_sym_COLON, - [57290] = 2, + anon_sym_in, + [57536] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3207), 1, - anon_sym_RBRACE, - [57297] = 2, + sym_identifier, + [57543] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3209), 1, sym_identifier, - [57304] = 2, + [57550] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3211), 1, - anon_sym_RBRACE, - [57311] = 2, + sym_identifier, + [57557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3213), 1, sym_identifier, - [57318] = 2, + [57564] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3215), 1, + anon_sym_COLON, + [57571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3217), 1, sym_identifier, - [57325] = 2, + [57578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(3219), 1, anon_sym_COLON, - [57332] = 2, + [57585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3221), 1, + anon_sym_RBRACE, + [57592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3223), 1, + sym_identifier, + [57599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3225), 1, + sym_identifier, + [57606] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3227), 1, + anon_sym_RBRACE, + [57613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2661), 1, anon_sym_in, - [57339] = 2, + [57620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(904), 1, anon_sym_def, - [57346] = 2, + [57627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3217), 1, - anon_sym_COLON, - [57353] = 2, + ACTIONS(3229), 1, + anon_sym_RBRACK, + [57634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(2655), 1, anon_sym_in, - [57360] = 2, + [57641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, - anon_sym_RBRACE, - [57367] = 2, + ACTIONS(3231), 1, + anon_sym_RPAREN, + [57648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, - anon_sym_COLON, + ACTIONS(2114), 1, + anon_sym_EQ, }; static const uint32_t ts_small_parse_table_map[] = { @@ -73523,31 +71278,31 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(157)] = 236, [SMALL_STATE(158)] = 354, [SMALL_STATE(159)] = 464, - [SMALL_STATE(160)] = 579, - [SMALL_STATE(161)] = 694, - [SMALL_STATE(162)] = 809, - [SMALL_STATE(163)] = 926, - [SMALL_STATE(164)] = 1045, + [SMALL_STATE(160)] = 581, + [SMALL_STATE(161)] = 698, + [SMALL_STATE(162)] = 813, + [SMALL_STATE(163)] = 928, + [SMALL_STATE(164)] = 1047, [SMALL_STATE(165)] = 1162, - [SMALL_STATE(166)] = 1262, - [SMALL_STATE(167)] = 1376, - [SMALL_STATE(168)] = 1480, - [SMALL_STATE(169)] = 1584, - [SMALL_STATE(170)] = 1698, - [SMALL_STATE(171)] = 1812, - [SMALL_STATE(172)] = 1916, + [SMALL_STATE(166)] = 1276, + [SMALL_STATE(167)] = 1390, + [SMALL_STATE(168)] = 1494, + [SMALL_STATE(169)] = 1594, + [SMALL_STATE(170)] = 1694, + [SMALL_STATE(171)] = 1798, + [SMALL_STATE(172)] = 1902, [SMALL_STATE(173)] = 2016, - [SMALL_STATE(174)] = 2123, - [SMALL_STATE(175)] = 2224, - [SMALL_STATE(176)] = 2325, - [SMALL_STATE(177)] = 2430, - [SMALL_STATE(178)] = 2535, - [SMALL_STATE(179)] = 2638, - [SMALL_STATE(180)] = 2743, - [SMALL_STATE(181)] = 2848, - [SMALL_STATE(182)] = 2953, - [SMALL_STATE(183)] = 3054, - [SMALL_STATE(184)] = 3157, + [SMALL_STATE(174)] = 2121, + [SMALL_STATE(175)] = 2226, + [SMALL_STATE(176)] = 2327, + [SMALL_STATE(177)] = 2428, + [SMALL_STATE(178)] = 2533, + [SMALL_STATE(179)] = 2634, + [SMALL_STATE(180)] = 2739, + [SMALL_STATE(181)] = 2844, + [SMALL_STATE(182)] = 2947, + [SMALL_STATE(183)] = 3052, + [SMALL_STATE(184)] = 3159, [SMALL_STATE(185)] = 3262, [SMALL_STATE(186)] = 3360, [SMALL_STATE(187)] = 3462, @@ -73556,9 +71311,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(190)] = 3770, [SMALL_STATE(191)] = 3872, [SMALL_STATE(192)] = 3974, - [SMALL_STATE(193)] = 4072, - [SMALL_STATE(194)] = 4176, - [SMALL_STATE(195)] = 4278, + [SMALL_STATE(193)] = 4076, + [SMALL_STATE(194)] = 4178, + [SMALL_STATE(195)] = 4282, [SMALL_STATE(196)] = 4380, [SMALL_STATE(197)] = 4482, [SMALL_STATE(198)] = 4584, @@ -73566,2883 +71321,2948 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(200)] = 4788, [SMALL_STATE(201)] = 4894, [SMALL_STATE(202)] = 4996, - [SMALL_STATE(203)] = 5094, - [SMALL_STATE(204)] = 5196, - [SMALL_STATE(205)] = 5300, - [SMALL_STATE(206)] = 5402, - [SMALL_STATE(207)] = 5504, - [SMALL_STATE(208)] = 5606, - [SMALL_STATE(209)] = 5708, - [SMALL_STATE(210)] = 5810, - [SMALL_STATE(211)] = 5912, - [SMALL_STATE(212)] = 6018, - [SMALL_STATE(213)] = 6122, - [SMALL_STATE(214)] = 6220, - [SMALL_STATE(215)] = 6322, - [SMALL_STATE(216)] = 6424, + [SMALL_STATE(203)] = 5098, + [SMALL_STATE(204)] = 5200, + [SMALL_STATE(205)] = 5302, + [SMALL_STATE(206)] = 5404, + [SMALL_STATE(207)] = 5506, + [SMALL_STATE(208)] = 5608, + [SMALL_STATE(209)] = 5710, + [SMALL_STATE(210)] = 5814, + [SMALL_STATE(211)] = 5916, + [SMALL_STATE(212)] = 6014, + [SMALL_STATE(213)] = 6116, + [SMALL_STATE(214)] = 6218, + [SMALL_STATE(215)] = 6324, + [SMALL_STATE(216)] = 6428, [SMALL_STATE(217)] = 6526, [SMALL_STATE(218)] = 6628, [SMALL_STATE(219)] = 6689, - [SMALL_STATE(220)] = 6750, - [SMALL_STATE(221)] = 6811, - [SMALL_STATE(222)] = 6872, - [SMALL_STATE(223)] = 6971, - [SMALL_STATE(224)] = 7032, - [SMALL_STATE(225)] = 7131, + [SMALL_STATE(220)] = 6788, + [SMALL_STATE(221)] = 6849, + [SMALL_STATE(222)] = 6948, + [SMALL_STATE(223)] = 7047, + [SMALL_STATE(224)] = 7108, + [SMALL_STATE(225)] = 7169, [SMALL_STATE(226)] = 7230, [SMALL_STATE(227)] = 7291, [SMALL_STATE(228)] = 7352, [SMALL_STATE(229)] = 7424, - [SMALL_STATE(230)] = 7496, - [SMALL_STATE(231)] = 7592, - [SMALL_STATE(232)] = 7690, - [SMALL_STATE(233)] = 7762, - [SMALL_STATE(234)] = 7860, - [SMALL_STATE(235)] = 7932, - [SMALL_STATE(236)] = 8030, - [SMALL_STATE(237)] = 8128, - [SMALL_STATE(238)] = 8200, - [SMALL_STATE(239)] = 8272, - [SMALL_STATE(240)] = 8370, + [SMALL_STATE(230)] = 7522, + [SMALL_STATE(231)] = 7594, + [SMALL_STATE(232)] = 7692, + [SMALL_STATE(233)] = 7764, + [SMALL_STATE(234)] = 7836, + [SMALL_STATE(235)] = 7908, + [SMALL_STATE(236)] = 7980, + [SMALL_STATE(237)] = 8052, + [SMALL_STATE(238)] = 8148, + [SMALL_STATE(239)] = 8246, + [SMALL_STATE(240)] = 8344, [SMALL_STATE(241)] = 8442, - [SMALL_STATE(242)] = 8514, - [SMALL_STATE(243)] = 8609, - [SMALL_STATE(244)] = 8704, - [SMALL_STATE(245)] = 8799, - [SMALL_STATE(246)] = 8894, - [SMALL_STATE(247)] = 8989, - [SMALL_STATE(248)] = 9062, - [SMALL_STATE(249)] = 9157, - [SMALL_STATE(250)] = 9252, - [SMALL_STATE(251)] = 9347, - [SMALL_STATE(252)] = 9442, - [SMALL_STATE(253)] = 9537, - [SMALL_STATE(254)] = 9632, - [SMALL_STATE(255)] = 9705, - [SMALL_STATE(256)] = 9799, - [SMALL_STATE(257)] = 9893, - [SMALL_STATE(258)] = 9987, - [SMALL_STATE(259)] = 10055, - [SMALL_STATE(260)] = 10147, - [SMALL_STATE(261)] = 10241, - [SMALL_STATE(262)] = 10335, - [SMALL_STATE(263)] = 10429, - [SMALL_STATE(264)] = 10497, - [SMALL_STATE(265)] = 10589, - [SMALL_STATE(266)] = 10657, - [SMALL_STATE(267)] = 10719, - [SMALL_STATE(268)] = 10781, - [SMALL_STATE(269)] = 10849, - [SMALL_STATE(270)] = 10943, - [SMALL_STATE(271)] = 11005, - [SMALL_STATE(272)] = 11067, - [SMALL_STATE(273)] = 11135, - [SMALL_STATE(274)] = 11229, - [SMALL_STATE(275)] = 11323, - [SMALL_STATE(276)] = 11415, - [SMALL_STATE(277)] = 11483, - [SMALL_STATE(278)] = 11551, - [SMALL_STATE(279)] = 11621, - [SMALL_STATE(280)] = 11689, - [SMALL_STATE(281)] = 11778, - [SMALL_STATE(282)] = 11835, - [SMALL_STATE(283)] = 11892, - [SMALL_STATE(284)] = 11983, - [SMALL_STATE(285)] = 12050, - [SMALL_STATE(286)] = 12113, - [SMALL_STATE(287)] = 12202, - [SMALL_STATE(288)] = 12259, - [SMALL_STATE(289)] = 12316, - [SMALL_STATE(290)] = 12405, - [SMALL_STATE(291)] = 12496, - [SMALL_STATE(292)] = 12553, - [SMALL_STATE(293)] = 12644, - [SMALL_STATE(294)] = 12733, - [SMALL_STATE(295)] = 12822, - [SMALL_STATE(296)] = 12911, - [SMALL_STATE(297)] = 13002, - [SMALL_STATE(298)] = 13091, - [SMALL_STATE(299)] = 13182, - [SMALL_STATE(300)] = 13273, - [SMALL_STATE(301)] = 13362, - [SMALL_STATE(302)] = 13453, - [SMALL_STATE(303)] = 13544, - [SMALL_STATE(304)] = 13633, - [SMALL_STATE(305)] = 13722, - [SMALL_STATE(306)] = 13779, - [SMALL_STATE(307)] = 13868, - [SMALL_STATE(308)] = 13931, - [SMALL_STATE(309)] = 13988, - [SMALL_STATE(310)] = 14077, - [SMALL_STATE(311)] = 14168, - [SMALL_STATE(312)] = 14225, - [SMALL_STATE(313)] = 14314, - [SMALL_STATE(314)] = 14371, - [SMALL_STATE(315)] = 14462, - [SMALL_STATE(316)] = 14519, - [SMALL_STATE(317)] = 14575, - [SMALL_STATE(318)] = 14631, - [SMALL_STATE(319)] = 14687, - [SMALL_STATE(320)] = 14743, - [SMALL_STATE(321)] = 14799, - [SMALL_STATE(322)] = 14887, - [SMALL_STATE(323)] = 14975, - [SMALL_STATE(324)] = 15063, - [SMALL_STATE(325)] = 15151, - [SMALL_STATE(326)] = 15207, - [SMALL_STATE(327)] = 15263, - [SMALL_STATE(328)] = 15319, - [SMALL_STATE(329)] = 15375, - [SMALL_STATE(330)] = 15431, - [SMALL_STATE(331)] = 15495, - [SMALL_STATE(332)] = 15551, - [SMALL_STATE(333)] = 15607, - [SMALL_STATE(334)] = 15663, - [SMALL_STATE(335)] = 15727, - [SMALL_STATE(336)] = 15815, - [SMALL_STATE(337)] = 15871, - [SMALL_STATE(338)] = 15927, - [SMALL_STATE(339)] = 15991, - [SMALL_STATE(340)] = 16055, - [SMALL_STATE(341)] = 16111, - [SMALL_STATE(342)] = 16199, - [SMALL_STATE(343)] = 16255, - [SMALL_STATE(344)] = 16311, - [SMALL_STATE(345)] = 16367, - [SMALL_STATE(346)] = 16427, - [SMALL_STATE(347)] = 16515, - [SMALL_STATE(348)] = 16575, - [SMALL_STATE(349)] = 16663, - [SMALL_STATE(350)] = 16723, - [SMALL_STATE(351)] = 16811, - [SMALL_STATE(352)] = 16899, - [SMALL_STATE(353)] = 16955, - [SMALL_STATE(354)] = 17011, - [SMALL_STATE(355)] = 17067, - [SMALL_STATE(356)] = 17123, - [SMALL_STATE(357)] = 17179, - [SMALL_STATE(358)] = 17235, - [SMALL_STATE(359)] = 17291, - [SMALL_STATE(360)] = 17347, - [SMALL_STATE(361)] = 17403, - [SMALL_STATE(362)] = 17491, - [SMALL_STATE(363)] = 17547, - [SMALL_STATE(364)] = 17603, - [SMALL_STATE(365)] = 17691, - [SMALL_STATE(366)] = 17747, - [SMALL_STATE(367)] = 17803, - [SMALL_STATE(368)] = 17859, - [SMALL_STATE(369)] = 17947, - [SMALL_STATE(370)] = 18003, - [SMALL_STATE(371)] = 18059, - [SMALL_STATE(372)] = 18115, - [SMALL_STATE(373)] = 18171, - [SMALL_STATE(374)] = 18227, - [SMALL_STATE(375)] = 18283, - [SMALL_STATE(376)] = 18339, - [SMALL_STATE(377)] = 18395, - [SMALL_STATE(378)] = 18451, - [SMALL_STATE(379)] = 18507, - [SMALL_STATE(380)] = 18563, - [SMALL_STATE(381)] = 18623, - [SMALL_STATE(382)] = 18679, - [SMALL_STATE(383)] = 18735, - [SMALL_STATE(384)] = 18823, - [SMALL_STATE(385)] = 18879, - [SMALL_STATE(386)] = 18964, - [SMALL_STATE(387)] = 19049, - [SMALL_STATE(388)] = 19108, - [SMALL_STATE(389)] = 19163, - [SMALL_STATE(390)] = 19248, - [SMALL_STATE(391)] = 19333, - [SMALL_STATE(392)] = 19418, - [SMALL_STATE(393)] = 19503, - [SMALL_STATE(394)] = 19590, - [SMALL_STATE(395)] = 19675, - [SMALL_STATE(396)] = 19760, - [SMALL_STATE(397)] = 19845, - [SMALL_STATE(398)] = 19930, - [SMALL_STATE(399)] = 20015, - [SMALL_STATE(400)] = 20100, - [SMALL_STATE(401)] = 20185, - [SMALL_STATE(402)] = 20244, - [SMALL_STATE(403)] = 20329, - [SMALL_STATE(404)] = 20384, - [SMALL_STATE(405)] = 20469, - [SMALL_STATE(406)] = 20554, - [SMALL_STATE(407)] = 20639, - [SMALL_STATE(408)] = 20694, - [SMALL_STATE(409)] = 20753, - [SMALL_STATE(410)] = 20838, - [SMALL_STATE(411)] = 20923, - [SMALL_STATE(412)] = 21008, - [SMALL_STATE(413)] = 21093, - [SMALL_STATE(414)] = 21152, - [SMALL_STATE(415)] = 21211, - [SMALL_STATE(416)] = 21296, - [SMALL_STATE(417)] = 21381, - [SMALL_STATE(418)] = 21466, - [SMALL_STATE(419)] = 21525, - [SMALL_STATE(420)] = 21610, - [SMALL_STATE(421)] = 21665, - [SMALL_STATE(422)] = 21720, - [SMALL_STATE(423)] = 21805, - [SMALL_STATE(424)] = 21890, - [SMALL_STATE(425)] = 21975, - [SMALL_STATE(426)] = 22060, - [SMALL_STATE(427)] = 22145, - [SMALL_STATE(428)] = 22204, - [SMALL_STATE(429)] = 22263, - [SMALL_STATE(430)] = 22348, - [SMALL_STATE(431)] = 22407, - [SMALL_STATE(432)] = 22468, - [SMALL_STATE(433)] = 22527, - [SMALL_STATE(434)] = 22582, - [SMALL_STATE(435)] = 22667, - [SMALL_STATE(436)] = 22752, - [SMALL_STATE(437)] = 22837, - [SMALL_STATE(438)] = 22922, - [SMALL_STATE(439)] = 23007, - [SMALL_STATE(440)] = 23092, - [SMALL_STATE(441)] = 23151, - [SMALL_STATE(442)] = 23212, - [SMALL_STATE(443)] = 23297, - [SMALL_STATE(444)] = 23382, - [SMALL_STATE(445)] = 23467, - [SMALL_STATE(446)] = 23552, - [SMALL_STATE(447)] = 23637, - [SMALL_STATE(448)] = 23722, - [SMALL_STATE(449)] = 23807, - [SMALL_STATE(450)] = 23868, - [SMALL_STATE(451)] = 23953, - [SMALL_STATE(452)] = 24038, - [SMALL_STATE(453)] = 24123, - [SMALL_STATE(454)] = 24208, - [SMALL_STATE(455)] = 24267, - [SMALL_STATE(456)] = 24352, - [SMALL_STATE(457)] = 24437, - [SMALL_STATE(458)] = 24522, - [SMALL_STATE(459)] = 24607, - [SMALL_STATE(460)] = 24692, - [SMALL_STATE(461)] = 24777, - [SMALL_STATE(462)] = 24862, - [SMALL_STATE(463)] = 24947, - [SMALL_STATE(464)] = 25032, - [SMALL_STATE(465)] = 25091, - [SMALL_STATE(466)] = 25176, - [SMALL_STATE(467)] = 25261, - [SMALL_STATE(468)] = 25320, - [SMALL_STATE(469)] = 25405, - [SMALL_STATE(470)] = 25490, - [SMALL_STATE(471)] = 25575, - [SMALL_STATE(472)] = 25660, - [SMALL_STATE(473)] = 25719, - [SMALL_STATE(474)] = 25804, - [SMALL_STATE(475)] = 25889, - [SMALL_STATE(476)] = 25950, - [SMALL_STATE(477)] = 26035, - [SMALL_STATE(478)] = 26120, - [SMALL_STATE(479)] = 26179, - [SMALL_STATE(480)] = 26264, - [SMALL_STATE(481)] = 26349, - [SMALL_STATE(482)] = 26434, - [SMALL_STATE(483)] = 26519, - [SMALL_STATE(484)] = 26604, - [SMALL_STATE(485)] = 26689, - [SMALL_STATE(486)] = 26743, - [SMALL_STATE(487)] = 26797, - [SMALL_STATE(488)] = 26851, - [SMALL_STATE(489)] = 26905, - [SMALL_STATE(490)] = 26959, - [SMALL_STATE(491)] = 27013, - [SMALL_STATE(492)] = 27067, - [SMALL_STATE(493)] = 27121, - [SMALL_STATE(494)] = 27175, - [SMALL_STATE(495)] = 27229, - [SMALL_STATE(496)] = 27283, - [SMALL_STATE(497)] = 27337, - [SMALL_STATE(498)] = 27390, - [SMALL_STATE(499)] = 27443, - [SMALL_STATE(500)] = 27496, - [SMALL_STATE(501)] = 27549, - [SMALL_STATE(502)] = 27602, - [SMALL_STATE(503)] = 27655, - [SMALL_STATE(504)] = 27708, - [SMALL_STATE(505)] = 27761, - [SMALL_STATE(506)] = 27814, - [SMALL_STATE(507)] = 27867, - [SMALL_STATE(508)] = 27920, - [SMALL_STATE(509)] = 27973, - [SMALL_STATE(510)] = 28026, - [SMALL_STATE(511)] = 28079, - [SMALL_STATE(512)] = 28132, - [SMALL_STATE(513)] = 28185, - [SMALL_STATE(514)] = 28238, - [SMALL_STATE(515)] = 28291, - [SMALL_STATE(516)] = 28344, - [SMALL_STATE(517)] = 28397, - [SMALL_STATE(518)] = 28450, - [SMALL_STATE(519)] = 28503, - [SMALL_STATE(520)] = 28556, - [SMALL_STATE(521)] = 28609, - [SMALL_STATE(522)] = 28662, - [SMALL_STATE(523)] = 28715, - [SMALL_STATE(524)] = 28768, - [SMALL_STATE(525)] = 28821, - [SMALL_STATE(526)] = 28874, - [SMALL_STATE(527)] = 28927, - [SMALL_STATE(528)] = 28980, - [SMALL_STATE(529)] = 29033, - [SMALL_STATE(530)] = 29086, - [SMALL_STATE(531)] = 29139, - [SMALL_STATE(532)] = 29192, - [SMALL_STATE(533)] = 29245, - [SMALL_STATE(534)] = 29298, - [SMALL_STATE(535)] = 29351, - [SMALL_STATE(536)] = 29404, - [SMALL_STATE(537)] = 29457, - [SMALL_STATE(538)] = 29510, - [SMALL_STATE(539)] = 29563, - [SMALL_STATE(540)] = 29616, - [SMALL_STATE(541)] = 29669, - [SMALL_STATE(542)] = 29722, - [SMALL_STATE(543)] = 29775, - [SMALL_STATE(544)] = 29828, - [SMALL_STATE(545)] = 29881, - [SMALL_STATE(546)] = 29934, - [SMALL_STATE(547)] = 29987, - [SMALL_STATE(548)] = 30040, - [SMALL_STATE(549)] = 30093, - [SMALL_STATE(550)] = 30146, - [SMALL_STATE(551)] = 30199, - [SMALL_STATE(552)] = 30252, - [SMALL_STATE(553)] = 30305, - [SMALL_STATE(554)] = 30358, - [SMALL_STATE(555)] = 30411, - [SMALL_STATE(556)] = 30464, - [SMALL_STATE(557)] = 30517, - [SMALL_STATE(558)] = 30570, - [SMALL_STATE(559)] = 30623, - [SMALL_STATE(560)] = 30676, - [SMALL_STATE(561)] = 30729, - [SMALL_STATE(562)] = 30782, - [SMALL_STATE(563)] = 30835, - [SMALL_STATE(564)] = 30888, - [SMALL_STATE(565)] = 30941, - [SMALL_STATE(566)] = 30994, - [SMALL_STATE(567)] = 31047, - [SMALL_STATE(568)] = 31100, - [SMALL_STATE(569)] = 31153, - [SMALL_STATE(570)] = 31206, - [SMALL_STATE(571)] = 31259, - [SMALL_STATE(572)] = 31312, - [SMALL_STATE(573)] = 31365, - [SMALL_STATE(574)] = 31418, - [SMALL_STATE(575)] = 31471, - [SMALL_STATE(576)] = 31524, - [SMALL_STATE(577)] = 31577, - [SMALL_STATE(578)] = 31630, - [SMALL_STATE(579)] = 31683, - [SMALL_STATE(580)] = 31736, - [SMALL_STATE(581)] = 31789, - [SMALL_STATE(582)] = 31842, - [SMALL_STATE(583)] = 31895, - [SMALL_STATE(584)] = 31948, - [SMALL_STATE(585)] = 32001, - [SMALL_STATE(586)] = 32054, - [SMALL_STATE(587)] = 32107, - [SMALL_STATE(588)] = 32160, - [SMALL_STATE(589)] = 32213, - [SMALL_STATE(590)] = 32266, - [SMALL_STATE(591)] = 32319, - [SMALL_STATE(592)] = 32372, - [SMALL_STATE(593)] = 32425, - [SMALL_STATE(594)] = 32478, - [SMALL_STATE(595)] = 32531, - [SMALL_STATE(596)] = 32613, - [SMALL_STATE(597)] = 32697, - [SMALL_STATE(598)] = 32779, - [SMALL_STATE(599)] = 32834, - [SMALL_STATE(600)] = 32889, - [SMALL_STATE(601)] = 32944, - [SMALL_STATE(602)] = 33025, - [SMALL_STATE(603)] = 33106, - [SMALL_STATE(604)] = 33187, - [SMALL_STATE(605)] = 33268, - [SMALL_STATE(606)] = 33349, - [SMALL_STATE(607)] = 33430, - [SMALL_STATE(608)] = 33508, - [SMALL_STATE(609)] = 33586, - [SMALL_STATE(610)] = 33635, - [SMALL_STATE(611)] = 33684, - [SMALL_STATE(612)] = 33732, - [SMALL_STATE(613)] = 33780, - [SMALL_STATE(614)] = 33828, - [SMALL_STATE(615)] = 33876, - [SMALL_STATE(616)] = 33924, - [SMALL_STATE(617)] = 33972, - [SMALL_STATE(618)] = 34020, - [SMALL_STATE(619)] = 34068, - [SMALL_STATE(620)] = 34116, - [SMALL_STATE(621)] = 34164, - [SMALL_STATE(622)] = 34212, - [SMALL_STATE(623)] = 34260, - [SMALL_STATE(624)] = 34308, - [SMALL_STATE(625)] = 34356, - [SMALL_STATE(626)] = 34404, - [SMALL_STATE(627)] = 34452, - [SMALL_STATE(628)] = 34500, - [SMALL_STATE(629)] = 34548, - [SMALL_STATE(630)] = 34596, - [SMALL_STATE(631)] = 34678, - [SMALL_STATE(632)] = 34726, - [SMALL_STATE(633)] = 34774, - [SMALL_STATE(634)] = 34822, - [SMALL_STATE(635)] = 34870, - [SMALL_STATE(636)] = 34918, - [SMALL_STATE(637)] = 34990, - [SMALL_STATE(638)] = 35038, - [SMALL_STATE(639)] = 35086, - [SMALL_STATE(640)] = 35134, - [SMALL_STATE(641)] = 35182, - [SMALL_STATE(642)] = 35230, - [SMALL_STATE(643)] = 35278, - [SMALL_STATE(644)] = 35360, - [SMALL_STATE(645)] = 35408, - [SMALL_STATE(646)] = 35465, - [SMALL_STATE(647)] = 35532, - [SMALL_STATE(648)] = 35589, - [SMALL_STATE(649)] = 35646, - [SMALL_STATE(650)] = 35709, - [SMALL_STATE(651)] = 35766, - [SMALL_STATE(652)] = 35827, - [SMALL_STATE(653)] = 35898, - [SMALL_STATE(654)] = 35967, - [SMALL_STATE(655)] = 36028, - [SMALL_STATE(656)] = 36085, - [SMALL_STATE(657)] = 36150, - [SMALL_STATE(658)] = 36215, - [SMALL_STATE(659)] = 36284, - [SMALL_STATE(660)] = 36355, - [SMALL_STATE(661)] = 36422, - [SMALL_STATE(662)] = 36479, - [SMALL_STATE(663)] = 36550, - [SMALL_STATE(664)] = 36621, - [SMALL_STATE(665)] = 36692, - [SMALL_STATE(666)] = 36763, - [SMALL_STATE(667)] = 36826, - [SMALL_STATE(668)] = 36874, - [SMALL_STATE(669)] = 36922, - [SMALL_STATE(670)] = 36988, - [SMALL_STATE(671)] = 37054, - [SMALL_STATE(672)] = 37100, - [SMALL_STATE(673)] = 37146, - [SMALL_STATE(674)] = 37212, - [SMALL_STATE(675)] = 37260, - [SMALL_STATE(676)] = 37308, - [SMALL_STATE(677)] = 37374, - [SMALL_STATE(678)] = 37424, - [SMALL_STATE(679)] = 37474, - [SMALL_STATE(680)] = 37537, - [SMALL_STATE(681)] = 37600, - [SMALL_STATE(682)] = 37663, - [SMALL_STATE(683)] = 37726, - [SMALL_STATE(684)] = 37789, - [SMALL_STATE(685)] = 37868, - [SMALL_STATE(686)] = 37935, - [SMALL_STATE(687)] = 37998, - [SMALL_STATE(688)] = 38061, - [SMALL_STATE(689)] = 38124, - [SMALL_STATE(690)] = 38173, - [SMALL_STATE(691)] = 38236, - [SMALL_STATE(692)] = 38299, - [SMALL_STATE(693)] = 38362, - [SMALL_STATE(694)] = 38425, - [SMALL_STATE(695)] = 38488, - [SMALL_STATE(696)] = 38551, - [SMALL_STATE(697)] = 38614, - [SMALL_STATE(698)] = 38677, - [SMALL_STATE(699)] = 38740, - [SMALL_STATE(700)] = 38803, - [SMALL_STATE(701)] = 38866, - [SMALL_STATE(702)] = 38929, - [SMALL_STATE(703)] = 38992, - [SMALL_STATE(704)] = 39055, - [SMALL_STATE(705)] = 39118, - [SMALL_STATE(706)] = 39181, - [SMALL_STATE(707)] = 39244, - [SMALL_STATE(708)] = 39307, - [SMALL_STATE(709)] = 39370, - [SMALL_STATE(710)] = 39433, - [SMALL_STATE(711)] = 39496, - [SMALL_STATE(712)] = 39559, - [SMALL_STATE(713)] = 39622, - [SMALL_STATE(714)] = 39671, - [SMALL_STATE(715)] = 39734, - [SMALL_STATE(716)] = 39801, - [SMALL_STATE(717)] = 39864, - [SMALL_STATE(718)] = 39927, - [SMALL_STATE(719)] = 39990, - [SMALL_STATE(720)] = 40053, - [SMALL_STATE(721)] = 40102, - [SMALL_STATE(722)] = 40165, - [SMALL_STATE(723)] = 40228, - [SMALL_STATE(724)] = 40291, - [SMALL_STATE(725)] = 40354, - [SMALL_STATE(726)] = 40399, - [SMALL_STATE(727)] = 40462, - [SMALL_STATE(728)] = 40507, - [SMALL_STATE(729)] = 40570, - [SMALL_STATE(730)] = 40633, - [SMALL_STATE(731)] = 40696, - [SMALL_STATE(732)] = 40764, - [SMALL_STATE(733)] = 40824, - [SMALL_STATE(734)] = 40892, - [SMALL_STATE(735)] = 40960, - [SMALL_STATE(736)] = 41014, - [SMALL_STATE(737)] = 41058, - [SMALL_STATE(738)] = 41124, - [SMALL_STATE(739)] = 41182, - [SMALL_STATE(740)] = 41236, - [SMALL_STATE(741)] = 41312, - [SMALL_STATE(742)] = 41376, - [SMALL_STATE(743)] = 41424, - [SMALL_STATE(744)] = 41486, - [SMALL_STATE(745)] = 41530, - [SMALL_STATE(746)] = 41584, - [SMALL_STATE(747)] = 41651, - [SMALL_STATE(748)] = 41708, - [SMALL_STATE(749)] = 41753, - [SMALL_STATE(750)] = 41800, - [SMALL_STATE(751)] = 41865, - [SMALL_STATE(752)] = 41932, - [SMALL_STATE(753)] = 41991, - [SMALL_STATE(754)] = 42044, - [SMALL_STATE(755)] = 42089, - [SMALL_STATE(756)] = 42134, - [SMALL_STATE(757)] = 42187, - [SMALL_STATE(758)] = 42254, - [SMALL_STATE(759)] = 42297, - [SMALL_STATE(760)] = 42344, - [SMALL_STATE(761)] = 42391, - [SMALL_STATE(762)] = 42454, - [SMALL_STATE(763)] = 42499, - [SMALL_STATE(764)] = 42560, - [SMALL_STATE(765)] = 42607, - [SMALL_STATE(766)] = 42652, - [SMALL_STATE(767)] = 42705, - [SMALL_STATE(768)] = 42750, - [SMALL_STATE(769)] = 42795, - [SMALL_STATE(770)] = 42838, - [SMALL_STATE(771)] = 42883, - [SMALL_STATE(772)] = 42925, - [SMALL_STATE(773)] = 42967, - [SMALL_STATE(774)] = 43009, - [SMALL_STATE(775)] = 43051, - [SMALL_STATE(776)] = 43093, - [SMALL_STATE(777)] = 43135, - [SMALL_STATE(778)] = 43177, - [SMALL_STATE(779)] = 43219, - [SMALL_STATE(780)] = 43263, - [SMALL_STATE(781)] = 43305, - [SMALL_STATE(782)] = 43347, - [SMALL_STATE(783)] = 43389, - [SMALL_STATE(784)] = 43431, - [SMALL_STATE(785)] = 43473, - [SMALL_STATE(786)] = 43515, - [SMALL_STATE(787)] = 43557, - [SMALL_STATE(788)] = 43599, - [SMALL_STATE(789)] = 43641, - [SMALL_STATE(790)] = 43685, - [SMALL_STATE(791)] = 43727, - [SMALL_STATE(792)] = 43769, - [SMALL_STATE(793)] = 43811, - [SMALL_STATE(794)] = 43853, - [SMALL_STATE(795)] = 43895, - [SMALL_STATE(796)] = 43937, - [SMALL_STATE(797)] = 43979, - [SMALL_STATE(798)] = 44021, - [SMALL_STATE(799)] = 44065, - [SMALL_STATE(800)] = 44107, - [SMALL_STATE(801)] = 44149, - [SMALL_STATE(802)] = 44193, - [SMALL_STATE(803)] = 44235, - [SMALL_STATE(804)] = 44277, - [SMALL_STATE(805)] = 44319, - [SMALL_STATE(806)] = 44361, - [SMALL_STATE(807)] = 44405, - [SMALL_STATE(808)] = 44447, - [SMALL_STATE(809)] = 44489, - [SMALL_STATE(810)] = 44530, - [SMALL_STATE(811)] = 44571, - [SMALL_STATE(812)] = 44612, - [SMALL_STATE(813)] = 44657, - [SMALL_STATE(814)] = 44698, - [SMALL_STATE(815)] = 44739, - [SMALL_STATE(816)] = 44780, - [SMALL_STATE(817)] = 44821, - [SMALL_STATE(818)] = 44862, - [SMALL_STATE(819)] = 44903, - [SMALL_STATE(820)] = 44944, - [SMALL_STATE(821)] = 44985, - [SMALL_STATE(822)] = 45026, - [SMALL_STATE(823)] = 45067, - [SMALL_STATE(824)] = 45108, - [SMALL_STATE(825)] = 45149, - [SMALL_STATE(826)] = 45190, - [SMALL_STATE(827)] = 45231, - [SMALL_STATE(828)] = 45272, - [SMALL_STATE(829)] = 45313, - [SMALL_STATE(830)] = 45354, - [SMALL_STATE(831)] = 45395, - [SMALL_STATE(832)] = 45436, - [SMALL_STATE(833)] = 45477, - [SMALL_STATE(834)] = 45518, - [SMALL_STATE(835)] = 45559, - [SMALL_STATE(836)] = 45600, - [SMALL_STATE(837)] = 45641, - [SMALL_STATE(838)] = 45686, - [SMALL_STATE(839)] = 45727, - [SMALL_STATE(840)] = 45768, - [SMALL_STATE(841)] = 45809, - [SMALL_STATE(842)] = 45850, - [SMALL_STATE(843)] = 45891, - [SMALL_STATE(844)] = 45932, - [SMALL_STATE(845)] = 45973, - [SMALL_STATE(846)] = 46014, - [SMALL_STATE(847)] = 46055, - [SMALL_STATE(848)] = 46096, - [SMALL_STATE(849)] = 46137, - [SMALL_STATE(850)] = 46211, - [SMALL_STATE(851)] = 46285, - [SMALL_STATE(852)] = 46359, - [SMALL_STATE(853)] = 46433, - [SMALL_STATE(854)] = 46506, - [SMALL_STATE(855)] = 46577, - [SMALL_STATE(856)] = 46648, - [SMALL_STATE(857)] = 46719, - [SMALL_STATE(858)] = 46790, - [SMALL_STATE(859)] = 46861, - [SMALL_STATE(860)] = 46929, - [SMALL_STATE(861)] = 47001, - [SMALL_STATE(862)] = 47073, - [SMALL_STATE(863)] = 47145, - [SMALL_STATE(864)] = 47211, - [SMALL_STATE(865)] = 47274, - [SMALL_STATE(866)] = 47337, - [SMALL_STATE(867)] = 47392, - [SMALL_STATE(868)] = 47447, - [SMALL_STATE(869)] = 47487, - [SMALL_STATE(870)] = 47527, - [SMALL_STATE(871)] = 47567, - [SMALL_STATE(872)] = 47607, - [SMALL_STATE(873)] = 47637, - [SMALL_STATE(874)] = 47662, - [SMALL_STATE(875)] = 47687, - [SMALL_STATE(876)] = 47712, - [SMALL_STATE(877)] = 47737, - [SMALL_STATE(878)] = 47774, - [SMALL_STATE(879)] = 47811, - [SMALL_STATE(880)] = 47840, - [SMALL_STATE(881)] = 47869, - [SMALL_STATE(882)] = 47903, - [SMALL_STATE(883)] = 47949, - [SMALL_STATE(884)] = 47983, - [SMALL_STATE(885)] = 48011, - [SMALL_STATE(886)] = 48054, - [SMALL_STATE(887)] = 48097, - [SMALL_STATE(888)] = 48140, - [SMALL_STATE(889)] = 48183, - [SMALL_STATE(890)] = 48214, - [SMALL_STATE(891)] = 48257, - [SMALL_STATE(892)] = 48303, - [SMALL_STATE(893)] = 48349, - [SMALL_STATE(894)] = 48389, - [SMALL_STATE(895)] = 48435, - [SMALL_STATE(896)] = 48472, - [SMALL_STATE(897)] = 48509, - [SMALL_STATE(898)] = 48534, - [SMALL_STATE(899)] = 48571, - [SMALL_STATE(900)] = 48608, - [SMALL_STATE(901)] = 48630, - [SMALL_STATE(902)] = 48652, - [SMALL_STATE(903)] = 48686, - [SMALL_STATE(904)] = 48720, - [SMALL_STATE(905)] = 48742, - [SMALL_STATE(906)] = 48779, - [SMALL_STATE(907)] = 48801, - [SMALL_STATE(908)] = 48838, - [SMALL_STATE(909)] = 48861, - [SMALL_STATE(910)] = 48886, - [SMALL_STATE(911)] = 48909, - [SMALL_STATE(912)] = 48946, - [SMALL_STATE(913)] = 48971, - [SMALL_STATE(914)] = 48992, - [SMALL_STATE(915)] = 49015, - [SMALL_STATE(916)] = 49052, - [SMALL_STATE(917)] = 49073, - [SMALL_STATE(918)] = 49090, - [SMALL_STATE(919)] = 49127, - [SMALL_STATE(920)] = 49150, - [SMALL_STATE(921)] = 49169, - [SMALL_STATE(922)] = 49190, - [SMALL_STATE(923)] = 49213, - [SMALL_STATE(924)] = 49238, - [SMALL_STATE(925)] = 49261, - [SMALL_STATE(926)] = 49284, - [SMALL_STATE(927)] = 49305, - [SMALL_STATE(928)] = 49326, - [SMALL_STATE(929)] = 49349, - [SMALL_STATE(930)] = 49376, - [SMALL_STATE(931)] = 49410, - [SMALL_STATE(932)] = 49444, - [SMALL_STATE(933)] = 49478, - [SMALL_STATE(934)] = 49500, - [SMALL_STATE(935)] = 49530, - [SMALL_STATE(936)] = 49564, - [SMALL_STATE(937)] = 49594, - [SMALL_STATE(938)] = 49624, - [SMALL_STATE(939)] = 49654, - [SMALL_STATE(940)] = 49676, - [SMALL_STATE(941)] = 49710, - [SMALL_STATE(942)] = 49744, - [SMALL_STATE(943)] = 49774, - [SMALL_STATE(944)] = 49792, - [SMALL_STATE(945)] = 49822, - [SMALL_STATE(946)] = 49856, - [SMALL_STATE(947)] = 49890, - [SMALL_STATE(948)] = 49912, - [SMALL_STATE(949)] = 49934, - [SMALL_STATE(950)] = 49964, - [SMALL_STATE(951)] = 49994, - [SMALL_STATE(952)] = 50012, - [SMALL_STATE(953)] = 50042, - [SMALL_STATE(954)] = 50076, - [SMALL_STATE(955)] = 50095, - [SMALL_STATE(956)] = 50118, - [SMALL_STATE(957)] = 50141, - [SMALL_STATE(958)] = 50160, - [SMALL_STATE(959)] = 50179, - [SMALL_STATE(960)] = 50202, - [SMALL_STATE(961)] = 50227, - [SMALL_STATE(962)] = 50246, - [SMALL_STATE(963)] = 50265, - [SMALL_STATE(964)] = 50284, - [SMALL_STATE(965)] = 50302, - [SMALL_STATE(966)] = 50326, - [SMALL_STATE(967)] = 50340, - [SMALL_STATE(968)] = 50354, - [SMALL_STATE(969)] = 50368, - [SMALL_STATE(970)] = 50382, - [SMALL_STATE(971)] = 50396, - [SMALL_STATE(972)] = 50412, - [SMALL_STATE(973)] = 50426, - [SMALL_STATE(974)] = 50440, - [SMALL_STATE(975)] = 50458, - [SMALL_STATE(976)] = 50472, - [SMALL_STATE(977)] = 50486, - [SMALL_STATE(978)] = 50500, - [SMALL_STATE(979)] = 50518, - [SMALL_STATE(980)] = 50536, - [SMALL_STATE(981)] = 50554, - [SMALL_STATE(982)] = 50568, - [SMALL_STATE(983)] = 50594, - [SMALL_STATE(984)] = 50618, - [SMALL_STATE(985)] = 50632, - [SMALL_STATE(986)] = 50650, - [SMALL_STATE(987)] = 50664, - [SMALL_STATE(988)] = 50678, - [SMALL_STATE(989)] = 50692, - [SMALL_STATE(990)] = 50706, - [SMALL_STATE(991)] = 50720, - [SMALL_STATE(992)] = 50744, - [SMALL_STATE(993)] = 50764, - [SMALL_STATE(994)] = 50778, - [SMALL_STATE(995)] = 50796, - [SMALL_STATE(996)] = 50814, - [SMALL_STATE(997)] = 50838, - [SMALL_STATE(998)] = 50858, - [SMALL_STATE(999)] = 50872, - [SMALL_STATE(1000)] = 50894, - [SMALL_STATE(1001)] = 50912, - [SMALL_STATE(1002)] = 50928, - [SMALL_STATE(1003)] = 50952, - [SMALL_STATE(1004)] = 50976, - [SMALL_STATE(1005)] = 50990, - [SMALL_STATE(1006)] = 51008, - [SMALL_STATE(1007)] = 51022, - [SMALL_STATE(1008)] = 51042, - [SMALL_STATE(1009)] = 51056, - [SMALL_STATE(1010)] = 51070, - [SMALL_STATE(1011)] = 51084, - [SMALL_STATE(1012)] = 51098, - [SMALL_STATE(1013)] = 51116, - [SMALL_STATE(1014)] = 51134, - [SMALL_STATE(1015)] = 51157, - [SMALL_STATE(1016)] = 51170, - [SMALL_STATE(1017)] = 51193, - [SMALL_STATE(1018)] = 51206, - [SMALL_STATE(1019)] = 51219, - [SMALL_STATE(1020)] = 51242, - [SMALL_STATE(1021)] = 51261, - [SMALL_STATE(1022)] = 51286, - [SMALL_STATE(1023)] = 51305, - [SMALL_STATE(1024)] = 51318, - [SMALL_STATE(1025)] = 51333, - [SMALL_STATE(1026)] = 51350, - [SMALL_STATE(1027)] = 51373, - [SMALL_STATE(1028)] = 51392, - [SMALL_STATE(1029)] = 51409, - [SMALL_STATE(1030)] = 51424, - [SMALL_STATE(1031)] = 51441, - [SMALL_STATE(1032)] = 51462, - [SMALL_STATE(1033)] = 51481, - [SMALL_STATE(1034)] = 51494, - [SMALL_STATE(1035)] = 51517, - [SMALL_STATE(1036)] = 51536, - [SMALL_STATE(1037)] = 51555, - [SMALL_STATE(1038)] = 51574, - [SMALL_STATE(1039)] = 51599, - [SMALL_STATE(1040)] = 51618, - [SMALL_STATE(1041)] = 51643, - [SMALL_STATE(1042)] = 51656, - [SMALL_STATE(1043)] = 51669, - [SMALL_STATE(1044)] = 51692, - [SMALL_STATE(1045)] = 51715, - [SMALL_STATE(1046)] = 51738, - [SMALL_STATE(1047)] = 51761, - [SMALL_STATE(1048)] = 51786, - [SMALL_STATE(1049)] = 51805, - [SMALL_STATE(1050)] = 51830, - [SMALL_STATE(1051)] = 51851, - [SMALL_STATE(1052)] = 51864, - [SMALL_STATE(1053)] = 51889, - [SMALL_STATE(1054)] = 51908, - [SMALL_STATE(1055)] = 51927, - [SMALL_STATE(1056)] = 51948, - [SMALL_STATE(1057)] = 51973, - [SMALL_STATE(1058)] = 51989, - [SMALL_STATE(1059)] = 52005, - [SMALL_STATE(1060)] = 52027, - [SMALL_STATE(1061)] = 52041, - [SMALL_STATE(1062)] = 52057, - [SMALL_STATE(1063)] = 52073, - [SMALL_STATE(1064)] = 52093, - [SMALL_STATE(1065)] = 52113, - [SMALL_STATE(1066)] = 52131, - [SMALL_STATE(1067)] = 52149, - [SMALL_STATE(1068)] = 52163, - [SMALL_STATE(1069)] = 52179, - [SMALL_STATE(1070)] = 52193, - [SMALL_STATE(1071)] = 52215, - [SMALL_STATE(1072)] = 52237, - [SMALL_STATE(1073)] = 52251, - [SMALL_STATE(1074)] = 52269, - [SMALL_STATE(1075)] = 52283, - [SMALL_STATE(1076)] = 52305, - [SMALL_STATE(1077)] = 52319, - [SMALL_STATE(1078)] = 52335, - [SMALL_STATE(1079)] = 52353, - [SMALL_STATE(1080)] = 52375, - [SMALL_STATE(1081)] = 52397, - [SMALL_STATE(1082)] = 52417, - [SMALL_STATE(1083)] = 52435, - [SMALL_STATE(1084)] = 52455, - [SMALL_STATE(1085)] = 52473, - [SMALL_STATE(1086)] = 52495, - [SMALL_STATE(1087)] = 52515, - [SMALL_STATE(1088)] = 52527, - [SMALL_STATE(1089)] = 52543, - [SMALL_STATE(1090)] = 52555, - [SMALL_STATE(1091)] = 52572, - [SMALL_STATE(1092)] = 52589, - [SMALL_STATE(1093)] = 52604, - [SMALL_STATE(1094)] = 52621, - [SMALL_STATE(1095)] = 52638, - [SMALL_STATE(1096)] = 52655, - [SMALL_STATE(1097)] = 52670, - [SMALL_STATE(1098)] = 52689, - [SMALL_STATE(1099)] = 52706, - [SMALL_STATE(1100)] = 52725, - [SMALL_STATE(1101)] = 52740, - [SMALL_STATE(1102)] = 52751, - [SMALL_STATE(1103)] = 52768, - [SMALL_STATE(1104)] = 52785, - [SMALL_STATE(1105)] = 52804, - [SMALL_STATE(1106)] = 52821, - [SMALL_STATE(1107)] = 52832, - [SMALL_STATE(1108)] = 52851, - [SMALL_STATE(1109)] = 52870, - [SMALL_STATE(1110)] = 52887, - [SMALL_STATE(1111)] = 52898, - [SMALL_STATE(1112)] = 52913, - [SMALL_STATE(1113)] = 52928, - [SMALL_STATE(1114)] = 52945, - [SMALL_STATE(1115)] = 52960, - [SMALL_STATE(1116)] = 52975, - [SMALL_STATE(1117)] = 52994, - [SMALL_STATE(1118)] = 53013, - [SMALL_STATE(1119)] = 53030, - [SMALL_STATE(1120)] = 53047, - [SMALL_STATE(1121)] = 53066, - [SMALL_STATE(1122)] = 53083, - [SMALL_STATE(1123)] = 53100, - [SMALL_STATE(1124)] = 53119, - [SMALL_STATE(1125)] = 53136, - [SMALL_STATE(1126)] = 53155, - [SMALL_STATE(1127)] = 53172, - [SMALL_STATE(1128)] = 53189, - [SMALL_STATE(1129)] = 53205, - [SMALL_STATE(1130)] = 53219, - [SMALL_STATE(1131)] = 53235, - [SMALL_STATE(1132)] = 53251, - [SMALL_STATE(1133)] = 53267, - [SMALL_STATE(1134)] = 53279, - [SMALL_STATE(1135)] = 53295, - [SMALL_STATE(1136)] = 53311, - [SMALL_STATE(1137)] = 53327, - [SMALL_STATE(1138)] = 53341, - [SMALL_STATE(1139)] = 53355, - [SMALL_STATE(1140)] = 53369, - [SMALL_STATE(1141)] = 53385, - [SMALL_STATE(1142)] = 53401, - [SMALL_STATE(1143)] = 53417, - [SMALL_STATE(1144)] = 53431, - [SMALL_STATE(1145)] = 53445, - [SMALL_STATE(1146)] = 53461, - [SMALL_STATE(1147)] = 53475, - [SMALL_STATE(1148)] = 53491, - [SMALL_STATE(1149)] = 53507, - [SMALL_STATE(1150)] = 53523, - [SMALL_STATE(1151)] = 53537, - [SMALL_STATE(1152)] = 53553, - [SMALL_STATE(1153)] = 53569, - [SMALL_STATE(1154)] = 53585, - [SMALL_STATE(1155)] = 53599, - [SMALL_STATE(1156)] = 53613, - [SMALL_STATE(1157)] = 53629, - [SMALL_STATE(1158)] = 53645, - [SMALL_STATE(1159)] = 53661, - [SMALL_STATE(1160)] = 53677, - [SMALL_STATE(1161)] = 53691, - [SMALL_STATE(1162)] = 53707, - [SMALL_STATE(1163)] = 53721, - [SMALL_STATE(1164)] = 53735, - [SMALL_STATE(1165)] = 53749, - [SMALL_STATE(1166)] = 53763, - [SMALL_STATE(1167)] = 53773, - [SMALL_STATE(1168)] = 53787, - [SMALL_STATE(1169)] = 53801, - [SMALL_STATE(1170)] = 53817, - [SMALL_STATE(1171)] = 53827, - [SMALL_STATE(1172)] = 53841, - [SMALL_STATE(1173)] = 53855, - [SMALL_STATE(1174)] = 53871, - [SMALL_STATE(1175)] = 53885, - [SMALL_STATE(1176)] = 53895, - [SMALL_STATE(1177)] = 53911, - [SMALL_STATE(1178)] = 53925, - [SMALL_STATE(1179)] = 53939, - [SMALL_STATE(1180)] = 53953, - [SMALL_STATE(1181)] = 53967, - [SMALL_STATE(1182)] = 53983, - [SMALL_STATE(1183)] = 53999, - [SMALL_STATE(1184)] = 54011, - [SMALL_STATE(1185)] = 54025, - [SMALL_STATE(1186)] = 54035, - [SMALL_STATE(1187)] = 54051, - [SMALL_STATE(1188)] = 54061, - [SMALL_STATE(1189)] = 54077, - [SMALL_STATE(1190)] = 54091, - [SMALL_STATE(1191)] = 54105, - [SMALL_STATE(1192)] = 54119, - [SMALL_STATE(1193)] = 54133, - [SMALL_STATE(1194)] = 54149, - [SMALL_STATE(1195)] = 54162, - [SMALL_STATE(1196)] = 54175, - [SMALL_STATE(1197)] = 54188, - [SMALL_STATE(1198)] = 54201, - [SMALL_STATE(1199)] = 54210, - [SMALL_STATE(1200)] = 54223, - [SMALL_STATE(1201)] = 54236, - [SMALL_STATE(1202)] = 54245, - [SMALL_STATE(1203)] = 54258, - [SMALL_STATE(1204)] = 54271, - [SMALL_STATE(1205)] = 54284, - [SMALL_STATE(1206)] = 54297, - [SMALL_STATE(1207)] = 54310, - [SMALL_STATE(1208)] = 54319, - [SMALL_STATE(1209)] = 54332, - [SMALL_STATE(1210)] = 54345, - [SMALL_STATE(1211)] = 54358, - [SMALL_STATE(1212)] = 54371, - [SMALL_STATE(1213)] = 54384, - [SMALL_STATE(1214)] = 54397, - [SMALL_STATE(1215)] = 54410, - [SMALL_STATE(1216)] = 54423, - [SMALL_STATE(1217)] = 54436, - [SMALL_STATE(1218)] = 54447, - [SMALL_STATE(1219)] = 54460, - [SMALL_STATE(1220)] = 54473, - [SMALL_STATE(1221)] = 54486, - [SMALL_STATE(1222)] = 54499, - [SMALL_STATE(1223)] = 54510, - [SMALL_STATE(1224)] = 54519, - [SMALL_STATE(1225)] = 54532, - [SMALL_STATE(1226)] = 54545, - [SMALL_STATE(1227)] = 54554, - [SMALL_STATE(1228)] = 54567, - [SMALL_STATE(1229)] = 54580, - [SMALL_STATE(1230)] = 54593, - [SMALL_STATE(1231)] = 54606, - [SMALL_STATE(1232)] = 54619, - [SMALL_STATE(1233)] = 54632, - [SMALL_STATE(1234)] = 54643, - [SMALL_STATE(1235)] = 54656, - [SMALL_STATE(1236)] = 54669, - [SMALL_STATE(1237)] = 54682, - [SMALL_STATE(1238)] = 54695, - [SMALL_STATE(1239)] = 54708, - [SMALL_STATE(1240)] = 54721, - [SMALL_STATE(1241)] = 54734, - [SMALL_STATE(1242)] = 54747, - [SMALL_STATE(1243)] = 54760, - [SMALL_STATE(1244)] = 54773, - [SMALL_STATE(1245)] = 54786, - [SMALL_STATE(1246)] = 54797, - [SMALL_STATE(1247)] = 54810, - [SMALL_STATE(1248)] = 54823, - [SMALL_STATE(1249)] = 54836, - [SMALL_STATE(1250)] = 54849, - [SMALL_STATE(1251)] = 54858, - [SMALL_STATE(1252)] = 54871, - [SMALL_STATE(1253)] = 54884, - [SMALL_STATE(1254)] = 54895, - [SMALL_STATE(1255)] = 54908, - [SMALL_STATE(1256)] = 54921, - [SMALL_STATE(1257)] = 54934, - [SMALL_STATE(1258)] = 54947, - [SMALL_STATE(1259)] = 54960, - [SMALL_STATE(1260)] = 54973, - [SMALL_STATE(1261)] = 54986, - [SMALL_STATE(1262)] = 54999, - [SMALL_STATE(1263)] = 55012, - [SMALL_STATE(1264)] = 55023, - [SMALL_STATE(1265)] = 55036, - [SMALL_STATE(1266)] = 55047, - [SMALL_STATE(1267)] = 55060, - [SMALL_STATE(1268)] = 55071, - [SMALL_STATE(1269)] = 55084, - [SMALL_STATE(1270)] = 55095, - [SMALL_STATE(1271)] = 55104, - [SMALL_STATE(1272)] = 55117, - [SMALL_STATE(1273)] = 55130, - [SMALL_STATE(1274)] = 55143, - [SMALL_STATE(1275)] = 55156, - [SMALL_STATE(1276)] = 55169, - [SMALL_STATE(1277)] = 55182, - [SMALL_STATE(1278)] = 55195, - [SMALL_STATE(1279)] = 55208, - [SMALL_STATE(1280)] = 55221, - [SMALL_STATE(1281)] = 55234, - [SMALL_STATE(1282)] = 55243, - [SMALL_STATE(1283)] = 55256, - [SMALL_STATE(1284)] = 55269, - [SMALL_STATE(1285)] = 55282, - [SMALL_STATE(1286)] = 55295, - [SMALL_STATE(1287)] = 55308, - [SMALL_STATE(1288)] = 55319, - [SMALL_STATE(1289)] = 55330, - [SMALL_STATE(1290)] = 55343, - [SMALL_STATE(1291)] = 55356, - [SMALL_STATE(1292)] = 55365, - [SMALL_STATE(1293)] = 55378, - [SMALL_STATE(1294)] = 55391, - [SMALL_STATE(1295)] = 55404, - [SMALL_STATE(1296)] = 55417, - [SMALL_STATE(1297)] = 55430, - [SMALL_STATE(1298)] = 55443, - [SMALL_STATE(1299)] = 55456, - [SMALL_STATE(1300)] = 55469, - [SMALL_STATE(1301)] = 55482, - [SMALL_STATE(1302)] = 55495, - [SMALL_STATE(1303)] = 55508, - [SMALL_STATE(1304)] = 55521, - [SMALL_STATE(1305)] = 55532, - [SMALL_STATE(1306)] = 55545, - [SMALL_STATE(1307)] = 55558, - [SMALL_STATE(1308)] = 55569, - [SMALL_STATE(1309)] = 55578, - [SMALL_STATE(1310)] = 55591, - [SMALL_STATE(1311)] = 55604, - [SMALL_STATE(1312)] = 55617, - [SMALL_STATE(1313)] = 55630, - [SMALL_STATE(1314)] = 55643, - [SMALL_STATE(1315)] = 55656, - [SMALL_STATE(1316)] = 55669, - [SMALL_STATE(1317)] = 55682, - [SMALL_STATE(1318)] = 55695, - [SMALL_STATE(1319)] = 55704, - [SMALL_STATE(1320)] = 55717, - [SMALL_STATE(1321)] = 55730, - [SMALL_STATE(1322)] = 55743, - [SMALL_STATE(1323)] = 55752, - [SMALL_STATE(1324)] = 55765, - [SMALL_STATE(1325)] = 55776, - [SMALL_STATE(1326)] = 55789, - [SMALL_STATE(1327)] = 55802, - [SMALL_STATE(1328)] = 55815, - [SMALL_STATE(1329)] = 55828, - [SMALL_STATE(1330)] = 55841, - [SMALL_STATE(1331)] = 55854, - [SMALL_STATE(1332)] = 55867, - [SMALL_STATE(1333)] = 55878, - [SMALL_STATE(1334)] = 55887, - [SMALL_STATE(1335)] = 55900, - [SMALL_STATE(1336)] = 55911, - [SMALL_STATE(1337)] = 55924, - [SMALL_STATE(1338)] = 55937, - [SMALL_STATE(1339)] = 55950, - [SMALL_STATE(1340)] = 55961, - [SMALL_STATE(1341)] = 55970, - [SMALL_STATE(1342)] = 55978, - [SMALL_STATE(1343)] = 55986, - [SMALL_STATE(1344)] = 55994, - [SMALL_STATE(1345)] = 56004, - [SMALL_STATE(1346)] = 56012, - [SMALL_STATE(1347)] = 56020, - [SMALL_STATE(1348)] = 56028, - [SMALL_STATE(1349)] = 56036, - [SMALL_STATE(1350)] = 56044, - [SMALL_STATE(1351)] = 56052, - [SMALL_STATE(1352)] = 56060, - [SMALL_STATE(1353)] = 56068, - [SMALL_STATE(1354)] = 56078, - [SMALL_STATE(1355)] = 56088, - [SMALL_STATE(1356)] = 56096, - [SMALL_STATE(1357)] = 56106, - [SMALL_STATE(1358)] = 56116, - [SMALL_STATE(1359)] = 56126, - [SMALL_STATE(1360)] = 56136, - [SMALL_STATE(1361)] = 56146, - [SMALL_STATE(1362)] = 56154, - [SMALL_STATE(1363)] = 56162, - [SMALL_STATE(1364)] = 56172, - [SMALL_STATE(1365)] = 56180, - [SMALL_STATE(1366)] = 56190, - [SMALL_STATE(1367)] = 56200, - [SMALL_STATE(1368)] = 56208, - [SMALL_STATE(1369)] = 56218, - [SMALL_STATE(1370)] = 56226, - [SMALL_STATE(1371)] = 56236, - [SMALL_STATE(1372)] = 56246, - [SMALL_STATE(1373)] = 56256, - [SMALL_STATE(1374)] = 56264, - [SMALL_STATE(1375)] = 56272, - [SMALL_STATE(1376)] = 56282, - [SMALL_STATE(1377)] = 56292, - [SMALL_STATE(1378)] = 56302, - [SMALL_STATE(1379)] = 56312, - [SMALL_STATE(1380)] = 56320, - [SMALL_STATE(1381)] = 56328, - [SMALL_STATE(1382)] = 56338, - [SMALL_STATE(1383)] = 56346, - [SMALL_STATE(1384)] = 56354, - [SMALL_STATE(1385)] = 56362, - [SMALL_STATE(1386)] = 56370, - [SMALL_STATE(1387)] = 56378, - [SMALL_STATE(1388)] = 56388, - [SMALL_STATE(1389)] = 56396, - [SMALL_STATE(1390)] = 56404, - [SMALL_STATE(1391)] = 56414, - [SMALL_STATE(1392)] = 56422, - [SMALL_STATE(1393)] = 56432, - [SMALL_STATE(1394)] = 56440, - [SMALL_STATE(1395)] = 56448, - [SMALL_STATE(1396)] = 56456, - [SMALL_STATE(1397)] = 56466, - [SMALL_STATE(1398)] = 56474, - [SMALL_STATE(1399)] = 56482, - [SMALL_STATE(1400)] = 56490, - [SMALL_STATE(1401)] = 56498, - [SMALL_STATE(1402)] = 56508, - [SMALL_STATE(1403)] = 56516, - [SMALL_STATE(1404)] = 56524, - [SMALL_STATE(1405)] = 56534, - [SMALL_STATE(1406)] = 56541, - [SMALL_STATE(1407)] = 56548, - [SMALL_STATE(1408)] = 56555, - [SMALL_STATE(1409)] = 56562, - [SMALL_STATE(1410)] = 56569, - [SMALL_STATE(1411)] = 56576, - [SMALL_STATE(1412)] = 56583, - [SMALL_STATE(1413)] = 56590, - [SMALL_STATE(1414)] = 56597, - [SMALL_STATE(1415)] = 56604, - [SMALL_STATE(1416)] = 56611, - [SMALL_STATE(1417)] = 56618, - [SMALL_STATE(1418)] = 56625, - [SMALL_STATE(1419)] = 56632, - [SMALL_STATE(1420)] = 56639, - [SMALL_STATE(1421)] = 56646, - [SMALL_STATE(1422)] = 56653, - [SMALL_STATE(1423)] = 56660, - [SMALL_STATE(1424)] = 56667, - [SMALL_STATE(1425)] = 56674, - [SMALL_STATE(1426)] = 56681, - [SMALL_STATE(1427)] = 56688, - [SMALL_STATE(1428)] = 56695, - [SMALL_STATE(1429)] = 56702, - [SMALL_STATE(1430)] = 56709, - [SMALL_STATE(1431)] = 56716, - [SMALL_STATE(1432)] = 56723, - [SMALL_STATE(1433)] = 56730, - [SMALL_STATE(1434)] = 56737, - [SMALL_STATE(1435)] = 56744, - [SMALL_STATE(1436)] = 56751, - [SMALL_STATE(1437)] = 56758, - [SMALL_STATE(1438)] = 56765, - [SMALL_STATE(1439)] = 56772, - [SMALL_STATE(1440)] = 56779, - [SMALL_STATE(1441)] = 56786, - [SMALL_STATE(1442)] = 56793, - [SMALL_STATE(1443)] = 56800, - [SMALL_STATE(1444)] = 56807, - [SMALL_STATE(1445)] = 56814, - [SMALL_STATE(1446)] = 56821, - [SMALL_STATE(1447)] = 56828, - [SMALL_STATE(1448)] = 56835, - [SMALL_STATE(1449)] = 56842, - [SMALL_STATE(1450)] = 56849, - [SMALL_STATE(1451)] = 56856, - [SMALL_STATE(1452)] = 56863, - [SMALL_STATE(1453)] = 56870, - [SMALL_STATE(1454)] = 56877, - [SMALL_STATE(1455)] = 56884, - [SMALL_STATE(1456)] = 56891, - [SMALL_STATE(1457)] = 56898, - [SMALL_STATE(1458)] = 56905, - [SMALL_STATE(1459)] = 56912, - [SMALL_STATE(1460)] = 56919, - [SMALL_STATE(1461)] = 56926, - [SMALL_STATE(1462)] = 56933, - [SMALL_STATE(1463)] = 56940, - [SMALL_STATE(1464)] = 56947, - [SMALL_STATE(1465)] = 56954, - [SMALL_STATE(1466)] = 56961, - [SMALL_STATE(1467)] = 56968, - [SMALL_STATE(1468)] = 56975, - [SMALL_STATE(1469)] = 56982, - [SMALL_STATE(1470)] = 56989, - [SMALL_STATE(1471)] = 56996, - [SMALL_STATE(1472)] = 57003, - [SMALL_STATE(1473)] = 57010, - [SMALL_STATE(1474)] = 57017, - [SMALL_STATE(1475)] = 57024, - [SMALL_STATE(1476)] = 57031, - [SMALL_STATE(1477)] = 57038, - [SMALL_STATE(1478)] = 57045, - [SMALL_STATE(1479)] = 57052, - [SMALL_STATE(1480)] = 57059, - [SMALL_STATE(1481)] = 57066, - [SMALL_STATE(1482)] = 57073, - [SMALL_STATE(1483)] = 57080, - [SMALL_STATE(1484)] = 57087, - [SMALL_STATE(1485)] = 57094, - [SMALL_STATE(1486)] = 57101, - [SMALL_STATE(1487)] = 57108, - [SMALL_STATE(1488)] = 57115, - [SMALL_STATE(1489)] = 57122, - [SMALL_STATE(1490)] = 57129, - [SMALL_STATE(1491)] = 57136, - [SMALL_STATE(1492)] = 57143, - [SMALL_STATE(1493)] = 57150, - [SMALL_STATE(1494)] = 57157, - [SMALL_STATE(1495)] = 57164, - [SMALL_STATE(1496)] = 57171, - [SMALL_STATE(1497)] = 57178, - [SMALL_STATE(1498)] = 57185, - [SMALL_STATE(1499)] = 57192, - [SMALL_STATE(1500)] = 57199, - [SMALL_STATE(1501)] = 57206, - [SMALL_STATE(1502)] = 57213, - [SMALL_STATE(1503)] = 57220, - [SMALL_STATE(1504)] = 57227, - [SMALL_STATE(1505)] = 57234, - [SMALL_STATE(1506)] = 57241, - [SMALL_STATE(1507)] = 57248, - [SMALL_STATE(1508)] = 57255, - [SMALL_STATE(1509)] = 57262, - [SMALL_STATE(1510)] = 57269, - [SMALL_STATE(1511)] = 57276, - [SMALL_STATE(1512)] = 57283, - [SMALL_STATE(1513)] = 57290, - [SMALL_STATE(1514)] = 57297, - [SMALL_STATE(1515)] = 57304, - [SMALL_STATE(1516)] = 57311, - [SMALL_STATE(1517)] = 57318, - [SMALL_STATE(1518)] = 57325, - [SMALL_STATE(1519)] = 57332, - [SMALL_STATE(1520)] = 57339, - [SMALL_STATE(1521)] = 57346, - [SMALL_STATE(1522)] = 57353, - [SMALL_STATE(1523)] = 57360, - [SMALL_STATE(1524)] = 57367, + [SMALL_STATE(242)] = 8540, + [SMALL_STATE(243)] = 8612, + [SMALL_STATE(244)] = 8710, + [SMALL_STATE(245)] = 8808, + [SMALL_STATE(246)] = 8906, + [SMALL_STATE(247)] = 9004, + [SMALL_STATE(248)] = 9102, + [SMALL_STATE(249)] = 9200, + [SMALL_STATE(250)] = 9298, + [SMALL_STATE(251)] = 9396, + [SMALL_STATE(252)] = 9491, + [SMALL_STATE(253)] = 9586, + [SMALL_STATE(254)] = 9681, + [SMALL_STATE(255)] = 9776, + [SMALL_STATE(256)] = 9871, + [SMALL_STATE(257)] = 9966, + [SMALL_STATE(258)] = 10061, + [SMALL_STATE(259)] = 10156, + [SMALL_STATE(260)] = 10251, + [SMALL_STATE(261)] = 10346, + [SMALL_STATE(262)] = 10441, + [SMALL_STATE(263)] = 10536, + [SMALL_STATE(264)] = 10631, + [SMALL_STATE(265)] = 10704, + [SMALL_STATE(266)] = 10799, + [SMALL_STATE(267)] = 10894, + [SMALL_STATE(268)] = 10967, + [SMALL_STATE(269)] = 11029, + [SMALL_STATE(270)] = 11121, + [SMALL_STATE(271)] = 11213, + [SMALL_STATE(272)] = 11275, + [SMALL_STATE(273)] = 11343, + [SMALL_STATE(274)] = 11411, + [SMALL_STATE(275)] = 11479, + [SMALL_STATE(276)] = 11547, + [SMALL_STATE(277)] = 11615, + [SMALL_STATE(278)] = 11685, + [SMALL_STATE(279)] = 11777, + [SMALL_STATE(280)] = 11845, + [SMALL_STATE(281)] = 11913, + [SMALL_STATE(282)] = 11981, + [SMALL_STATE(283)] = 12043, + [SMALL_STATE(284)] = 12105, + [SMALL_STATE(285)] = 12194, + [SMALL_STATE(286)] = 12283, + [SMALL_STATE(287)] = 12372, + [SMALL_STATE(288)] = 12463, + [SMALL_STATE(289)] = 12552, + [SMALL_STATE(290)] = 12641, + [SMALL_STATE(291)] = 12732, + [SMALL_STATE(292)] = 12789, + [SMALL_STATE(293)] = 12846, + [SMALL_STATE(294)] = 12935, + [SMALL_STATE(295)] = 13026, + [SMALL_STATE(296)] = 13117, + [SMALL_STATE(297)] = 13206, + [SMALL_STATE(298)] = 13273, + [SMALL_STATE(299)] = 13362, + [SMALL_STATE(300)] = 13451, + [SMALL_STATE(301)] = 13542, + [SMALL_STATE(302)] = 13631, + [SMALL_STATE(303)] = 13694, + [SMALL_STATE(304)] = 13751, + [SMALL_STATE(305)] = 13840, + [SMALL_STATE(306)] = 13897, + [SMALL_STATE(307)] = 13954, + [SMALL_STATE(308)] = 14043, + [SMALL_STATE(309)] = 14100, + [SMALL_STATE(310)] = 14189, + [SMALL_STATE(311)] = 14280, + [SMALL_STATE(312)] = 14337, + [SMALL_STATE(313)] = 14394, + [SMALL_STATE(314)] = 14457, + [SMALL_STATE(315)] = 14514, + [SMALL_STATE(316)] = 14571, + [SMALL_STATE(317)] = 14662, + [SMALL_STATE(318)] = 14718, + [SMALL_STATE(319)] = 14774, + [SMALL_STATE(320)] = 14830, + [SMALL_STATE(321)] = 14886, + [SMALL_STATE(322)] = 14942, + [SMALL_STATE(323)] = 14998, + [SMALL_STATE(324)] = 15054, + [SMALL_STATE(325)] = 15142, + [SMALL_STATE(326)] = 15198, + [SMALL_STATE(327)] = 15258, + [SMALL_STATE(328)] = 15314, + [SMALL_STATE(329)] = 15378, + [SMALL_STATE(330)] = 15434, + [SMALL_STATE(331)] = 15490, + [SMALL_STATE(332)] = 15546, + [SMALL_STATE(333)] = 15602, + [SMALL_STATE(334)] = 15658, + [SMALL_STATE(335)] = 15714, + [SMALL_STATE(336)] = 15770, + [SMALL_STATE(337)] = 15826, + [SMALL_STATE(338)] = 15882, + [SMALL_STATE(339)] = 15938, + [SMALL_STATE(340)] = 15994, + [SMALL_STATE(341)] = 16050, + [SMALL_STATE(342)] = 16106, + [SMALL_STATE(343)] = 16162, + [SMALL_STATE(344)] = 16250, + [SMALL_STATE(345)] = 16338, + [SMALL_STATE(346)] = 16426, + [SMALL_STATE(347)] = 16482, + [SMALL_STATE(348)] = 16570, + [SMALL_STATE(349)] = 16626, + [SMALL_STATE(350)] = 16682, + [SMALL_STATE(351)] = 16738, + [SMALL_STATE(352)] = 16794, + [SMALL_STATE(353)] = 16854, + [SMALL_STATE(354)] = 16942, + [SMALL_STATE(355)] = 17002, + [SMALL_STATE(356)] = 17058, + [SMALL_STATE(357)] = 17122, + [SMALL_STATE(358)] = 17178, + [SMALL_STATE(359)] = 17234, + [SMALL_STATE(360)] = 17290, + [SMALL_STATE(361)] = 17378, + [SMALL_STATE(362)] = 17466, + [SMALL_STATE(363)] = 17554, + [SMALL_STATE(364)] = 17610, + [SMALL_STATE(365)] = 17698, + [SMALL_STATE(366)] = 17754, + [SMALL_STATE(367)] = 17810, + [SMALL_STATE(368)] = 17874, + [SMALL_STATE(369)] = 17930, + [SMALL_STATE(370)] = 17986, + [SMALL_STATE(371)] = 18042, + [SMALL_STATE(372)] = 18098, + [SMALL_STATE(373)] = 18154, + [SMALL_STATE(374)] = 18210, + [SMALL_STATE(375)] = 18266, + [SMALL_STATE(376)] = 18354, + [SMALL_STATE(377)] = 18410, + [SMALL_STATE(378)] = 18466, + [SMALL_STATE(379)] = 18522, + [SMALL_STATE(380)] = 18578, + [SMALL_STATE(381)] = 18666, + [SMALL_STATE(382)] = 18754, + [SMALL_STATE(383)] = 18810, + [SMALL_STATE(384)] = 18898, + [SMALL_STATE(385)] = 18958, + [SMALL_STATE(386)] = 19022, + [SMALL_STATE(387)] = 19081, + [SMALL_STATE(388)] = 19166, + [SMALL_STATE(389)] = 19251, + [SMALL_STATE(390)] = 19336, + [SMALL_STATE(391)] = 19421, + [SMALL_STATE(392)] = 19506, + [SMALL_STATE(393)] = 19567, + [SMALL_STATE(394)] = 19652, + [SMALL_STATE(395)] = 19737, + [SMALL_STATE(396)] = 19796, + [SMALL_STATE(397)] = 19881, + [SMALL_STATE(398)] = 19966, + [SMALL_STATE(399)] = 20021, + [SMALL_STATE(400)] = 20108, + [SMALL_STATE(401)] = 20193, + [SMALL_STATE(402)] = 20278, + [SMALL_STATE(403)] = 20337, + [SMALL_STATE(404)] = 20422, + [SMALL_STATE(405)] = 20507, + [SMALL_STATE(406)] = 20592, + [SMALL_STATE(407)] = 20677, + [SMALL_STATE(408)] = 20762, + [SMALL_STATE(409)] = 20847, + [SMALL_STATE(410)] = 20932, + [SMALL_STATE(411)] = 21017, + [SMALL_STATE(412)] = 21102, + [SMALL_STATE(413)] = 21187, + [SMALL_STATE(414)] = 21272, + [SMALL_STATE(415)] = 21357, + [SMALL_STATE(416)] = 21416, + [SMALL_STATE(417)] = 21501, + [SMALL_STATE(418)] = 21586, + [SMALL_STATE(419)] = 21671, + [SMALL_STATE(420)] = 21726, + [SMALL_STATE(421)] = 21811, + [SMALL_STATE(422)] = 21870, + [SMALL_STATE(423)] = 21955, + [SMALL_STATE(424)] = 22016, + [SMALL_STATE(425)] = 22101, + [SMALL_STATE(426)] = 22186, + [SMALL_STATE(427)] = 22271, + [SMALL_STATE(428)] = 22330, + [SMALL_STATE(429)] = 22415, + [SMALL_STATE(430)] = 22500, + [SMALL_STATE(431)] = 22585, + [SMALL_STATE(432)] = 22670, + [SMALL_STATE(433)] = 22755, + [SMALL_STATE(434)] = 22840, + [SMALL_STATE(435)] = 22925, + [SMALL_STATE(436)] = 23010, + [SMALL_STATE(437)] = 23069, + [SMALL_STATE(438)] = 23154, + [SMALL_STATE(439)] = 23213, + [SMALL_STATE(440)] = 23272, + [SMALL_STATE(441)] = 23357, + [SMALL_STATE(442)] = 23442, + [SMALL_STATE(443)] = 23527, + [SMALL_STATE(444)] = 23612, + [SMALL_STATE(445)] = 23673, + [SMALL_STATE(446)] = 23732, + [SMALL_STATE(447)] = 23817, + [SMALL_STATE(448)] = 23902, + [SMALL_STATE(449)] = 23987, + [SMALL_STATE(450)] = 24072, + [SMALL_STATE(451)] = 24157, + [SMALL_STATE(452)] = 24242, + [SMALL_STATE(453)] = 24327, + [SMALL_STATE(454)] = 24382, + [SMALL_STATE(455)] = 24441, + [SMALL_STATE(456)] = 24500, + [SMALL_STATE(457)] = 24559, + [SMALL_STATE(458)] = 24644, + [SMALL_STATE(459)] = 24729, + [SMALL_STATE(460)] = 24814, + [SMALL_STATE(461)] = 24899, + [SMALL_STATE(462)] = 24958, + [SMALL_STATE(463)] = 25043, + [SMALL_STATE(464)] = 25098, + [SMALL_STATE(465)] = 25183, + [SMALL_STATE(466)] = 25268, + [SMALL_STATE(467)] = 25353, + [SMALL_STATE(468)] = 25438, + [SMALL_STATE(469)] = 25523, + [SMALL_STATE(470)] = 25608, + [SMALL_STATE(471)] = 25669, + [SMALL_STATE(472)] = 25754, + [SMALL_STATE(473)] = 25839, + [SMALL_STATE(474)] = 25924, + [SMALL_STATE(475)] = 26009, + [SMALL_STATE(476)] = 26094, + [SMALL_STATE(477)] = 26153, + [SMALL_STATE(478)] = 26238, + [SMALL_STATE(479)] = 26297, + [SMALL_STATE(480)] = 26382, + [SMALL_STATE(481)] = 26467, + [SMALL_STATE(482)] = 26522, + [SMALL_STATE(483)] = 26577, + [SMALL_STATE(484)] = 26662, + [SMALL_STATE(485)] = 26747, + [SMALL_STATE(486)] = 26832, + [SMALL_STATE(487)] = 26886, + [SMALL_STATE(488)] = 26940, + [SMALL_STATE(489)] = 26994, + [SMALL_STATE(490)] = 27048, + [SMALL_STATE(491)] = 27102, + [SMALL_STATE(492)] = 27156, + [SMALL_STATE(493)] = 27210, + [SMALL_STATE(494)] = 27264, + [SMALL_STATE(495)] = 27318, + [SMALL_STATE(496)] = 27372, + [SMALL_STATE(497)] = 27426, + [SMALL_STATE(498)] = 27480, + [SMALL_STATE(499)] = 27533, + [SMALL_STATE(500)] = 27586, + [SMALL_STATE(501)] = 27639, + [SMALL_STATE(502)] = 27692, + [SMALL_STATE(503)] = 27745, + [SMALL_STATE(504)] = 27798, + [SMALL_STATE(505)] = 27851, + [SMALL_STATE(506)] = 27904, + [SMALL_STATE(507)] = 27957, + [SMALL_STATE(508)] = 28010, + [SMALL_STATE(509)] = 28063, + [SMALL_STATE(510)] = 28116, + [SMALL_STATE(511)] = 28169, + [SMALL_STATE(512)] = 28222, + [SMALL_STATE(513)] = 28275, + [SMALL_STATE(514)] = 28328, + [SMALL_STATE(515)] = 28381, + [SMALL_STATE(516)] = 28434, + [SMALL_STATE(517)] = 28487, + [SMALL_STATE(518)] = 28540, + [SMALL_STATE(519)] = 28593, + [SMALL_STATE(520)] = 28646, + [SMALL_STATE(521)] = 28699, + [SMALL_STATE(522)] = 28752, + [SMALL_STATE(523)] = 28805, + [SMALL_STATE(524)] = 28858, + [SMALL_STATE(525)] = 28911, + [SMALL_STATE(526)] = 28964, + [SMALL_STATE(527)] = 29017, + [SMALL_STATE(528)] = 29070, + [SMALL_STATE(529)] = 29123, + [SMALL_STATE(530)] = 29176, + [SMALL_STATE(531)] = 29229, + [SMALL_STATE(532)] = 29282, + [SMALL_STATE(533)] = 29335, + [SMALL_STATE(534)] = 29388, + [SMALL_STATE(535)] = 29441, + [SMALL_STATE(536)] = 29494, + [SMALL_STATE(537)] = 29547, + [SMALL_STATE(538)] = 29600, + [SMALL_STATE(539)] = 29653, + [SMALL_STATE(540)] = 29706, + [SMALL_STATE(541)] = 29759, + [SMALL_STATE(542)] = 29812, + [SMALL_STATE(543)] = 29865, + [SMALL_STATE(544)] = 29918, + [SMALL_STATE(545)] = 29971, + [SMALL_STATE(546)] = 30024, + [SMALL_STATE(547)] = 30077, + [SMALL_STATE(548)] = 30130, + [SMALL_STATE(549)] = 30183, + [SMALL_STATE(550)] = 30236, + [SMALL_STATE(551)] = 30289, + [SMALL_STATE(552)] = 30342, + [SMALL_STATE(553)] = 30395, + [SMALL_STATE(554)] = 30448, + [SMALL_STATE(555)] = 30501, + [SMALL_STATE(556)] = 30554, + [SMALL_STATE(557)] = 30607, + [SMALL_STATE(558)] = 30660, + [SMALL_STATE(559)] = 30713, + [SMALL_STATE(560)] = 30766, + [SMALL_STATE(561)] = 30819, + [SMALL_STATE(562)] = 30872, + [SMALL_STATE(563)] = 30925, + [SMALL_STATE(564)] = 30978, + [SMALL_STATE(565)] = 31031, + [SMALL_STATE(566)] = 31084, + [SMALL_STATE(567)] = 31137, + [SMALL_STATE(568)] = 31190, + [SMALL_STATE(569)] = 31243, + [SMALL_STATE(570)] = 31296, + [SMALL_STATE(571)] = 31349, + [SMALL_STATE(572)] = 31402, + [SMALL_STATE(573)] = 31455, + [SMALL_STATE(574)] = 31508, + [SMALL_STATE(575)] = 31561, + [SMALL_STATE(576)] = 31614, + [SMALL_STATE(577)] = 31667, + [SMALL_STATE(578)] = 31720, + [SMALL_STATE(579)] = 31773, + [SMALL_STATE(580)] = 31826, + [SMALL_STATE(581)] = 31879, + [SMALL_STATE(582)] = 31932, + [SMALL_STATE(583)] = 31985, + [SMALL_STATE(584)] = 32038, + [SMALL_STATE(585)] = 32091, + [SMALL_STATE(586)] = 32144, + [SMALL_STATE(587)] = 32197, + [SMALL_STATE(588)] = 32250, + [SMALL_STATE(589)] = 32303, + [SMALL_STATE(590)] = 32356, + [SMALL_STATE(591)] = 32409, + [SMALL_STATE(592)] = 32462, + [SMALL_STATE(593)] = 32515, + [SMALL_STATE(594)] = 32568, + [SMALL_STATE(595)] = 32621, + [SMALL_STATE(596)] = 32674, + [SMALL_STATE(597)] = 32758, + [SMALL_STATE(598)] = 32840, + [SMALL_STATE(599)] = 32922, + [SMALL_STATE(600)] = 33003, + [SMALL_STATE(601)] = 33058, + [SMALL_STATE(602)] = 33113, + [SMALL_STATE(603)] = 33194, + [SMALL_STATE(604)] = 33275, + [SMALL_STATE(605)] = 33356, + [SMALL_STATE(606)] = 33437, + [SMALL_STATE(607)] = 33518, + [SMALL_STATE(608)] = 33573, + [SMALL_STATE(609)] = 33651, + [SMALL_STATE(610)] = 33729, + [SMALL_STATE(611)] = 33778, + [SMALL_STATE(612)] = 33827, + [SMALL_STATE(613)] = 33875, + [SMALL_STATE(614)] = 33923, + [SMALL_STATE(615)] = 33971, + [SMALL_STATE(616)] = 34019, + [SMALL_STATE(617)] = 34067, + [SMALL_STATE(618)] = 34115, + [SMALL_STATE(619)] = 34163, + [SMALL_STATE(620)] = 34211, + [SMALL_STATE(621)] = 34259, + [SMALL_STATE(622)] = 34341, + [SMALL_STATE(623)] = 34389, + [SMALL_STATE(624)] = 34461, + [SMALL_STATE(625)] = 34509, + [SMALL_STATE(626)] = 34557, + [SMALL_STATE(627)] = 34605, + [SMALL_STATE(628)] = 34653, + [SMALL_STATE(629)] = 34701, + [SMALL_STATE(630)] = 34749, + [SMALL_STATE(631)] = 34831, + [SMALL_STATE(632)] = 34879, + [SMALL_STATE(633)] = 34927, + [SMALL_STATE(634)] = 34975, + [SMALL_STATE(635)] = 35023, + [SMALL_STATE(636)] = 35071, + [SMALL_STATE(637)] = 35119, + [SMALL_STATE(638)] = 35167, + [SMALL_STATE(639)] = 35215, + [SMALL_STATE(640)] = 35263, + [SMALL_STATE(641)] = 35311, + [SMALL_STATE(642)] = 35359, + [SMALL_STATE(643)] = 35407, + [SMALL_STATE(644)] = 35455, + [SMALL_STATE(645)] = 35503, + [SMALL_STATE(646)] = 35551, + [SMALL_STATE(647)] = 35608, + [SMALL_STATE(648)] = 35679, + [SMALL_STATE(649)] = 35742, + [SMALL_STATE(650)] = 35799, + [SMALL_STATE(651)] = 35862, + [SMALL_STATE(652)] = 35933, + [SMALL_STATE(653)] = 36002, + [SMALL_STATE(654)] = 36073, + [SMALL_STATE(655)] = 36144, + [SMALL_STATE(656)] = 36201, + [SMALL_STATE(657)] = 36268, + [SMALL_STATE(658)] = 36325, + [SMALL_STATE(659)] = 36396, + [SMALL_STATE(660)] = 36463, + [SMALL_STATE(661)] = 36534, + [SMALL_STATE(662)] = 36595, + [SMALL_STATE(663)] = 36660, + [SMALL_STATE(664)] = 36717, + [SMALL_STATE(665)] = 36786, + [SMALL_STATE(666)] = 36847, + [SMALL_STATE(667)] = 36912, + [SMALL_STATE(668)] = 36969, + [SMALL_STATE(669)] = 37035, + [SMALL_STATE(670)] = 37101, + [SMALL_STATE(671)] = 37149, + [SMALL_STATE(672)] = 37195, + [SMALL_STATE(673)] = 37261, + [SMALL_STATE(674)] = 37309, + [SMALL_STATE(675)] = 37359, + [SMALL_STATE(676)] = 37405, + [SMALL_STATE(677)] = 37453, + [SMALL_STATE(678)] = 37501, + [SMALL_STATE(679)] = 37551, + [SMALL_STATE(680)] = 37617, + [SMALL_STATE(681)] = 37666, + [SMALL_STATE(682)] = 37733, + [SMALL_STATE(683)] = 37796, + [SMALL_STATE(684)] = 37845, + [SMALL_STATE(685)] = 37912, + [SMALL_STATE(686)] = 37975, + [SMALL_STATE(687)] = 38038, + [SMALL_STATE(688)] = 38101, + [SMALL_STATE(689)] = 38164, + [SMALL_STATE(690)] = 38227, + [SMALL_STATE(691)] = 38290, + [SMALL_STATE(692)] = 38353, + [SMALL_STATE(693)] = 38402, + [SMALL_STATE(694)] = 38465, + [SMALL_STATE(695)] = 38528, + [SMALL_STATE(696)] = 38591, + [SMALL_STATE(697)] = 38654, + [SMALL_STATE(698)] = 38717, + [SMALL_STATE(699)] = 38780, + [SMALL_STATE(700)] = 38843, + [SMALL_STATE(701)] = 38906, + [SMALL_STATE(702)] = 38951, + [SMALL_STATE(703)] = 39014, + [SMALL_STATE(704)] = 39059, + [SMALL_STATE(705)] = 39122, + [SMALL_STATE(706)] = 39185, + [SMALL_STATE(707)] = 39248, + [SMALL_STATE(708)] = 39311, + [SMALL_STATE(709)] = 39374, + [SMALL_STATE(710)] = 39437, + [SMALL_STATE(711)] = 39516, + [SMALL_STATE(712)] = 39579, + [SMALL_STATE(713)] = 39642, + [SMALL_STATE(714)] = 39705, + [SMALL_STATE(715)] = 39768, + [SMALL_STATE(716)] = 39831, + [SMALL_STATE(717)] = 39894, + [SMALL_STATE(718)] = 39957, + [SMALL_STATE(719)] = 40020, + [SMALL_STATE(720)] = 40083, + [SMALL_STATE(721)] = 40146, + [SMALL_STATE(722)] = 40209, + [SMALL_STATE(723)] = 40272, + [SMALL_STATE(724)] = 40335, + [SMALL_STATE(725)] = 40398, + [SMALL_STATE(726)] = 40461, + [SMALL_STATE(727)] = 40524, + [SMALL_STATE(728)] = 40587, + [SMALL_STATE(729)] = 40650, + [SMALL_STATE(730)] = 40713, + [SMALL_STATE(731)] = 40776, + [SMALL_STATE(732)] = 40839, + [SMALL_STATE(733)] = 40899, + [SMALL_STATE(734)] = 40965, + [SMALL_STATE(735)] = 41019, + [SMALL_STATE(736)] = 41063, + [SMALL_STATE(737)] = 41117, + [SMALL_STATE(738)] = 41171, + [SMALL_STATE(739)] = 41239, + [SMALL_STATE(740)] = 41287, + [SMALL_STATE(741)] = 41363, + [SMALL_STATE(742)] = 41425, + [SMALL_STATE(743)] = 41489, + [SMALL_STATE(744)] = 41533, + [SMALL_STATE(745)] = 41601, + [SMALL_STATE(746)] = 41669, + [SMALL_STATE(747)] = 41727, + [SMALL_STATE(748)] = 41772, + [SMALL_STATE(749)] = 41835, + [SMALL_STATE(750)] = 41880, + [SMALL_STATE(751)] = 41947, + [SMALL_STATE(752)] = 41992, + [SMALL_STATE(753)] = 42059, + [SMALL_STATE(754)] = 42124, + [SMALL_STATE(755)] = 42181, + [SMALL_STATE(756)] = 42234, + [SMALL_STATE(757)] = 42279, + [SMALL_STATE(758)] = 42322, + [SMALL_STATE(759)] = 42369, + [SMALL_STATE(760)] = 42422, + [SMALL_STATE(761)] = 42469, + [SMALL_STATE(762)] = 42516, + [SMALL_STATE(763)] = 42561, + [SMALL_STATE(764)] = 42622, + [SMALL_STATE(765)] = 42689, + [SMALL_STATE(766)] = 42748, + [SMALL_STATE(767)] = 42791, + [SMALL_STATE(768)] = 42836, + [SMALL_STATE(769)] = 42881, + [SMALL_STATE(770)] = 42928, + [SMALL_STATE(771)] = 42973, + [SMALL_STATE(772)] = 43026, + [SMALL_STATE(773)] = 43068, + [SMALL_STATE(774)] = 43110, + [SMALL_STATE(775)] = 43152, + [SMALL_STATE(776)] = 43196, + [SMALL_STATE(777)] = 43238, + [SMALL_STATE(778)] = 43280, + [SMALL_STATE(779)] = 43322, + [SMALL_STATE(780)] = 43364, + [SMALL_STATE(781)] = 43406, + [SMALL_STATE(782)] = 43448, + [SMALL_STATE(783)] = 43490, + [SMALL_STATE(784)] = 43532, + [SMALL_STATE(785)] = 43574, + [SMALL_STATE(786)] = 43616, + [SMALL_STATE(787)] = 43658, + [SMALL_STATE(788)] = 43700, + [SMALL_STATE(789)] = 43742, + [SMALL_STATE(790)] = 43784, + [SMALL_STATE(791)] = 43826, + [SMALL_STATE(792)] = 43868, + [SMALL_STATE(793)] = 43910, + [SMALL_STATE(794)] = 43952, + [SMALL_STATE(795)] = 43994, + [SMALL_STATE(796)] = 44036, + [SMALL_STATE(797)] = 44078, + [SMALL_STATE(798)] = 44122, + [SMALL_STATE(799)] = 44164, + [SMALL_STATE(800)] = 44206, + [SMALL_STATE(801)] = 44250, + [SMALL_STATE(802)] = 44292, + [SMALL_STATE(803)] = 44336, + [SMALL_STATE(804)] = 44378, + [SMALL_STATE(805)] = 44420, + [SMALL_STATE(806)] = 44462, + [SMALL_STATE(807)] = 44504, + [SMALL_STATE(808)] = 44546, + [SMALL_STATE(809)] = 44588, + [SMALL_STATE(810)] = 44632, + [SMALL_STATE(811)] = 44673, + [SMALL_STATE(812)] = 44714, + [SMALL_STATE(813)] = 44755, + [SMALL_STATE(814)] = 44796, + [SMALL_STATE(815)] = 44837, + [SMALL_STATE(816)] = 44878, + [SMALL_STATE(817)] = 44919, + [SMALL_STATE(818)] = 44960, + [SMALL_STATE(819)] = 45001, + [SMALL_STATE(820)] = 45042, + [SMALL_STATE(821)] = 45083, + [SMALL_STATE(822)] = 45124, + [SMALL_STATE(823)] = 45165, + [SMALL_STATE(824)] = 45206, + [SMALL_STATE(825)] = 45247, + [SMALL_STATE(826)] = 45288, + [SMALL_STATE(827)] = 45329, + [SMALL_STATE(828)] = 45370, + [SMALL_STATE(829)] = 45411, + [SMALL_STATE(830)] = 45452, + [SMALL_STATE(831)] = 45493, + [SMALL_STATE(832)] = 45538, + [SMALL_STATE(833)] = 45579, + [SMALL_STATE(834)] = 45620, + [SMALL_STATE(835)] = 45661, + [SMALL_STATE(836)] = 45702, + [SMALL_STATE(837)] = 45743, + [SMALL_STATE(838)] = 45784, + [SMALL_STATE(839)] = 45825, + [SMALL_STATE(840)] = 45866, + [SMALL_STATE(841)] = 45907, + [SMALL_STATE(842)] = 45948, + [SMALL_STATE(843)] = 45989, + [SMALL_STATE(844)] = 46030, + [SMALL_STATE(845)] = 46071, + [SMALL_STATE(846)] = 46112, + [SMALL_STATE(847)] = 46153, + [SMALL_STATE(848)] = 46194, + [SMALL_STATE(849)] = 46235, + [SMALL_STATE(850)] = 46280, + [SMALL_STATE(851)] = 46354, + [SMALL_STATE(852)] = 46428, + [SMALL_STATE(853)] = 46502, + [SMALL_STATE(854)] = 46576, + [SMALL_STATE(855)] = 46647, + [SMALL_STATE(856)] = 46718, + [SMALL_STATE(857)] = 46789, + [SMALL_STATE(858)] = 46860, + [SMALL_STATE(859)] = 46933, + [SMALL_STATE(860)] = 47004, + [SMALL_STATE(861)] = 47076, + [SMALL_STATE(862)] = 47144, + [SMALL_STATE(863)] = 47216, + [SMALL_STATE(864)] = 47288, + [SMALL_STATE(865)] = 47354, + [SMALL_STATE(866)] = 47417, + [SMALL_STATE(867)] = 47480, + [SMALL_STATE(868)] = 47535, + [SMALL_STATE(869)] = 47590, + [SMALL_STATE(870)] = 47630, + [SMALL_STATE(871)] = 47670, + [SMALL_STATE(872)] = 47710, + [SMALL_STATE(873)] = 47750, + [SMALL_STATE(874)] = 47780, + [SMALL_STATE(875)] = 47809, + [SMALL_STATE(876)] = 47834, + [SMALL_STATE(877)] = 47859, + [SMALL_STATE(878)] = 47884, + [SMALL_STATE(879)] = 47909, + [SMALL_STATE(880)] = 47946, + [SMALL_STATE(881)] = 47983, + [SMALL_STATE(882)] = 48012, + [SMALL_STATE(883)] = 48046, + [SMALL_STATE(884)] = 48092, + [SMALL_STATE(885)] = 48126, + [SMALL_STATE(886)] = 48154, + [SMALL_STATE(887)] = 48197, + [SMALL_STATE(888)] = 48228, + [SMALL_STATE(889)] = 48271, + [SMALL_STATE(890)] = 48314, + [SMALL_STATE(891)] = 48357, + [SMALL_STATE(892)] = 48400, + [SMALL_STATE(893)] = 48446, + [SMALL_STATE(894)] = 48492, + [SMALL_STATE(895)] = 48538, + [SMALL_STATE(896)] = 48578, + [SMALL_STATE(897)] = 48615, + [SMALL_STATE(898)] = 48652, + [SMALL_STATE(899)] = 48677, + [SMALL_STATE(900)] = 48714, + [SMALL_STATE(901)] = 48751, + [SMALL_STATE(902)] = 48773, + [SMALL_STATE(903)] = 48807, + [SMALL_STATE(904)] = 48829, + [SMALL_STATE(905)] = 48863, + [SMALL_STATE(906)] = 48885, + [SMALL_STATE(907)] = 48922, + [SMALL_STATE(908)] = 48944, + [SMALL_STATE(909)] = 48967, + [SMALL_STATE(910)] = 48998, + [SMALL_STATE(911)] = 49029, + [SMALL_STATE(912)] = 49066, + [SMALL_STATE(913)] = 49089, + [SMALL_STATE(914)] = 49126, + [SMALL_STATE(915)] = 49157, + [SMALL_STATE(916)] = 49180, + [SMALL_STATE(917)] = 49201, + [SMALL_STATE(918)] = 49224, + [SMALL_STATE(919)] = 49247, + [SMALL_STATE(920)] = 49272, + [SMALL_STATE(921)] = 49303, + [SMALL_STATE(922)] = 49334, + [SMALL_STATE(923)] = 49357, + [SMALL_STATE(924)] = 49388, + [SMALL_STATE(925)] = 49409, + [SMALL_STATE(926)] = 49434, + [SMALL_STATE(927)] = 49465, + [SMALL_STATE(928)] = 49496, + [SMALL_STATE(929)] = 49523, + [SMALL_STATE(930)] = 49560, + [SMALL_STATE(931)] = 49583, + [SMALL_STATE(932)] = 49608, + [SMALL_STATE(933)] = 49645, + [SMALL_STATE(934)] = 49666, + [SMALL_STATE(935)] = 49683, + [SMALL_STATE(936)] = 49706, + [SMALL_STATE(937)] = 49737, + [SMALL_STATE(938)] = 49758, + [SMALL_STATE(939)] = 49779, + [SMALL_STATE(940)] = 49798, + [SMALL_STATE(941)] = 49832, + [SMALL_STATE(942)] = 49854, + [SMALL_STATE(943)] = 49888, + [SMALL_STATE(944)] = 49910, + [SMALL_STATE(945)] = 49944, + [SMALL_STATE(946)] = 49978, + [SMALL_STATE(947)] = 49996, + [SMALL_STATE(948)] = 50030, + [SMALL_STATE(949)] = 50064, + [SMALL_STATE(950)] = 50086, + [SMALL_STATE(951)] = 50120, + [SMALL_STATE(952)] = 50138, + [SMALL_STATE(953)] = 50160, + [SMALL_STATE(954)] = 50194, + [SMALL_STATE(955)] = 50228, + [SMALL_STATE(956)] = 50251, + [SMALL_STATE(957)] = 50270, + [SMALL_STATE(958)] = 50289, + [SMALL_STATE(959)] = 50312, + [SMALL_STATE(960)] = 50331, + [SMALL_STATE(961)] = 50350, + [SMALL_STATE(962)] = 50375, + [SMALL_STATE(963)] = 50394, + [SMALL_STATE(964)] = 50413, + [SMALL_STATE(965)] = 50436, + [SMALL_STATE(966)] = 50456, + [SMALL_STATE(967)] = 50470, + [SMALL_STATE(968)] = 50494, + [SMALL_STATE(969)] = 50508, + [SMALL_STATE(970)] = 50534, + [SMALL_STATE(971)] = 50548, + [SMALL_STATE(972)] = 50562, + [SMALL_STATE(973)] = 50578, + [SMALL_STATE(974)] = 50596, + [SMALL_STATE(975)] = 50610, + [SMALL_STATE(976)] = 50628, + [SMALL_STATE(977)] = 50652, + [SMALL_STATE(978)] = 50666, + [SMALL_STATE(979)] = 50680, + [SMALL_STATE(980)] = 50694, + [SMALL_STATE(981)] = 50708, + [SMALL_STATE(982)] = 50732, + [SMALL_STATE(983)] = 50746, + [SMALL_STATE(984)] = 50760, + [SMALL_STATE(985)] = 50774, + [SMALL_STATE(986)] = 50788, + [SMALL_STATE(987)] = 50802, + [SMALL_STATE(988)] = 50816, + [SMALL_STATE(989)] = 50836, + [SMALL_STATE(990)] = 50854, + [SMALL_STATE(991)] = 50876, + [SMALL_STATE(992)] = 50890, + [SMALL_STATE(993)] = 50908, + [SMALL_STATE(994)] = 50926, + [SMALL_STATE(995)] = 50940, + [SMALL_STATE(996)] = 50954, + [SMALL_STATE(997)] = 50972, + [SMALL_STATE(998)] = 50990, + [SMALL_STATE(999)] = 51012, + [SMALL_STATE(1000)] = 51030, + [SMALL_STATE(1001)] = 51044, + [SMALL_STATE(1002)] = 51068, + [SMALL_STATE(1003)] = 51092, + [SMALL_STATE(1004)] = 51106, + [SMALL_STATE(1005)] = 51130, + [SMALL_STATE(1006)] = 51148, + [SMALL_STATE(1007)] = 51166, + [SMALL_STATE(1008)] = 51180, + [SMALL_STATE(1009)] = 51198, + [SMALL_STATE(1010)] = 51212, + [SMALL_STATE(1011)] = 51234, + [SMALL_STATE(1012)] = 51248, + [SMALL_STATE(1013)] = 51262, + [SMALL_STATE(1014)] = 51282, + [SMALL_STATE(1015)] = 51298, + [SMALL_STATE(1016)] = 51316, + [SMALL_STATE(1017)] = 51330, + [SMALL_STATE(1018)] = 51343, + [SMALL_STATE(1019)] = 51368, + [SMALL_STATE(1020)] = 51387, + [SMALL_STATE(1021)] = 51410, + [SMALL_STATE(1022)] = 51433, + [SMALL_STATE(1023)] = 51456, + [SMALL_STATE(1024)] = 51481, + [SMALL_STATE(1025)] = 51506, + [SMALL_STATE(1026)] = 51531, + [SMALL_STATE(1027)] = 51552, + [SMALL_STATE(1028)] = 51571, + [SMALL_STATE(1029)] = 51590, + [SMALL_STATE(1030)] = 51607, + [SMALL_STATE(1031)] = 51626, + [SMALL_STATE(1032)] = 51641, + [SMALL_STATE(1033)] = 51658, + [SMALL_STATE(1034)] = 51677, + [SMALL_STATE(1035)] = 51694, + [SMALL_STATE(1036)] = 51717, + [SMALL_STATE(1037)] = 51740, + [SMALL_STATE(1038)] = 51763, + [SMALL_STATE(1039)] = 51778, + [SMALL_STATE(1040)] = 51803, + [SMALL_STATE(1041)] = 51822, + [SMALL_STATE(1042)] = 51845, + [SMALL_STATE(1043)] = 51864, + [SMALL_STATE(1044)] = 51877, + [SMALL_STATE(1045)] = 51896, + [SMALL_STATE(1046)] = 51909, + [SMALL_STATE(1047)] = 51922, + [SMALL_STATE(1048)] = 51947, + [SMALL_STATE(1049)] = 51966, + [SMALL_STATE(1050)] = 51989, + [SMALL_STATE(1051)] = 52014, + [SMALL_STATE(1052)] = 52033, + [SMALL_STATE(1053)] = 52046, + [SMALL_STATE(1054)] = 52059, + [SMALL_STATE(1055)] = 52072, + [SMALL_STATE(1056)] = 52095, + [SMALL_STATE(1057)] = 52114, + [SMALL_STATE(1058)] = 52127, + [SMALL_STATE(1059)] = 52149, + [SMALL_STATE(1060)] = 52165, + [SMALL_STATE(1061)] = 52179, + [SMALL_STATE(1062)] = 52199, + [SMALL_STATE(1063)] = 52221, + [SMALL_STATE(1064)] = 52237, + [SMALL_STATE(1065)] = 52255, + [SMALL_STATE(1066)] = 52273, + [SMALL_STATE(1067)] = 52291, + [SMALL_STATE(1068)] = 52307, + [SMALL_STATE(1069)] = 52321, + [SMALL_STATE(1070)] = 52339, + [SMALL_STATE(1071)] = 52355, + [SMALL_STATE(1072)] = 52375, + [SMALL_STATE(1073)] = 52389, + [SMALL_STATE(1074)] = 52409, + [SMALL_STATE(1075)] = 52431, + [SMALL_STATE(1076)] = 52449, + [SMALL_STATE(1077)] = 52465, + [SMALL_STATE(1078)] = 52485, + [SMALL_STATE(1079)] = 52503, + [SMALL_STATE(1080)] = 52525, + [SMALL_STATE(1081)] = 52547, + [SMALL_STATE(1082)] = 52561, + [SMALL_STATE(1083)] = 52581, + [SMALL_STATE(1084)] = 52599, + [SMALL_STATE(1085)] = 52611, + [SMALL_STATE(1086)] = 52627, + [SMALL_STATE(1087)] = 52649, + [SMALL_STATE(1088)] = 52665, + [SMALL_STATE(1089)] = 52679, + [SMALL_STATE(1090)] = 52693, + [SMALL_STATE(1091)] = 52713, + [SMALL_STATE(1092)] = 52725, + [SMALL_STATE(1093)] = 52747, + [SMALL_STATE(1094)] = 52764, + [SMALL_STATE(1095)] = 52781, + [SMALL_STATE(1096)] = 52798, + [SMALL_STATE(1097)] = 52813, + [SMALL_STATE(1098)] = 52824, + [SMALL_STATE(1099)] = 52841, + [SMALL_STATE(1100)] = 52858, + [SMALL_STATE(1101)] = 52877, + [SMALL_STATE(1102)] = 52894, + [SMALL_STATE(1103)] = 52911, + [SMALL_STATE(1104)] = 52922, + [SMALL_STATE(1105)] = 52933, + [SMALL_STATE(1106)] = 52950, + [SMALL_STATE(1107)] = 52965, + [SMALL_STATE(1108)] = 52984, + [SMALL_STATE(1109)] = 53001, + [SMALL_STATE(1110)] = 53020, + [SMALL_STATE(1111)] = 53037, + [SMALL_STATE(1112)] = 53052, + [SMALL_STATE(1113)] = 53071, + [SMALL_STATE(1114)] = 53090, + [SMALL_STATE(1115)] = 53109, + [SMALL_STATE(1116)] = 53126, + [SMALL_STATE(1117)] = 53141, + [SMALL_STATE(1118)] = 53158, + [SMALL_STATE(1119)] = 53173, + [SMALL_STATE(1120)] = 53192, + [SMALL_STATE(1121)] = 53207, + [SMALL_STATE(1122)] = 53226, + [SMALL_STATE(1123)] = 53243, + [SMALL_STATE(1124)] = 53260, + [SMALL_STATE(1125)] = 53277, + [SMALL_STATE(1126)] = 53292, + [SMALL_STATE(1127)] = 53309, + [SMALL_STATE(1128)] = 53326, + [SMALL_STATE(1129)] = 53343, + [SMALL_STATE(1130)] = 53362, + [SMALL_STATE(1131)] = 53381, + [SMALL_STATE(1132)] = 53397, + [SMALL_STATE(1133)] = 53413, + [SMALL_STATE(1134)] = 53423, + [SMALL_STATE(1135)] = 53437, + [SMALL_STATE(1136)] = 53451, + [SMALL_STATE(1137)] = 53467, + [SMALL_STATE(1138)] = 53477, + [SMALL_STATE(1139)] = 53493, + [SMALL_STATE(1140)] = 53509, + [SMALL_STATE(1141)] = 53525, + [SMALL_STATE(1142)] = 53539, + [SMALL_STATE(1143)] = 53555, + [SMALL_STATE(1144)] = 53571, + [SMALL_STATE(1145)] = 53587, + [SMALL_STATE(1146)] = 53597, + [SMALL_STATE(1147)] = 53611, + [SMALL_STATE(1148)] = 53627, + [SMALL_STATE(1149)] = 53643, + [SMALL_STATE(1150)] = 53659, + [SMALL_STATE(1151)] = 53675, + [SMALL_STATE(1152)] = 53691, + [SMALL_STATE(1153)] = 53705, + [SMALL_STATE(1154)] = 53719, + [SMALL_STATE(1155)] = 53735, + [SMALL_STATE(1156)] = 53751, + [SMALL_STATE(1157)] = 53767, + [SMALL_STATE(1158)] = 53783, + [SMALL_STATE(1159)] = 53799, + [SMALL_STATE(1160)] = 53815, + [SMALL_STATE(1161)] = 53825, + [SMALL_STATE(1162)] = 53839, + [SMALL_STATE(1163)] = 53853, + [SMALL_STATE(1164)] = 53867, + [SMALL_STATE(1165)] = 53883, + [SMALL_STATE(1166)] = 53899, + [SMALL_STATE(1167)] = 53915, + [SMALL_STATE(1168)] = 53929, + [SMALL_STATE(1169)] = 53945, + [SMALL_STATE(1170)] = 53959, + [SMALL_STATE(1171)] = 53975, + [SMALL_STATE(1172)] = 53991, + [SMALL_STATE(1173)] = 54005, + [SMALL_STATE(1174)] = 54021, + [SMALL_STATE(1175)] = 54035, + [SMALL_STATE(1176)] = 54049, + [SMALL_STATE(1177)] = 54063, + [SMALL_STATE(1178)] = 54079, + [SMALL_STATE(1179)] = 54095, + [SMALL_STATE(1180)] = 54109, + [SMALL_STATE(1181)] = 54121, + [SMALL_STATE(1182)] = 54135, + [SMALL_STATE(1183)] = 54149, + [SMALL_STATE(1184)] = 54165, + [SMALL_STATE(1185)] = 54179, + [SMALL_STATE(1186)] = 54193, + [SMALL_STATE(1187)] = 54207, + [SMALL_STATE(1188)] = 54223, + [SMALL_STATE(1189)] = 54239, + [SMALL_STATE(1190)] = 54255, + [SMALL_STATE(1191)] = 54271, + [SMALL_STATE(1192)] = 54287, + [SMALL_STATE(1193)] = 54299, + [SMALL_STATE(1194)] = 54313, + [SMALL_STATE(1195)] = 54327, + [SMALL_STATE(1196)] = 54341, + [SMALL_STATE(1197)] = 54357, + [SMALL_STATE(1198)] = 54373, + [SMALL_STATE(1199)] = 54387, + [SMALL_STATE(1200)] = 54403, + [SMALL_STATE(1201)] = 54419, + [SMALL_STATE(1202)] = 54435, + [SMALL_STATE(1203)] = 54451, + [SMALL_STATE(1204)] = 54465, + [SMALL_STATE(1205)] = 54479, + [SMALL_STATE(1206)] = 54493, + [SMALL_STATE(1207)] = 54509, + [SMALL_STATE(1208)] = 54525, + [SMALL_STATE(1209)] = 54539, + [SMALL_STATE(1210)] = 54555, + [SMALL_STATE(1211)] = 54569, + [SMALL_STATE(1212)] = 54583, + [SMALL_STATE(1213)] = 54593, + [SMALL_STATE(1214)] = 54609, + [SMALL_STATE(1215)] = 54622, + [SMALL_STATE(1216)] = 54631, + [SMALL_STATE(1217)] = 54644, + [SMALL_STATE(1218)] = 54655, + [SMALL_STATE(1219)] = 54668, + [SMALL_STATE(1220)] = 54681, + [SMALL_STATE(1221)] = 54694, + [SMALL_STATE(1222)] = 54707, + [SMALL_STATE(1223)] = 54720, + [SMALL_STATE(1224)] = 54733, + [SMALL_STATE(1225)] = 54746, + [SMALL_STATE(1226)] = 54757, + [SMALL_STATE(1227)] = 54770, + [SMALL_STATE(1228)] = 54783, + [SMALL_STATE(1229)] = 54796, + [SMALL_STATE(1230)] = 54809, + [SMALL_STATE(1231)] = 54822, + [SMALL_STATE(1232)] = 54835, + [SMALL_STATE(1233)] = 54844, + [SMALL_STATE(1234)] = 54857, + [SMALL_STATE(1235)] = 54870, + [SMALL_STATE(1236)] = 54883, + [SMALL_STATE(1237)] = 54896, + [SMALL_STATE(1238)] = 54909, + [SMALL_STATE(1239)] = 54922, + [SMALL_STATE(1240)] = 54935, + [SMALL_STATE(1241)] = 54944, + [SMALL_STATE(1242)] = 54957, + [SMALL_STATE(1243)] = 54966, + [SMALL_STATE(1244)] = 54975, + [SMALL_STATE(1245)] = 54988, + [SMALL_STATE(1246)] = 54997, + [SMALL_STATE(1247)] = 55010, + [SMALL_STATE(1248)] = 55023, + [SMALL_STATE(1249)] = 55036, + [SMALL_STATE(1250)] = 55049, + [SMALL_STATE(1251)] = 55062, + [SMALL_STATE(1252)] = 55075, + [SMALL_STATE(1253)] = 55088, + [SMALL_STATE(1254)] = 55099, + [SMALL_STATE(1255)] = 55112, + [SMALL_STATE(1256)] = 55121, + [SMALL_STATE(1257)] = 55132, + [SMALL_STATE(1258)] = 55145, + [SMALL_STATE(1259)] = 55158, + [SMALL_STATE(1260)] = 55171, + [SMALL_STATE(1261)] = 55184, + [SMALL_STATE(1262)] = 55197, + [SMALL_STATE(1263)] = 55210, + [SMALL_STATE(1264)] = 55223, + [SMALL_STATE(1265)] = 55236, + [SMALL_STATE(1266)] = 55249, + [SMALL_STATE(1267)] = 55262, + [SMALL_STATE(1268)] = 55275, + [SMALL_STATE(1269)] = 55288, + [SMALL_STATE(1270)] = 55301, + [SMALL_STATE(1271)] = 55314, + [SMALL_STATE(1272)] = 55327, + [SMALL_STATE(1273)] = 55340, + [SMALL_STATE(1274)] = 55353, + [SMALL_STATE(1275)] = 55366, + [SMALL_STATE(1276)] = 55379, + [SMALL_STATE(1277)] = 55388, + [SMALL_STATE(1278)] = 55401, + [SMALL_STATE(1279)] = 55410, + [SMALL_STATE(1280)] = 55423, + [SMALL_STATE(1281)] = 55436, + [SMALL_STATE(1282)] = 55449, + [SMALL_STATE(1283)] = 55462, + [SMALL_STATE(1284)] = 55475, + [SMALL_STATE(1285)] = 55488, + [SMALL_STATE(1286)] = 55501, + [SMALL_STATE(1287)] = 55514, + [SMALL_STATE(1288)] = 55527, + [SMALL_STATE(1289)] = 55540, + [SMALL_STATE(1290)] = 55553, + [SMALL_STATE(1291)] = 55566, + [SMALL_STATE(1292)] = 55579, + [SMALL_STATE(1293)] = 55592, + [SMALL_STATE(1294)] = 55605, + [SMALL_STATE(1295)] = 55618, + [SMALL_STATE(1296)] = 55631, + [SMALL_STATE(1297)] = 55644, + [SMALL_STATE(1298)] = 55657, + [SMALL_STATE(1299)] = 55668, + [SMALL_STATE(1300)] = 55681, + [SMALL_STATE(1301)] = 55694, + [SMALL_STATE(1302)] = 55707, + [SMALL_STATE(1303)] = 55716, + [SMALL_STATE(1304)] = 55727, + [SMALL_STATE(1305)] = 55738, + [SMALL_STATE(1306)] = 55751, + [SMALL_STATE(1307)] = 55762, + [SMALL_STATE(1308)] = 55775, + [SMALL_STATE(1309)] = 55788, + [SMALL_STATE(1310)] = 55801, + [SMALL_STATE(1311)] = 55810, + [SMALL_STATE(1312)] = 55823, + [SMALL_STATE(1313)] = 55836, + [SMALL_STATE(1314)] = 55849, + [SMALL_STATE(1315)] = 55862, + [SMALL_STATE(1316)] = 55875, + [SMALL_STATE(1317)] = 55886, + [SMALL_STATE(1318)] = 55899, + [SMALL_STATE(1319)] = 55910, + [SMALL_STATE(1320)] = 55923, + [SMALL_STATE(1321)] = 55936, + [SMALL_STATE(1322)] = 55949, + [SMALL_STATE(1323)] = 55962, + [SMALL_STATE(1324)] = 55975, + [SMALL_STATE(1325)] = 55988, + [SMALL_STATE(1326)] = 56001, + [SMALL_STATE(1327)] = 56014, + [SMALL_STATE(1328)] = 56027, + [SMALL_STATE(1329)] = 56040, + [SMALL_STATE(1330)] = 56051, + [SMALL_STATE(1331)] = 56062, + [SMALL_STATE(1332)] = 56075, + [SMALL_STATE(1333)] = 56086, + [SMALL_STATE(1334)] = 56099, + [SMALL_STATE(1335)] = 56112, + [SMALL_STATE(1336)] = 56125, + [SMALL_STATE(1337)] = 56138, + [SMALL_STATE(1338)] = 56149, + [SMALL_STATE(1339)] = 56160, + [SMALL_STATE(1340)] = 56169, + [SMALL_STATE(1341)] = 56182, + [SMALL_STATE(1342)] = 56193, + [SMALL_STATE(1343)] = 56204, + [SMALL_STATE(1344)] = 56213, + [SMALL_STATE(1345)] = 56222, + [SMALL_STATE(1346)] = 56235, + [SMALL_STATE(1347)] = 56245, + [SMALL_STATE(1348)] = 56255, + [SMALL_STATE(1349)] = 56263, + [SMALL_STATE(1350)] = 56271, + [SMALL_STATE(1351)] = 56281, + [SMALL_STATE(1352)] = 56289, + [SMALL_STATE(1353)] = 56297, + [SMALL_STATE(1354)] = 56305, + [SMALL_STATE(1355)] = 56315, + [SMALL_STATE(1356)] = 56323, + [SMALL_STATE(1357)] = 56333, + [SMALL_STATE(1358)] = 56341, + [SMALL_STATE(1359)] = 56349, + [SMALL_STATE(1360)] = 56359, + [SMALL_STATE(1361)] = 56367, + [SMALL_STATE(1362)] = 56377, + [SMALL_STATE(1363)] = 56385, + [SMALL_STATE(1364)] = 56393, + [SMALL_STATE(1365)] = 56401, + [SMALL_STATE(1366)] = 56411, + [SMALL_STATE(1367)] = 56419, + [SMALL_STATE(1368)] = 56427, + [SMALL_STATE(1369)] = 56437, + [SMALL_STATE(1370)] = 56445, + [SMALL_STATE(1371)] = 56455, + [SMALL_STATE(1372)] = 56465, + [SMALL_STATE(1373)] = 56473, + [SMALL_STATE(1374)] = 56483, + [SMALL_STATE(1375)] = 56491, + [SMALL_STATE(1376)] = 56499, + [SMALL_STATE(1377)] = 56507, + [SMALL_STATE(1378)] = 56515, + [SMALL_STATE(1379)] = 56525, + [SMALL_STATE(1380)] = 56533, + [SMALL_STATE(1381)] = 56541, + [SMALL_STATE(1382)] = 56549, + [SMALL_STATE(1383)] = 56557, + [SMALL_STATE(1384)] = 56565, + [SMALL_STATE(1385)] = 56575, + [SMALL_STATE(1386)] = 56585, + [SMALL_STATE(1387)] = 56593, + [SMALL_STATE(1388)] = 56601, + [SMALL_STATE(1389)] = 56611, + [SMALL_STATE(1390)] = 56621, + [SMALL_STATE(1391)] = 56629, + [SMALL_STATE(1392)] = 56639, + [SMALL_STATE(1393)] = 56649, + [SMALL_STATE(1394)] = 56659, + [SMALL_STATE(1395)] = 56667, + [SMALL_STATE(1396)] = 56677, + [SMALL_STATE(1397)] = 56685, + [SMALL_STATE(1398)] = 56695, + [SMALL_STATE(1399)] = 56703, + [SMALL_STATE(1400)] = 56711, + [SMALL_STATE(1401)] = 56719, + [SMALL_STATE(1402)] = 56729, + [SMALL_STATE(1403)] = 56739, + [SMALL_STATE(1404)] = 56749, + [SMALL_STATE(1405)] = 56757, + [SMALL_STATE(1406)] = 56765, + [SMALL_STATE(1407)] = 56773, + [SMALL_STATE(1408)] = 56783, + [SMALL_STATE(1409)] = 56791, + [SMALL_STATE(1410)] = 56799, + [SMALL_STATE(1411)] = 56807, + [SMALL_STATE(1412)] = 56815, + [SMALL_STATE(1413)] = 56822, + [SMALL_STATE(1414)] = 56829, + [SMALL_STATE(1415)] = 56836, + [SMALL_STATE(1416)] = 56843, + [SMALL_STATE(1417)] = 56850, + [SMALL_STATE(1418)] = 56857, + [SMALL_STATE(1419)] = 56864, + [SMALL_STATE(1420)] = 56871, + [SMALL_STATE(1421)] = 56878, + [SMALL_STATE(1422)] = 56885, + [SMALL_STATE(1423)] = 56892, + [SMALL_STATE(1424)] = 56899, + [SMALL_STATE(1425)] = 56906, + [SMALL_STATE(1426)] = 56913, + [SMALL_STATE(1427)] = 56920, + [SMALL_STATE(1428)] = 56927, + [SMALL_STATE(1429)] = 56934, + [SMALL_STATE(1430)] = 56941, + [SMALL_STATE(1431)] = 56948, + [SMALL_STATE(1432)] = 56955, + [SMALL_STATE(1433)] = 56962, + [SMALL_STATE(1434)] = 56969, + [SMALL_STATE(1435)] = 56976, + [SMALL_STATE(1436)] = 56983, + [SMALL_STATE(1437)] = 56990, + [SMALL_STATE(1438)] = 56997, + [SMALL_STATE(1439)] = 57004, + [SMALL_STATE(1440)] = 57011, + [SMALL_STATE(1441)] = 57018, + [SMALL_STATE(1442)] = 57025, + [SMALL_STATE(1443)] = 57032, + [SMALL_STATE(1444)] = 57039, + [SMALL_STATE(1445)] = 57046, + [SMALL_STATE(1446)] = 57053, + [SMALL_STATE(1447)] = 57060, + [SMALL_STATE(1448)] = 57067, + [SMALL_STATE(1449)] = 57074, + [SMALL_STATE(1450)] = 57081, + [SMALL_STATE(1451)] = 57088, + [SMALL_STATE(1452)] = 57095, + [SMALL_STATE(1453)] = 57102, + [SMALL_STATE(1454)] = 57109, + [SMALL_STATE(1455)] = 57116, + [SMALL_STATE(1456)] = 57123, + [SMALL_STATE(1457)] = 57130, + [SMALL_STATE(1458)] = 57137, + [SMALL_STATE(1459)] = 57144, + [SMALL_STATE(1460)] = 57151, + [SMALL_STATE(1461)] = 57158, + [SMALL_STATE(1462)] = 57165, + [SMALL_STATE(1463)] = 57172, + [SMALL_STATE(1464)] = 57179, + [SMALL_STATE(1465)] = 57186, + [SMALL_STATE(1466)] = 57193, + [SMALL_STATE(1467)] = 57200, + [SMALL_STATE(1468)] = 57207, + [SMALL_STATE(1469)] = 57214, + [SMALL_STATE(1470)] = 57221, + [SMALL_STATE(1471)] = 57228, + [SMALL_STATE(1472)] = 57235, + [SMALL_STATE(1473)] = 57242, + [SMALL_STATE(1474)] = 57249, + [SMALL_STATE(1475)] = 57256, + [SMALL_STATE(1476)] = 57263, + [SMALL_STATE(1477)] = 57270, + [SMALL_STATE(1478)] = 57277, + [SMALL_STATE(1479)] = 57284, + [SMALL_STATE(1480)] = 57291, + [SMALL_STATE(1481)] = 57298, + [SMALL_STATE(1482)] = 57305, + [SMALL_STATE(1483)] = 57312, + [SMALL_STATE(1484)] = 57319, + [SMALL_STATE(1485)] = 57326, + [SMALL_STATE(1486)] = 57333, + [SMALL_STATE(1487)] = 57340, + [SMALL_STATE(1488)] = 57347, + [SMALL_STATE(1489)] = 57354, + [SMALL_STATE(1490)] = 57361, + [SMALL_STATE(1491)] = 57368, + [SMALL_STATE(1492)] = 57375, + [SMALL_STATE(1493)] = 57382, + [SMALL_STATE(1494)] = 57389, + [SMALL_STATE(1495)] = 57396, + [SMALL_STATE(1496)] = 57403, + [SMALL_STATE(1497)] = 57410, + [SMALL_STATE(1498)] = 57417, + [SMALL_STATE(1499)] = 57424, + [SMALL_STATE(1500)] = 57431, + [SMALL_STATE(1501)] = 57438, + [SMALL_STATE(1502)] = 57445, + [SMALL_STATE(1503)] = 57452, + [SMALL_STATE(1504)] = 57459, + [SMALL_STATE(1505)] = 57466, + [SMALL_STATE(1506)] = 57473, + [SMALL_STATE(1507)] = 57480, + [SMALL_STATE(1508)] = 57487, + [SMALL_STATE(1509)] = 57494, + [SMALL_STATE(1510)] = 57501, + [SMALL_STATE(1511)] = 57508, + [SMALL_STATE(1512)] = 57515, + [SMALL_STATE(1513)] = 57522, + [SMALL_STATE(1514)] = 57529, + [SMALL_STATE(1515)] = 57536, + [SMALL_STATE(1516)] = 57543, + [SMALL_STATE(1517)] = 57550, + [SMALL_STATE(1518)] = 57557, + [SMALL_STATE(1519)] = 57564, + [SMALL_STATE(1520)] = 57571, + [SMALL_STATE(1521)] = 57578, + [SMALL_STATE(1522)] = 57585, + [SMALL_STATE(1523)] = 57592, + [SMALL_STATE(1524)] = 57599, + [SMALL_STATE(1525)] = 57606, + [SMALL_STATE(1526)] = 57613, + [SMALL_STATE(1527)] = 57620, + [SMALL_STATE(1528)] = 57627, + [SMALL_STATE(1529)] = 57634, + [SMALL_STATE(1530)] = 57641, + [SMALL_STATE(1531)] = 57648, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(330), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1130), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1016), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(164), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(393), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(75), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(394), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(201), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(231), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(181), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1345), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1346), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1349), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(424), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(254), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(604), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(423), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1495), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(298), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(70), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(719), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(159), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(166), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(406), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1516), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1510), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1509), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(278), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(284), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1498), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(417), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(419), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(890), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(180), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(797), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(797), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(131), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(952), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(400), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(247), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(602), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(404), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1512), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(296), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(71), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1511), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1508), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [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(367), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(267), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(316), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1502), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 8), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 140), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 140), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 121), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 121), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 100), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 100), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 96), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 96), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 96), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 96), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 70), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 70), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 104), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 104), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(335), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(416), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(402), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(383), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 102), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 102), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 102), SHIFT_REPEAT(484), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 102), SHIFT_REPEAT(412), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 155), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 155), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 129), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 129), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 146), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 146), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 146), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 146), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 155), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 155), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 160), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 160), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 160), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 160), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 129), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 129), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(849), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(852), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 124), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 124), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 107), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 107), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, .production_id = 133), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, .production_id = 133), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 156), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 156), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 148), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 148), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 149), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 149), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 138), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 138), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 143), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 143), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 86), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 86), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 141), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 141), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 159), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 159), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 158), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 158), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 154), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 154), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 153), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 153), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 152), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 152), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 145), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 145), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 105), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 105), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 108), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 108), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 103), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 103), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 151), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 151), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 136), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 136), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 150), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 150), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 88), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 88), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 106), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 106), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 127), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 127), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 125), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 125), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 123), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 123), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 115), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 115), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 113), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 113), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(944), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 61), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 61), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 92), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 92), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, .production_id = 25), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, .production_id = 25), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 92), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 92), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(934), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(952), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 16), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 16), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 16), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 7), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 7), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 7), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 50), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 24), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 126), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 126), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 16), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 125), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 125), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 7), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 101), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 144), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 144), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 40), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 40), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 96), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 96), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 96), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 96), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 69), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 69), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 69), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 69), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 81), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 81), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 56), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 56), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(381), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(393), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 77), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 77), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 76), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 76), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 105), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 105), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 70), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(416), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 28), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 98), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 10), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 29), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(432), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 68), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 70), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 103), SHIFT_REPEAT(484), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 56), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 56), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 159), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 159), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 81), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 81), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 133), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 133), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 133), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 133), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 150), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 150), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 150), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 150), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 159), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 159), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 164), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 164), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 164), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 164), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 81), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 81), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 56), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 56), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 77), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 77), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 146), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 146), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 54), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 54), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 80), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 80), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 132), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 132), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 128), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 128), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 108), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 108), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 81), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 81), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 152), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 152), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 153), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 153), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 56), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 56), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, 0, 137), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, 0, 137), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, 0, 160), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, 0, 160), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 81), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 81), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 91), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 91), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 79), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 79), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 81), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 81), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 109), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 109), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 56), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 56), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 163), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 163), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 162), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 162), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 57), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 57), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 157), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 157), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 156), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 156), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 82), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 82), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 158), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 158), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 131), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 131), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 130), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 130), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 129), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 129), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 127), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 127), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 140), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 140), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 155), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 155), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 154), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 154), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 59), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 59), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 60), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 60), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 149), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 149), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 107), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 107), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 75), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 75), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 148), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 148), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 142), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 142), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 56), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 56), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 147), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 147), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 87), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 87), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 145), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 145), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 89), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 89), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 90), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 90), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 106), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 106), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 64), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 64), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 24), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 50), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(923), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 20), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 20), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 2), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 2), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 93), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 93), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 61), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 61), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 61), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 61), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 31), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 31), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 25), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 25), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 61), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 61), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 93), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 93), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 67), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 67), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 61), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 61), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 31), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 31), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 25), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 25), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 31), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 31), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 67), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 67), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 31), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 31), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 25), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 25), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 39), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 39), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(702), - [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1446), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(702), - [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(676), - [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(696), - [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1436), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(696), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(673), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), - [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(607), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(722), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1494), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(722), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(669), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 34), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(680), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1430), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(680), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(670), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(722), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1514), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(722), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(668), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(690), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1422), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(690), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(679), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), SHIFT_REPEAT(608), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 33), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 25), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 25), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 31), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(686), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1449), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(686), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(672), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 34), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(707), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1433), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(707), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(669), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 16), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 10), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 10), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1445), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(182), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(178), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1031), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1031), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 109), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(866), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(390), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1416), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(601), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 135), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 135), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 135), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 130), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 121), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 135), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 135), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 131), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 140), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 135), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 135), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(245), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 147), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(280), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 100), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1055), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1055), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1477), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(417), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(859), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 118), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 94), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 134), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 119), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(244), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 110), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 139), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(230), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(183), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1117), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 93), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 87), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1490), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 132), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(480), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(483), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1165), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(351), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1312), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(147), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(905), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(222), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(275), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1317), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 111), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 112), SHIFT_REPEAT(1020), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 112), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(903), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(902), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(863), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 97), SHIFT_REPEAT(314), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 97), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1353), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 85), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 98), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 99), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 91), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 85), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 157), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3187] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 10), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 10), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 35), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 35), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), SHIFT(178), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 7), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 39), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 39), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 27), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 27), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 66), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 66), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(181), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(990), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(990), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 32), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 32), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 31), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 83), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, 0, 110), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 14), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), + [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4, 0, 0), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, 0, 139), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6, 0, 0), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, 0, 139), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, 0, 139), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, 0, 139), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, 0, 139), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5, 0, 0), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, 0, 139), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 101), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 16), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, 0, 151), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4, 0, 0), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(299), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 144), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 125), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, 0, 139), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, 0, 135), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 126), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, 0, 134), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(255), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 66), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 11), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 31), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 32), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 62), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 15), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 10), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 43), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 43), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 10), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 122), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 43), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 43), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 98), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 43), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 43), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, 0, 112), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 68), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 43), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 43), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 35), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, 0, 138), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, 0, 6), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 22), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 6), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, 0, 11), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, 0, 113), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 0, 63), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 94), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 30), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, 0, 88), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 16), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 31), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), SHIFT_REPEAT(237), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 143), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 124), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 123), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 53), + [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(253), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 27), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 35), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 6), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), SHIFT_REPEAT(483), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 49), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 84), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(375), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 136), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 7), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1322), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, 0, 23), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 23), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, 0, 23), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 65), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 15), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 29), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 28), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 16), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 22), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, -1, 58), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 37), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1391), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 45), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 115), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), SHIFT_REPEAT(269), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), + [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), SHIFT_REPEAT(1030), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 116), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1227), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), SHIFT_REPEAT(254), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 97), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), + [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), SHIFT_REPEAT(219), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 15), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1, 0, 0), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 86), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, 0, 11), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, 0, 62), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 85), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1, 0, 0), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 5), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 92), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 67), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 99), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 100), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, 0, 161), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 31), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 86), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, 0, 114), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, 0, 111), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, 0, 111), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 48), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 47), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 46), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 38), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 39), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 23), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3201] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__newline = 0, + ts_external_token__indent = 1, + ts_external_token__dedent = 2, + ts_external_token__string_start = 3, + ts_external_token__string_content = 4, + ts_external_token__string_end = 5, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__newline] = sym__newline, + [ts_external_token__indent] = sym__indent, + [ts_external_token__dedent] = sym__dedent, + [ts_external_token__string_start] = sym__string_start, + [ts_external_token__string_content] = sym__string_content, + [ts_external_token__string_end] = sym__string_end, +}; + +static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + [ts_external_token__string_start] = true, + [ts_external_token__string_content] = true, + [ts_external_token__string_end] = true, + }, + [2] = { + [ts_external_token__string_start] = true, + }, + [3] = { + [ts_external_token__dedent] = true, + [ts_external_token__string_start] = true, + }, + [4] = { + [ts_external_token__newline] = true, + [ts_external_token__string_start] = true, + }, + [5] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__string_start] = true, + }, + [6] = { + [ts_external_token__newline] = true, + }, + [7] = { + [ts_external_token__string_content] = true, + [ts_external_token__string_end] = true, + }, }; #ifdef __cplusplus @@ -76454,11 +74274,15 @@ bool tree_sitter_python_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_python_external_scanner_serialize(void *, char *); void tree_sitter_python_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_python(void) { +TS_PUBLIC const TSLanguage *tree_sitter_python(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/python/extractor/tsg-python/tsp/src/tree_sitter/alloc.h b/python/extractor/tsg-python/tsp/src/tree_sitter/alloc.h new file mode 100644 index 000000000000..1abdd1201578 --- /dev/null +++ b/python/extractor/tsg-python/tsp/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/python/extractor/tsg-python/tsp/src/tree_sitter/array.h b/python/extractor/tsg-python/tsp/src/tree_sitter/array.h new file mode 100644 index 000000000000..15a3b233bbb8 --- /dev/null +++ b/python/extractor/tsg-python/tsp/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h b/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h index 2b14ac1046bb..799f599bd4e2 100644 --- a/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h +++ b/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -48,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -87,6 +87,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -126,13 +131,38 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(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]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -148,6 +178,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -166,7 +207,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +217,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +225,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -197,14 +238,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/python/ql/lib/change-notes/2024-10-09-type-parameter-defaults.md b/python/ql/lib/change-notes/2024-10-09-type-parameter-defaults.md new file mode 100644 index 000000000000..9c9ba7ee0371 --- /dev/null +++ b/python/ql/lib/change-notes/2024-10-09-type-parameter-defaults.md @@ -0,0 +1,5 @@ +--- +category: minorAnalysis +--- + +- Added support for type parameter defaults, as specified in [PEP-696](https://peps.python.org/pep-0696/). diff --git a/python/ql/lib/semmle/python/AstGenerated.qll b/python/ql/lib/semmle/python/AstGenerated.qll index 1550095b3952..e672cda001dd 100644 --- a/python/ql/lib/semmle/python/AstGenerated.qll +++ b/python/ql/lib/semmle/python/AstGenerated.qll @@ -1126,6 +1126,9 @@ class ParamSpec_ extends @py_ParamSpec, TypeParameter { /** Gets the name of this parameter spec. */ Expr getName() { py_exprs(result, _, this, 1) } + /** Gets the default of this parameter spec. */ + Expr getDefault() { py_exprs(result, _, this, 2) } + override string toString() { result = "ParamSpec" } } @@ -1466,6 +1469,9 @@ class TypeVar_ extends @py_TypeVar, TypeParameter { /** Gets the bound of this type variable. */ Expr getBound() { py_exprs(result, _, this, 2) } + /** Gets the default of this type variable. */ + Expr getDefault() { py_exprs(result, _, this, 3) } + override string toString() { result = "TypeVar" } } @@ -1474,6 +1480,9 @@ class TypeVarTuple_ extends @py_TypeVarTuple, TypeParameter { /** Gets the name of this type variable tuple. */ Expr getName() { py_exprs(result, _, this, 1) } + /** Gets the default of this type variable tuple. */ + Expr getDefault() { py_exprs(result, _, this, 2) } + override string toString() { result = "TypeVarTuple" } } diff --git a/python/ql/lib/semmlecode.python.dbscheme b/python/ql/lib/semmlecode.python.dbscheme index 728c6d65e61d..5af903da088e 100644 --- a/python/ql/lib/semmlecode.python.dbscheme +++ b/python/ql/lib/semmlecode.python.dbscheme @@ -617,6 +617,7 @@ py_extracted_version(int module : @py_Module ref, /* ParamSpec.location = 0, location */ /* ParamSpec.name = 1, expr */ +/* ParamSpec.default = 2, expr */ /* Pass.location = 0, location */ @@ -715,9 +716,11 @@ py_extracted_version(int module : @py_Module ref, /* TypeVar.location = 0, location */ /* TypeVar.name = 1, expr */ /* TypeVar.bound = 2, expr */ +/* TypeVar.default = 3, expr */ /* TypeVarTuple.location = 0, location */ /* TypeVarTuple.name = 1, expr */ +/* TypeVarTuple.default = 2, expr */ /* UnaryExpr.location = 0, location */ /* UnaryExpr.parenthesised = 1, bool */ diff --git a/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/old.dbscheme b/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/old.dbscheme new file mode 100644 index 000000000000..728c6d65e61d --- /dev/null +++ b/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/old.dbscheme @@ -0,0 +1,1233 @@ +/* + * This dbscheme is auto-generated by 'semmle/dbscheme_gen.py'. + * WARNING: Any modifications to this file will be lost. + * Relations can be changed by modifying master.py or + * by adding rules to dbscheme.template + */ + +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2020-07-02 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/*- DEPRECATED: External defects and metrics -*/ + +externalDefects( + unique int id : @externalDefect, + varchar(900) queryPath : string ref, + int location : @location ref, + varchar(900) message : string ref, + float severity : float ref +); + +externalMetrics( + unique int id : @externalMetric, + varchar(900) queryPath : string ref, + int location : @location ref, + float value : float ref +); + +/*- External data -*/ + +/** + * External data, loaded from CSV files during snapshot creation. See + * [Tutorial: Incorporating external data](https://help.semmle.com/wiki/display/SD/Tutorial%3A+Incorporating+external+data) + * for more information. + */ +externalData( + int id : @externalDataElement, + string path : string ref, + int column: int ref, + string value : string ref +); + +/*- DEPRECATED: Snapshot date -*/ + +snapshotDate(unique date snapshotDate : date ref); + +/*- Source location prefix -*/ + +/** + * The source location of the snapshot. + */ +sourceLocationPrefix(string prefix : string ref); + +/*- DEPRECATED: Duplicate code -*/ + +duplicateCode( + unique int id : @duplication, + string relativePath : string ref, + int equivClass : int ref +); + +similarCode( + unique int id : @similarity, + string relativePath : string ref, + int equivClass : int ref +); + +@duplication_or_similarity = @duplication | @similarity + +tokens( + int id : @duplication_or_similarity ref, + int offset : int ref, + int beginLine : int ref, + int beginColumn : int ref, + int endLine : int ref, + int endColumn : int ref +); + +/*- DEPRECATED: Version control data -*/ + +svnentries( + unique int id : @svnentry, + string revision : string ref, + string author : string ref, + date revisionDate : date ref, + int changeSize : int ref +) + +svnaffectedfiles( + int id : @svnentry ref, + int file : @file ref, + string action : string ref +) + +svnentrymsg( + unique int id : @svnentry ref, + string message : string ref +) + +svnchurn( + int commit : @svnentry ref, + int file : @file ref, + int addedLines : int ref, + int deletedLines : int ref +) + +/*- Lines of code -*/ + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref +); + +/*- Files and folders -*/ + +/** + * The location of an element. + * The location spans column `startcolumn` of line `startline` to + * column `endcolumn` of line `endline` in file `file`. + * For more information, see + * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/). + */ +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref +); + +files( + unique int id: @file, + string name: string ref +); + +folders( + unique int id: @folder, + string name: string ref +); + +@container = @file | @folder + +containerparent( + int parent: @container ref, + unique int child: @container ref +); + +/*- XML Files -*/ + +xmlEncoding( + unique int id: @file ref, + string encoding: string ref +); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref +); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref +); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref +); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref +); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref +); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref +); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref +); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref +); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/*- YAML -*/ + +#keyset[parent, idx] +yaml (unique int id: @yaml_node, + int kind: int ref, + int parent: @yaml_node_parent ref, + int idx: int ref, + string tag: string ref, + string tostring: string ref); + +case @yaml_node.kind of + 0 = @yaml_scalar_node +| 1 = @yaml_mapping_node +| 2 = @yaml_sequence_node +| 3 = @yaml_alias_node +; + +@yaml_collection_node = @yaml_mapping_node | @yaml_sequence_node; + +@yaml_node_parent = @yaml_collection_node | @file; + +yaml_anchors (unique int node: @yaml_node ref, + string anchor: string ref); + +yaml_aliases (unique int alias: @yaml_alias_node ref, + string target: string ref); + +yaml_scalars (unique int scalar: @yaml_scalar_node ref, + int style: int ref, + string value: string ref); + +yaml_errors (unique int id: @yaml_error, + string message: string ref); + +yaml_locations(unique int locatable: @yaml_locatable ref, + int location: @location_default ref); + +@yaml_locatable = @yaml_node | @yaml_error; + +/*- Python dbscheme -*/ + +/* + * Line metrics + */ +py_codelines(int id : @py_scope ref, + int count : int ref); + +py_commentlines(int id : @py_scope ref, + int count : int ref); + +py_docstringlines(int id : @py_scope ref, + int count : int ref); + +py_alllines(int id : @py_scope ref, + int count : int ref); + +/**************************** + Python dbscheme +****************************/ + +@sourceline = @file | @py_Module | @xmllocatable; + +@location = @location_ast | @location_default ; + +locations_ast(unique int id: @location_ast, + int module: @py_Module ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +file_contents(unique int file: @file ref, string contents: string ref); + +py_module_path(int module: @py_Module ref, int file: @container ref); + +variable(unique int id : @py_variable, + int scope : @py_scope ref, + varchar(1) name : string ref); + +py_line_lengths(unique int id : @py_line, + int file: @py_Module ref, + int line : int ref, + int length : int ref); + +py_extracted_version(int module : @py_Module ref, + varchar(1) version : string ref); + +/* AUTO GENERATED PART STARTS HERE */ + + +/* AnnAssign.location = 0, location */ +/* AnnAssign.value = 1, expr */ +/* AnnAssign.annotation = 2, expr */ +/* AnnAssign.target = 3, expr */ + +/* Assert.location = 0, location */ +/* Assert.test = 1, expr */ +/* Assert.msg = 2, expr */ + +/* Assign.location = 0, location */ +/* Assign.value = 1, expr */ +/* Assign.targets = 2, expr_list */ + +/* AssignExpr.location = 0, location */ +/* AssignExpr.parenthesised = 1, bool */ +/* AssignExpr.value = 2, expr */ +/* AssignExpr.target = 3, expr */ + +/* Attribute.location = 0, location */ +/* Attribute.parenthesised = 1, bool */ +/* Attribute.value = 2, expr */ +/* Attribute.attr = 3, str */ +/* Attribute.ctx = 4, expr_context */ + +/* AugAssign.location = 0, location */ +/* AugAssign.operation = 1, BinOp */ + +/* Await.location = 0, location */ +/* Await.parenthesised = 1, bool */ +/* Await.value = 2, expr */ + +/* BinaryExpr.location = 0, location */ +/* BinaryExpr.parenthesised = 1, bool */ +/* BinaryExpr.left = 2, expr */ +/* BinaryExpr.op = 3, operator */ +/* BinaryExpr.right = 4, expr */ +/* BinaryExpr = AugAssign */ + +/* BoolExpr.location = 0, location */ +/* BoolExpr.parenthesised = 1, bool */ +/* BoolExpr.op = 2, boolop */ +/* BoolExpr.values = 3, expr_list */ + +/* Break.location = 0, location */ + +/* Bytes.location = 0, location */ +/* Bytes.parenthesised = 1, bool */ +/* Bytes.s = 2, bytes */ +/* Bytes.prefix = 3, bytes */ +/* Bytes.implicitly_concatenated_parts = 4, StringPart_list */ + +/* Call.location = 0, location */ +/* Call.parenthesised = 1, bool */ +/* Call.func = 2, expr */ +/* Call.positional_args = 3, expr_list */ +/* Call.named_args = 4, dict_item_list */ + +/* Case.location = 0, location */ +/* Case.pattern = 1, pattern */ +/* Case.guard = 2, expr */ +/* Case.body = 3, stmt_list */ + +/* Class.name = 0, str */ +/* Class.body = 1, stmt_list */ +/* Class = ClassExpr */ + +/* ClassExpr.location = 0, location */ +/* ClassExpr.parenthesised = 1, bool */ +/* ClassExpr.name = 2, str */ +/* ClassExpr.bases = 3, expr_list */ +/* ClassExpr.keywords = 4, dict_item_list */ +/* ClassExpr.inner_scope = 5, Class */ +/* ClassExpr.type_parameters = 6, type_parameter_list */ + +/* Compare.location = 0, location */ +/* Compare.parenthesised = 1, bool */ +/* Compare.left = 2, expr */ +/* Compare.ops = 3, cmpop_list */ +/* Compare.comparators = 4, expr_list */ + +/* Continue.location = 0, location */ + +/* Delete.location = 0, location */ +/* Delete.targets = 1, expr_list */ + +/* Dict.location = 0, location */ +/* Dict.parenthesised = 1, bool */ +/* Dict.items = 2, dict_item_list */ + +/* DictComp.location = 0, location */ +/* DictComp.parenthesised = 1, bool */ +/* DictComp.function = 2, Function */ +/* DictComp.iterable = 3, expr */ + +/* DictUnpacking.location = 0, location */ +/* DictUnpacking.value = 1, expr */ + +/* Ellipsis.location = 0, location */ +/* Ellipsis.parenthesised = 1, bool */ + +/* ExceptGroupStmt.location = 0, location */ +/* ExceptGroupStmt.type = 1, expr */ +/* ExceptGroupStmt.name = 2, expr */ +/* ExceptGroupStmt.body = 3, stmt_list */ + +/* ExceptStmt.location = 0, location */ +/* ExceptStmt.type = 1, expr */ +/* ExceptStmt.name = 2, expr */ +/* ExceptStmt.body = 3, stmt_list */ + +/* Exec.location = 0, location */ +/* Exec.body = 1, expr */ +/* Exec.globals = 2, expr */ +/* Exec.locals = 3, expr */ + +/* ExprStmt.location = 0, location */ +/* ExprStmt.value = 1, expr */ + +/* Filter.location = 0, location */ +/* Filter.parenthesised = 1, bool */ +/* Filter.value = 2, expr */ +/* Filter.filter = 3, expr */ + +/* For.location = 0, location */ +/* For.target = 1, expr */ +/* For.iter = 2, expr */ +/* For.body = 3, stmt_list */ +/* For.orelse = 4, stmt_list */ +/* For.is_async = 5, bool */ + +/* FormattedValue.location = 0, location */ +/* FormattedValue.parenthesised = 1, bool */ +/* FormattedValue.value = 2, expr */ +/* FormattedValue.conversion = 3, str */ +/* FormattedValue.format_spec = 4, JoinedStr */ + +/* Function.name = 0, str */ +/* Function.args = 1, parameter_list */ +/* Function.vararg = 2, expr */ +/* Function.kwonlyargs = 3, expr_list */ +/* Function.kwarg = 4, expr */ +/* Function.body = 5, stmt_list */ +/* Function.is_async = 6, bool */ +/* Function.type_parameters = 7, type_parameter_list */ +/* Function = FunctionParent */ + +/* FunctionExpr.location = 0, location */ +/* FunctionExpr.parenthesised = 1, bool */ +/* FunctionExpr.name = 2, str */ +/* FunctionExpr.args = 3, arguments */ +/* FunctionExpr.returns = 4, expr */ +/* FunctionExpr.inner_scope = 5, Function */ + +/* GeneratorExp.location = 0, location */ +/* GeneratorExp.parenthesised = 1, bool */ +/* GeneratorExp.function = 2, Function */ +/* GeneratorExp.iterable = 3, expr */ + +/* Global.location = 0, location */ +/* Global.names = 1, str_list */ + +/* Guard.location = 0, location */ +/* Guard.parenthesised = 1, bool */ +/* Guard.test = 2, expr */ + +/* If.location = 0, location */ +/* If.test = 1, expr */ +/* If.body = 2, stmt_list */ +/* If.orelse = 3, stmt_list */ + +/* IfExp.location = 0, location */ +/* IfExp.parenthesised = 1, bool */ +/* IfExp.test = 2, expr */ +/* IfExp.body = 3, expr */ +/* IfExp.orelse = 4, expr */ + +/* Import.location = 0, location */ +/* Import.names = 1, alias_list */ + +/* ImportExpr.location = 0, location */ +/* ImportExpr.parenthesised = 1, bool */ +/* ImportExpr.level = 2, int */ +/* ImportExpr.name = 3, str */ +/* ImportExpr.top = 4, bool */ + +/* ImportStar.location = 0, location */ +/* ImportStar.module = 1, expr */ + +/* ImportMember.location = 0, location */ +/* ImportMember.parenthesised = 1, bool */ +/* ImportMember.module = 2, expr */ +/* ImportMember.name = 3, str */ + +/* Fstring.location = 0, location */ +/* Fstring.parenthesised = 1, bool */ +/* Fstring.values = 2, expr_list */ +/* Fstring = FormattedValue */ + +/* KeyValuePair.location = 0, location */ +/* KeyValuePair.value = 1, expr */ +/* KeyValuePair.key = 2, expr */ + +/* Lambda.location = 0, location */ +/* Lambda.parenthesised = 1, bool */ +/* Lambda.args = 2, arguments */ +/* Lambda.inner_scope = 3, Function */ + +/* List.location = 0, location */ +/* List.parenthesised = 1, bool */ +/* List.elts = 2, expr_list */ +/* List.ctx = 3, expr_context */ + +/* ListComp.location = 0, location */ +/* ListComp.parenthesised = 1, bool */ +/* ListComp.function = 2, Function */ +/* ListComp.iterable = 3, expr */ +/* ListComp.generators = 4, comprehension_list */ +/* ListComp.elt = 5, expr */ + +/* MatchStmt.location = 0, location */ +/* MatchStmt.subject = 1, expr */ +/* MatchStmt.cases = 2, stmt_list */ + +/* MatchAsPattern.location = 0, location */ +/* MatchAsPattern.parenthesised = 1, bool */ +/* MatchAsPattern.pattern = 2, pattern */ +/* MatchAsPattern.alias = 3, expr */ + +/* MatchCapturePattern.location = 0, location */ +/* MatchCapturePattern.parenthesised = 1, bool */ +/* MatchCapturePattern.variable = 2, expr */ + +/* MatchClassPattern.location = 0, location */ +/* MatchClassPattern.parenthesised = 1, bool */ +/* MatchClassPattern.class = 2, expr */ +/* MatchClassPattern.class_name = 3, expr */ +/* MatchClassPattern.positional = 4, pattern_list */ +/* MatchClassPattern.keyword = 5, pattern_list */ + +/* MatchDoubleStarPattern.location = 0, location */ +/* MatchDoubleStarPattern.parenthesised = 1, bool */ +/* MatchDoubleStarPattern.target = 2, pattern */ + +/* MatchKeyValuePattern.location = 0, location */ +/* MatchKeyValuePattern.parenthesised = 1, bool */ +/* MatchKeyValuePattern.key = 2, pattern */ +/* MatchKeyValuePattern.value = 3, pattern */ + +/* MatchKeywordPattern.location = 0, location */ +/* MatchKeywordPattern.parenthesised = 1, bool */ +/* MatchKeywordPattern.attribute = 2, expr */ +/* MatchKeywordPattern.value = 3, pattern */ + +/* MatchLiteralPattern.location = 0, location */ +/* MatchLiteralPattern.parenthesised = 1, bool */ +/* MatchLiteralPattern.literal = 2, expr */ + +/* MatchMappingPattern.location = 0, location */ +/* MatchMappingPattern.parenthesised = 1, bool */ +/* MatchMappingPattern.mappings = 2, pattern_list */ + +/* MatchOrPattern.location = 0, location */ +/* MatchOrPattern.parenthesised = 1, bool */ +/* MatchOrPattern.patterns = 2, pattern_list */ + +/* MatchSequencePattern.location = 0, location */ +/* MatchSequencePattern.parenthesised = 1, bool */ +/* MatchSequencePattern.patterns = 2, pattern_list */ + +/* MatchStarPattern.location = 0, location */ +/* MatchStarPattern.parenthesised = 1, bool */ +/* MatchStarPattern.target = 2, pattern */ + +/* MatchValuePattern.location = 0, location */ +/* MatchValuePattern.parenthesised = 1, bool */ +/* MatchValuePattern.value = 2, expr */ + +/* MatchWildcardPattern.location = 0, location */ +/* MatchWildcardPattern.parenthesised = 1, bool */ + +/* Module.name = 0, str */ +/* Module.hash = 1, str */ +/* Module.body = 2, stmt_list */ +/* Module.kind = 3, str */ + +/* Name.location = 0, location */ +/* Name.parenthesised = 1, bool */ +/* Name.variable = 2, variable */ +/* Name.ctx = 3, expr_context */ +/* Name = ParameterList */ + +/* Nonlocal.location = 0, location */ +/* Nonlocal.names = 1, str_list */ + +/* Num.location = 0, location */ +/* Num.parenthesised = 1, bool */ +/* Num.n = 2, number */ +/* Num.text = 3, number */ + +/* ParamSpec.location = 0, location */ +/* ParamSpec.name = 1, expr */ + +/* Pass.location = 0, location */ + +/* PlaceHolder.location = 0, location */ +/* PlaceHolder.parenthesised = 1, bool */ +/* PlaceHolder.variable = 2, variable */ +/* PlaceHolder.ctx = 3, expr_context */ + +/* Print.location = 0, location */ +/* Print.dest = 1, expr */ +/* Print.values = 2, expr_list */ +/* Print.nl = 3, bool */ + +/* Raise.location = 0, location */ +/* Raise.exc = 1, expr */ +/* Raise.cause = 2, expr */ +/* Raise.type = 3, expr */ +/* Raise.inst = 4, expr */ +/* Raise.tback = 5, expr */ + +/* Repr.location = 0, location */ +/* Repr.parenthesised = 1, bool */ +/* Repr.value = 2, expr */ + +/* Return.location = 0, location */ +/* Return.value = 1, expr */ + +/* Set.location = 0, location */ +/* Set.parenthesised = 1, bool */ +/* Set.elts = 2, expr_list */ + +/* SetComp.location = 0, location */ +/* SetComp.parenthesised = 1, bool */ +/* SetComp.function = 2, Function */ +/* SetComp.iterable = 3, expr */ + +/* Slice.location = 0, location */ +/* Slice.parenthesised = 1, bool */ +/* Slice.start = 2, expr */ +/* Slice.stop = 3, expr */ +/* Slice.step = 4, expr */ + +/* SpecialOperation.location = 0, location */ +/* SpecialOperation.parenthesised = 1, bool */ +/* SpecialOperation.name = 2, str */ +/* SpecialOperation.arguments = 3, expr_list */ + +/* Starred.location = 0, location */ +/* Starred.parenthesised = 1, bool */ +/* Starred.value = 2, expr */ +/* Starred.ctx = 3, expr_context */ + +/* Str.location = 0, location */ +/* Str.parenthesised = 1, bool */ +/* Str.s = 2, str */ +/* Str.prefix = 3, str */ +/* Str.implicitly_concatenated_parts = 4, StringPart_list */ + +/* StringPart.text = 0, str */ +/* StringPart.location = 1, location */ +/* StringPart = StringPartList */ +/* StringPartList = BytesOrStr */ + +/* Subscript.location = 0, location */ +/* Subscript.parenthesised = 1, bool */ +/* Subscript.value = 2, expr */ +/* Subscript.index = 3, expr */ +/* Subscript.ctx = 4, expr_context */ + +/* TemplateDottedNotation.location = 0, location */ +/* TemplateDottedNotation.parenthesised = 1, bool */ +/* TemplateDottedNotation.value = 2, expr */ +/* TemplateDottedNotation.attr = 3, str */ +/* TemplateDottedNotation.ctx = 4, expr_context */ + +/* TemplateWrite.location = 0, location */ +/* TemplateWrite.value = 1, expr */ + +/* Try.location = 0, location */ +/* Try.body = 1, stmt_list */ +/* Try.orelse = 2, stmt_list */ +/* Try.handlers = 3, stmt_list */ +/* Try.finalbody = 4, stmt_list */ + +/* Tuple.location = 0, location */ +/* Tuple.parenthesised = 1, bool */ +/* Tuple.elts = 2, expr_list */ +/* Tuple.ctx = 3, expr_context */ +/* Tuple = ParameterList */ + +/* TypeAlias.location = 0, location */ +/* TypeAlias.name = 1, expr */ +/* TypeAlias.type_parameters = 2, type_parameter_list */ +/* TypeAlias.value = 3, expr */ + +/* TypeVar.location = 0, location */ +/* TypeVar.name = 1, expr */ +/* TypeVar.bound = 2, expr */ + +/* TypeVarTuple.location = 0, location */ +/* TypeVarTuple.name = 1, expr */ + +/* UnaryExpr.location = 0, location */ +/* UnaryExpr.parenthesised = 1, bool */ +/* UnaryExpr.op = 2, unaryop */ +/* UnaryExpr.operand = 3, expr */ + +/* While.location = 0, location */ +/* While.test = 1, expr */ +/* While.body = 2, stmt_list */ +/* While.orelse = 3, stmt_list */ + +/* With.location = 0, location */ +/* With.context_expr = 1, expr */ +/* With.optional_vars = 2, expr */ +/* With.body = 3, stmt_list */ +/* With.is_async = 4, bool */ + +/* Yield.location = 0, location */ +/* Yield.parenthesised = 1, bool */ +/* Yield.value = 2, expr */ + +/* YieldFrom.location = 0, location */ +/* YieldFrom.parenthesised = 1, bool */ +/* YieldFrom.value = 2, expr */ + +/* Alias.value = 0, expr */ +/* Alias.asname = 1, expr */ +/* Alias = AliasList */ +/* AliasList = Import */ + +/* Arguments.kw_defaults = 0, expr_list */ +/* Arguments.defaults = 1, expr_list */ +/* Arguments.annotations = 2, expr_list */ +/* Arguments.varargannotation = 3, expr */ +/* Arguments.kwargannotation = 4, expr */ +/* Arguments.kw_annotations = 5, expr_list */ +/* Arguments = ArgumentsParent */ +/* boolean = BoolParent */ +/* Boolop = BoolExpr */ +/* string = Bytes */ +/* Cmpop = CmpopList */ +/* CmpopList = Compare */ + +/* Comprehension.location = 0, location */ +/* Comprehension.iter = 1, expr */ +/* Comprehension.target = 2, expr */ +/* Comprehension.ifs = 3, expr_list */ +/* Comprehension = ComprehensionList */ +/* ComprehensionList = ListComp */ +/* DictItem = DictItemList */ +/* DictItemList = DictItemListParent */ + +/* Expr.location = 0, location */ +/* Expr.parenthesised = 1, bool */ +/* Expr = ExprParent */ +/* ExprContext = ExprContextParent */ +/* ExprList = ExprListParent */ +/* int = ImportExpr */ + +/* Keyword.location = 0, location */ +/* Keyword.value = 1, expr */ +/* Keyword.arg = 2, str */ +/* Location = LocationParent */ +/* string = Num */ +/* Operator = BinaryExpr */ +/* ParameterList = Function */ + +/* Pattern.location = 0, location */ +/* Pattern.parenthesised = 1, bool */ +/* Pattern = PatternParent */ +/* PatternList = PatternListParent */ + +/* Stmt.location = 0, location */ +/* Stmt = StmtList */ +/* StmtList = StmtListParent */ +/* string = StrParent */ +/* StringList = StrListParent */ + +/* TypeParameter.location = 0, location */ +/* TypeParameter = TypeParameterList */ +/* TypeParameterList = TypeParameterListParent */ +/* Unaryop = UnaryExpr */ +/* Variable = VariableParent */ +py_Classes(unique int id : @py_Class, + unique int parent : @py_ClassExpr ref); + +py_Functions(unique int id : @py_Function, + unique int parent : @py_Function_parent ref); + +py_Modules(unique int id : @py_Module); + +py_StringParts(unique int id : @py_StringPart, + int parent : @py_StringPart_list ref, + int idx : int ref); + +py_StringPart_lists(unique int id : @py_StringPart_list, + unique int parent : @py_Bytes_or_Str ref); + +py_aliases(unique int id : @py_alias, + int parent : @py_alias_list ref, + int idx : int ref); + +py_alias_lists(unique int id : @py_alias_list, + unique int parent : @py_Import ref); + +py_arguments(unique int id : @py_arguments, + unique int parent : @py_arguments_parent ref); + +py_bools(int parent : @py_bool_parent ref, + int idx : int ref); + +py_boolops(unique int id : @py_boolop, + int kind: int ref, + unique int parent : @py_BoolExpr ref); + +py_bytes(varchar(1) id : string ref, + int parent : @py_Bytes ref, + int idx : int ref); + +py_cmpops(unique int id : @py_cmpop, + int kind: int ref, + int parent : @py_cmpop_list ref, + int idx : int ref); + +py_cmpop_lists(unique int id : @py_cmpop_list, + unique int parent : @py_Compare ref); + +py_comprehensions(unique int id : @py_comprehension, + int parent : @py_comprehension_list ref, + int idx : int ref); + +py_comprehension_lists(unique int id : @py_comprehension_list, + unique int parent : @py_ListComp ref); + +py_dict_items(unique int id : @py_dict_item, + int kind: int ref, + int parent : @py_dict_item_list ref, + int idx : int ref); + +py_dict_item_lists(unique int id : @py_dict_item_list, + unique int parent : @py_dict_item_list_parent ref); + +py_exprs(unique int id : @py_expr, + int kind: int ref, + int parent : @py_expr_parent ref, + int idx : int ref); + +py_expr_contexts(unique int id : @py_expr_context, + int kind: int ref, + unique int parent : @py_expr_context_parent ref); + +py_expr_lists(unique int id : @py_expr_list, + int parent : @py_expr_list_parent ref, + int idx : int ref); + +py_ints(int id : int ref, + unique int parent : @py_ImportExpr ref); + +py_locations(unique int id : @location ref, + unique int parent : @py_location_parent ref); + +py_numbers(varchar(1) id : string ref, + int parent : @py_Num ref, + int idx : int ref); + +py_operators(unique int id : @py_operator, + int kind: int ref, + unique int parent : @py_BinaryExpr ref); + +py_parameter_lists(unique int id : @py_parameter_list, + unique int parent : @py_Function ref); + +py_patterns(unique int id : @py_pattern, + int kind: int ref, + int parent : @py_pattern_parent ref, + int idx : int ref); + +py_pattern_lists(unique int id : @py_pattern_list, + int parent : @py_pattern_list_parent ref, + int idx : int ref); + +py_stmts(unique int id : @py_stmt, + int kind: int ref, + int parent : @py_stmt_list ref, + int idx : int ref); + +py_stmt_lists(unique int id : @py_stmt_list, + int parent : @py_stmt_list_parent ref, + int idx : int ref); + +py_strs(varchar(1) id : string ref, + int parent : @py_str_parent ref, + int idx : int ref); + +py_str_lists(unique int id : @py_str_list, + unique int parent : @py_str_list_parent ref); + +py_type_parameters(unique int id : @py_type_parameter, + int kind: int ref, + int parent : @py_type_parameter_list ref, + int idx : int ref); + +py_type_parameter_lists(unique int id : @py_type_parameter_list, + unique int parent : @py_type_parameter_list_parent ref); + +py_unaryops(unique int id : @py_unaryop, + int kind: int ref, + unique int parent : @py_UnaryExpr ref); + +py_variables(int id : @py_variable ref, + unique int parent : @py_variable_parent ref); + +case @py_boolop.kind of + 0 = @py_And +| 1 = @py_Or; + +case @py_cmpop.kind of + 0 = @py_Eq +| 1 = @py_Gt +| 2 = @py_GtE +| 3 = @py_In +| 4 = @py_Is +| 5 = @py_IsNot +| 6 = @py_Lt +| 7 = @py_LtE +| 8 = @py_NotEq +| 9 = @py_NotIn; + +case @py_dict_item.kind of + 0 = @py_DictUnpacking +| 1 = @py_KeyValuePair +| 2 = @py_keyword; + +case @py_expr.kind of + 0 = @py_Attribute +| 1 = @py_BinaryExpr +| 2 = @py_BoolExpr +| 3 = @py_Bytes +| 4 = @py_Call +| 5 = @py_ClassExpr +| 6 = @py_Compare +| 7 = @py_Dict +| 8 = @py_DictComp +| 9 = @py_Ellipsis +| 10 = @py_FunctionExpr +| 11 = @py_GeneratorExp +| 12 = @py_IfExp +| 13 = @py_ImportExpr +| 14 = @py_ImportMember +| 15 = @py_Lambda +| 16 = @py_List +| 17 = @py_ListComp +| 18 = @py_Guard +| 19 = @py_Name +| 20 = @py_Num +| 21 = @py_Repr +| 22 = @py_Set +| 23 = @py_SetComp +| 24 = @py_Slice +| 25 = @py_Starred +| 26 = @py_Str +| 27 = @py_Subscript +| 28 = @py_Tuple +| 29 = @py_UnaryExpr +| 30 = @py_Yield +| 31 = @py_YieldFrom +| 32 = @py_TemplateDottedNotation +| 33 = @py_Filter +| 34 = @py_PlaceHolder +| 35 = @py_Await +| 36 = @py_Fstring +| 37 = @py_FormattedValue +| 38 = @py_AssignExpr +| 39 = @py_SpecialOperation; + +case @py_expr_context.kind of + 0 = @py_AugLoad +| 1 = @py_AugStore +| 2 = @py_Del +| 3 = @py_Load +| 4 = @py_Param +| 5 = @py_Store; + +case @py_operator.kind of + 0 = @py_Add +| 1 = @py_BitAnd +| 2 = @py_BitOr +| 3 = @py_BitXor +| 4 = @py_Div +| 5 = @py_FloorDiv +| 6 = @py_LShift +| 7 = @py_Mod +| 8 = @py_Mult +| 9 = @py_Pow +| 10 = @py_RShift +| 11 = @py_Sub +| 12 = @py_MatMult; + +case @py_pattern.kind of + 0 = @py_MatchAsPattern +| 1 = @py_MatchOrPattern +| 2 = @py_MatchLiteralPattern +| 3 = @py_MatchCapturePattern +| 4 = @py_MatchWildcardPattern +| 5 = @py_MatchValuePattern +| 6 = @py_MatchSequencePattern +| 7 = @py_MatchStarPattern +| 8 = @py_MatchMappingPattern +| 9 = @py_MatchDoubleStarPattern +| 10 = @py_MatchKeyValuePattern +| 11 = @py_MatchClassPattern +| 12 = @py_MatchKeywordPattern; + +case @py_stmt.kind of + 0 = @py_Assert +| 1 = @py_Assign +| 2 = @py_AugAssign +| 3 = @py_Break +| 4 = @py_Continue +| 5 = @py_Delete +| 6 = @py_ExceptStmt +| 7 = @py_ExceptGroupStmt +| 8 = @py_Exec +| 9 = @py_Expr_stmt +| 10 = @py_For +| 11 = @py_Global +| 12 = @py_If +| 13 = @py_Import +| 14 = @py_ImportStar +| 15 = @py_MatchStmt +| 16 = @py_Case +| 17 = @py_Nonlocal +| 18 = @py_Pass +| 19 = @py_Print +| 20 = @py_Raise +| 21 = @py_Return +| 22 = @py_Try +| 23 = @py_While +| 24 = @py_With +| 25 = @py_TemplateWrite +| 26 = @py_AnnAssign +| 27 = @py_TypeAlias; + +case @py_type_parameter.kind of + 0 = @py_ParamSpec +| 1 = @py_TypeVar +| 2 = @py_TypeVarTuple; + +case @py_unaryop.kind of + 0 = @py_Invert +| 1 = @py_Not +| 2 = @py_UAdd +| 3 = @py_USub; + +@py_Bytes_or_Str = @py_Bytes | @py_Str; + +@py_Function_parent = @py_DictComp | @py_FunctionExpr | @py_GeneratorExp | @py_Lambda | @py_ListComp | @py_SetComp; + +@py_arguments_parent = @py_FunctionExpr | @py_Lambda; + +@py_ast_node = @py_Class | @py_Function | @py_Module | @py_StringPart | @py_comprehension | @py_dict_item | @py_expr | @py_pattern | @py_stmt | @py_type_parameter; + +@py_bool_parent = @py_For | @py_Function | @py_Print | @py_With | @py_expr | @py_pattern; + +@py_dict_item_list_parent = @py_Call | @py_ClassExpr | @py_Dict; + +@py_expr_context_parent = @py_Attribute | @py_List | @py_Name | @py_PlaceHolder | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_Tuple; + +@py_expr_list_parent = @py_Assign | @py_BoolExpr | @py_Call | @py_ClassExpr | @py_Compare | @py_Delete | @py_Fstring | @py_Function | @py_List | @py_Print | @py_Set | @py_SpecialOperation | @py_Tuple | @py_arguments | @py_comprehension; + +@py_expr_or_stmt = @py_expr | @py_stmt; + +@py_expr_parent = @py_AnnAssign | @py_Assert | @py_Assign | @py_AssignExpr | @py_Attribute | @py_AugAssign | @py_Await | @py_BinaryExpr | @py_Call | @py_Case | @py_Compare | @py_DictComp | @py_DictUnpacking | @py_ExceptGroupStmt | @py_ExceptStmt | @py_Exec | @py_Expr_stmt | @py_Filter | @py_For | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_GeneratorExp | @py_Guard | @py_If | @py_IfExp | @py_ImportMember | @py_ImportStar | @py_KeyValuePair | @py_ListComp | @py_MatchAsPattern | @py_MatchCapturePattern | @py_MatchClassPattern | @py_MatchKeywordPattern | @py_MatchLiteralPattern | @py_MatchStmt | @py_MatchValuePattern | @py_ParamSpec | @py_Print | @py_Raise | @py_Repr | @py_Return | @py_SetComp | @py_Slice | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_TemplateWrite | @py_TypeAlias | @py_TypeVar | @py_TypeVarTuple | @py_UnaryExpr | @py_While | @py_With | @py_Yield | @py_YieldFrom | @py_alias | @py_arguments | @py_comprehension | @py_expr_list | @py_keyword | @py_parameter_list; + +@py_location_parent = @py_DictUnpacking | @py_KeyValuePair | @py_StringPart | @py_comprehension | @py_expr | @py_keyword | @py_pattern | @py_stmt | @py_type_parameter; + +@py_parameter = @py_Name | @py_Tuple; + +@py_pattern_list_parent = @py_MatchClassPattern | @py_MatchMappingPattern | @py_MatchOrPattern | @py_MatchSequencePattern; + +@py_pattern_parent = @py_Case | @py_MatchAsPattern | @py_MatchDoubleStarPattern | @py_MatchKeyValuePattern | @py_MatchKeywordPattern | @py_MatchStarPattern | @py_pattern_list; + +@py_scope = @py_Class | @py_Function | @py_Module; + +@py_stmt_list_parent = @py_Case | @py_Class | @py_ExceptGroupStmt | @py_ExceptStmt | @py_For | @py_Function | @py_If | @py_MatchStmt | @py_Module | @py_Try | @py_While | @py_With; + +@py_str_list_parent = @py_Global | @py_Nonlocal; + +@py_str_parent = @py_Attribute | @py_Class | @py_ClassExpr | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_ImportExpr | @py_ImportMember | @py_Module | @py_SpecialOperation | @py_Str | @py_StringPart | @py_TemplateDottedNotation | @py_keyword | @py_str_list; + +@py_type_parameter_list_parent = @py_ClassExpr | @py_Function | @py_TypeAlias; + +@py_variable_parent = @py_Name | @py_PlaceHolder; + + +/* + * End of auto-generated part + */ + + + +/* Map relative names to absolute names for imports */ +py_absolute_names(int module : @py_Module ref, + varchar(1) relname : string ref, + varchar(1) absname : string ref); + +py_exports(int id : @py_Module ref, + varchar(1) name : string ref); + +/* Successor information */ +py_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_true_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_exception_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_false_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_flow_bb_node(unique int flownode : @py_flow_node, + int realnode : @py_ast_node ref, + int basicblock : @py_flow_node ref, + int index : int ref); + +py_scope_flow(int flow : @py_flow_node ref, + int scope : @py_scope ref, + int kind : int ref); + +py_idoms(unique int node : @py_flow_node ref, + int immediate_dominator : @py_flow_node ref); + +py_ssa_phi(int phi : @py_ssa_var ref, + int arg: @py_ssa_var ref); + +py_ssa_var(unique int id : @py_ssa_var, + int var : @py_variable ref); + +py_ssa_use(int node: @py_flow_node ref, + int var : @py_ssa_var ref); + +py_ssa_defn(unique int id : @py_ssa_var ref, + int node: @py_flow_node ref); + +@py_base_var = @py_variable | @py_ssa_var; + +py_scopes(unique int node : @py_expr_or_stmt ref, + int scope : @py_scope ref); + +py_scope_location(unique int id : @location ref, + unique int scope : @py_scope ref); + +py_flags_versioned(varchar(1) name : string ref, + varchar(1) value : string ref, + varchar(1) version : string ref); + +py_syntax_error_versioned(unique int id : @location ref, + varchar(1) message : string ref, + varchar(1) version : string ref); + +py_comments(unique int id : @py_comment, + varchar(1) text : string ref, + unique int location : @location ref); + +/* Type information support */ + +py_cobjects(unique int obj : @py_cobject); + +py_cobjecttypes(unique int obj : @py_cobject ref, + int typeof : @py_cobject ref); + +py_cobjectnames(unique int obj : @py_cobject ref, + varchar(1) name : string ref); + +/* Kind should be 0 for introspection, > 0 from source, as follows: + 1 from C extension source + */ +py_cobject_sources(int obj : @py_cobject ref, + int kind : int ref); + +py_cmembers_versioned(int object : @py_cobject ref, + varchar(1) name : string ref, + int member : @py_cobject ref, + varchar(1) version : string ref); + +py_citems(int object : @py_cobject ref, + int index : int ref, + int member : @py_cobject ref); + +ext_argtype(int funcid : @py_object ref, + int arg : int ref, + int typeid : @py_object ref); + +ext_rettype(int funcid : @py_object ref, + int typeid : @py_object ref); + +ext_proptype(int propid : @py_object ref, + int typeid : @py_object ref); + +ext_argreturn(int funcid : @py_object ref, + int arg : int ref); + +py_special_objects(unique int obj : @py_cobject ref, + unique varchar(1) name : string ref); + +py_decorated_object(int object : @py_object ref, + int level: int ref); + +@py_object = @py_cobject | @py_flow_node; + +@py_source_element = @py_ast_node | @container; diff --git a/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/semmlecode.python.dbscheme b/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/semmlecode.python.dbscheme new file mode 100644 index 000000000000..5af903da088e --- /dev/null +++ b/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/semmlecode.python.dbscheme @@ -0,0 +1,1236 @@ +/* + * This dbscheme is auto-generated by 'semmle/dbscheme_gen.py'. + * WARNING: Any modifications to this file will be lost. + * Relations can be changed by modifying master.py or + * by adding rules to dbscheme.template + */ + +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2020-07-02 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/*- DEPRECATED: External defects and metrics -*/ + +externalDefects( + unique int id : @externalDefect, + varchar(900) queryPath : string ref, + int location : @location ref, + varchar(900) message : string ref, + float severity : float ref +); + +externalMetrics( + unique int id : @externalMetric, + varchar(900) queryPath : string ref, + int location : @location ref, + float value : float ref +); + +/*- External data -*/ + +/** + * External data, loaded from CSV files during snapshot creation. See + * [Tutorial: Incorporating external data](https://help.semmle.com/wiki/display/SD/Tutorial%3A+Incorporating+external+data) + * for more information. + */ +externalData( + int id : @externalDataElement, + string path : string ref, + int column: int ref, + string value : string ref +); + +/*- DEPRECATED: Snapshot date -*/ + +snapshotDate(unique date snapshotDate : date ref); + +/*- Source location prefix -*/ + +/** + * The source location of the snapshot. + */ +sourceLocationPrefix(string prefix : string ref); + +/*- DEPRECATED: Duplicate code -*/ + +duplicateCode( + unique int id : @duplication, + string relativePath : string ref, + int equivClass : int ref +); + +similarCode( + unique int id : @similarity, + string relativePath : string ref, + int equivClass : int ref +); + +@duplication_or_similarity = @duplication | @similarity + +tokens( + int id : @duplication_or_similarity ref, + int offset : int ref, + int beginLine : int ref, + int beginColumn : int ref, + int endLine : int ref, + int endColumn : int ref +); + +/*- DEPRECATED: Version control data -*/ + +svnentries( + unique int id : @svnentry, + string revision : string ref, + string author : string ref, + date revisionDate : date ref, + int changeSize : int ref +) + +svnaffectedfiles( + int id : @svnentry ref, + int file : @file ref, + string action : string ref +) + +svnentrymsg( + unique int id : @svnentry ref, + string message : string ref +) + +svnchurn( + int commit : @svnentry ref, + int file : @file ref, + int addedLines : int ref, + int deletedLines : int ref +) + +/*- Lines of code -*/ + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref +); + +/*- Files and folders -*/ + +/** + * The location of an element. + * The location spans column `startcolumn` of line `startline` to + * column `endcolumn` of line `endline` in file `file`. + * For more information, see + * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/). + */ +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref +); + +files( + unique int id: @file, + string name: string ref +); + +folders( + unique int id: @folder, + string name: string ref +); + +@container = @file | @folder + +containerparent( + int parent: @container ref, + unique int child: @container ref +); + +/*- XML Files -*/ + +xmlEncoding( + unique int id: @file ref, + string encoding: string ref +); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref +); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref +); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref +); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref +); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref +); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref +); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref +); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref +); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/*- YAML -*/ + +#keyset[parent, idx] +yaml (unique int id: @yaml_node, + int kind: int ref, + int parent: @yaml_node_parent ref, + int idx: int ref, + string tag: string ref, + string tostring: string ref); + +case @yaml_node.kind of + 0 = @yaml_scalar_node +| 1 = @yaml_mapping_node +| 2 = @yaml_sequence_node +| 3 = @yaml_alias_node +; + +@yaml_collection_node = @yaml_mapping_node | @yaml_sequence_node; + +@yaml_node_parent = @yaml_collection_node | @file; + +yaml_anchors (unique int node: @yaml_node ref, + string anchor: string ref); + +yaml_aliases (unique int alias: @yaml_alias_node ref, + string target: string ref); + +yaml_scalars (unique int scalar: @yaml_scalar_node ref, + int style: int ref, + string value: string ref); + +yaml_errors (unique int id: @yaml_error, + string message: string ref); + +yaml_locations(unique int locatable: @yaml_locatable ref, + int location: @location_default ref); + +@yaml_locatable = @yaml_node | @yaml_error; + +/*- Python dbscheme -*/ + +/* + * Line metrics + */ +py_codelines(int id : @py_scope ref, + int count : int ref); + +py_commentlines(int id : @py_scope ref, + int count : int ref); + +py_docstringlines(int id : @py_scope ref, + int count : int ref); + +py_alllines(int id : @py_scope ref, + int count : int ref); + +/**************************** + Python dbscheme +****************************/ + +@sourceline = @file | @py_Module | @xmllocatable; + +@location = @location_ast | @location_default ; + +locations_ast(unique int id: @location_ast, + int module: @py_Module ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +file_contents(unique int file: @file ref, string contents: string ref); + +py_module_path(int module: @py_Module ref, int file: @container ref); + +variable(unique int id : @py_variable, + int scope : @py_scope ref, + varchar(1) name : string ref); + +py_line_lengths(unique int id : @py_line, + int file: @py_Module ref, + int line : int ref, + int length : int ref); + +py_extracted_version(int module : @py_Module ref, + varchar(1) version : string ref); + +/* AUTO GENERATED PART STARTS HERE */ + + +/* AnnAssign.location = 0, location */ +/* AnnAssign.value = 1, expr */ +/* AnnAssign.annotation = 2, expr */ +/* AnnAssign.target = 3, expr */ + +/* Assert.location = 0, location */ +/* Assert.test = 1, expr */ +/* Assert.msg = 2, expr */ + +/* Assign.location = 0, location */ +/* Assign.value = 1, expr */ +/* Assign.targets = 2, expr_list */ + +/* AssignExpr.location = 0, location */ +/* AssignExpr.parenthesised = 1, bool */ +/* AssignExpr.value = 2, expr */ +/* AssignExpr.target = 3, expr */ + +/* Attribute.location = 0, location */ +/* Attribute.parenthesised = 1, bool */ +/* Attribute.value = 2, expr */ +/* Attribute.attr = 3, str */ +/* Attribute.ctx = 4, expr_context */ + +/* AugAssign.location = 0, location */ +/* AugAssign.operation = 1, BinOp */ + +/* Await.location = 0, location */ +/* Await.parenthesised = 1, bool */ +/* Await.value = 2, expr */ + +/* BinaryExpr.location = 0, location */ +/* BinaryExpr.parenthesised = 1, bool */ +/* BinaryExpr.left = 2, expr */ +/* BinaryExpr.op = 3, operator */ +/* BinaryExpr.right = 4, expr */ +/* BinaryExpr = AugAssign */ + +/* BoolExpr.location = 0, location */ +/* BoolExpr.parenthesised = 1, bool */ +/* BoolExpr.op = 2, boolop */ +/* BoolExpr.values = 3, expr_list */ + +/* Break.location = 0, location */ + +/* Bytes.location = 0, location */ +/* Bytes.parenthesised = 1, bool */ +/* Bytes.s = 2, bytes */ +/* Bytes.prefix = 3, bytes */ +/* Bytes.implicitly_concatenated_parts = 4, StringPart_list */ + +/* Call.location = 0, location */ +/* Call.parenthesised = 1, bool */ +/* Call.func = 2, expr */ +/* Call.positional_args = 3, expr_list */ +/* Call.named_args = 4, dict_item_list */ + +/* Case.location = 0, location */ +/* Case.pattern = 1, pattern */ +/* Case.guard = 2, expr */ +/* Case.body = 3, stmt_list */ + +/* Class.name = 0, str */ +/* Class.body = 1, stmt_list */ +/* Class = ClassExpr */ + +/* ClassExpr.location = 0, location */ +/* ClassExpr.parenthesised = 1, bool */ +/* ClassExpr.name = 2, str */ +/* ClassExpr.bases = 3, expr_list */ +/* ClassExpr.keywords = 4, dict_item_list */ +/* ClassExpr.inner_scope = 5, Class */ +/* ClassExpr.type_parameters = 6, type_parameter_list */ + +/* Compare.location = 0, location */ +/* Compare.parenthesised = 1, bool */ +/* Compare.left = 2, expr */ +/* Compare.ops = 3, cmpop_list */ +/* Compare.comparators = 4, expr_list */ + +/* Continue.location = 0, location */ + +/* Delete.location = 0, location */ +/* Delete.targets = 1, expr_list */ + +/* Dict.location = 0, location */ +/* Dict.parenthesised = 1, bool */ +/* Dict.items = 2, dict_item_list */ + +/* DictComp.location = 0, location */ +/* DictComp.parenthesised = 1, bool */ +/* DictComp.function = 2, Function */ +/* DictComp.iterable = 3, expr */ + +/* DictUnpacking.location = 0, location */ +/* DictUnpacking.value = 1, expr */ + +/* Ellipsis.location = 0, location */ +/* Ellipsis.parenthesised = 1, bool */ + +/* ExceptGroupStmt.location = 0, location */ +/* ExceptGroupStmt.type = 1, expr */ +/* ExceptGroupStmt.name = 2, expr */ +/* ExceptGroupStmt.body = 3, stmt_list */ + +/* ExceptStmt.location = 0, location */ +/* ExceptStmt.type = 1, expr */ +/* ExceptStmt.name = 2, expr */ +/* ExceptStmt.body = 3, stmt_list */ + +/* Exec.location = 0, location */ +/* Exec.body = 1, expr */ +/* Exec.globals = 2, expr */ +/* Exec.locals = 3, expr */ + +/* ExprStmt.location = 0, location */ +/* ExprStmt.value = 1, expr */ + +/* Filter.location = 0, location */ +/* Filter.parenthesised = 1, bool */ +/* Filter.value = 2, expr */ +/* Filter.filter = 3, expr */ + +/* For.location = 0, location */ +/* For.target = 1, expr */ +/* For.iter = 2, expr */ +/* For.body = 3, stmt_list */ +/* For.orelse = 4, stmt_list */ +/* For.is_async = 5, bool */ + +/* FormattedValue.location = 0, location */ +/* FormattedValue.parenthesised = 1, bool */ +/* FormattedValue.value = 2, expr */ +/* FormattedValue.conversion = 3, str */ +/* FormattedValue.format_spec = 4, JoinedStr */ + +/* Function.name = 0, str */ +/* Function.args = 1, parameter_list */ +/* Function.vararg = 2, expr */ +/* Function.kwonlyargs = 3, expr_list */ +/* Function.kwarg = 4, expr */ +/* Function.body = 5, stmt_list */ +/* Function.is_async = 6, bool */ +/* Function.type_parameters = 7, type_parameter_list */ +/* Function = FunctionParent */ + +/* FunctionExpr.location = 0, location */ +/* FunctionExpr.parenthesised = 1, bool */ +/* FunctionExpr.name = 2, str */ +/* FunctionExpr.args = 3, arguments */ +/* FunctionExpr.returns = 4, expr */ +/* FunctionExpr.inner_scope = 5, Function */ + +/* GeneratorExp.location = 0, location */ +/* GeneratorExp.parenthesised = 1, bool */ +/* GeneratorExp.function = 2, Function */ +/* GeneratorExp.iterable = 3, expr */ + +/* Global.location = 0, location */ +/* Global.names = 1, str_list */ + +/* Guard.location = 0, location */ +/* Guard.parenthesised = 1, bool */ +/* Guard.test = 2, expr */ + +/* If.location = 0, location */ +/* If.test = 1, expr */ +/* If.body = 2, stmt_list */ +/* If.orelse = 3, stmt_list */ + +/* IfExp.location = 0, location */ +/* IfExp.parenthesised = 1, bool */ +/* IfExp.test = 2, expr */ +/* IfExp.body = 3, expr */ +/* IfExp.orelse = 4, expr */ + +/* Import.location = 0, location */ +/* Import.names = 1, alias_list */ + +/* ImportExpr.location = 0, location */ +/* ImportExpr.parenthesised = 1, bool */ +/* ImportExpr.level = 2, int */ +/* ImportExpr.name = 3, str */ +/* ImportExpr.top = 4, bool */ + +/* ImportStar.location = 0, location */ +/* ImportStar.module = 1, expr */ + +/* ImportMember.location = 0, location */ +/* ImportMember.parenthesised = 1, bool */ +/* ImportMember.module = 2, expr */ +/* ImportMember.name = 3, str */ + +/* Fstring.location = 0, location */ +/* Fstring.parenthesised = 1, bool */ +/* Fstring.values = 2, expr_list */ +/* Fstring = FormattedValue */ + +/* KeyValuePair.location = 0, location */ +/* KeyValuePair.value = 1, expr */ +/* KeyValuePair.key = 2, expr */ + +/* Lambda.location = 0, location */ +/* Lambda.parenthesised = 1, bool */ +/* Lambda.args = 2, arguments */ +/* Lambda.inner_scope = 3, Function */ + +/* List.location = 0, location */ +/* List.parenthesised = 1, bool */ +/* List.elts = 2, expr_list */ +/* List.ctx = 3, expr_context */ + +/* ListComp.location = 0, location */ +/* ListComp.parenthesised = 1, bool */ +/* ListComp.function = 2, Function */ +/* ListComp.iterable = 3, expr */ +/* ListComp.generators = 4, comprehension_list */ +/* ListComp.elt = 5, expr */ + +/* MatchStmt.location = 0, location */ +/* MatchStmt.subject = 1, expr */ +/* MatchStmt.cases = 2, stmt_list */ + +/* MatchAsPattern.location = 0, location */ +/* MatchAsPattern.parenthesised = 1, bool */ +/* MatchAsPattern.pattern = 2, pattern */ +/* MatchAsPattern.alias = 3, expr */ + +/* MatchCapturePattern.location = 0, location */ +/* MatchCapturePattern.parenthesised = 1, bool */ +/* MatchCapturePattern.variable = 2, expr */ + +/* MatchClassPattern.location = 0, location */ +/* MatchClassPattern.parenthesised = 1, bool */ +/* MatchClassPattern.class = 2, expr */ +/* MatchClassPattern.class_name = 3, expr */ +/* MatchClassPattern.positional = 4, pattern_list */ +/* MatchClassPattern.keyword = 5, pattern_list */ + +/* MatchDoubleStarPattern.location = 0, location */ +/* MatchDoubleStarPattern.parenthesised = 1, bool */ +/* MatchDoubleStarPattern.target = 2, pattern */ + +/* MatchKeyValuePattern.location = 0, location */ +/* MatchKeyValuePattern.parenthesised = 1, bool */ +/* MatchKeyValuePattern.key = 2, pattern */ +/* MatchKeyValuePattern.value = 3, pattern */ + +/* MatchKeywordPattern.location = 0, location */ +/* MatchKeywordPattern.parenthesised = 1, bool */ +/* MatchKeywordPattern.attribute = 2, expr */ +/* MatchKeywordPattern.value = 3, pattern */ + +/* MatchLiteralPattern.location = 0, location */ +/* MatchLiteralPattern.parenthesised = 1, bool */ +/* MatchLiteralPattern.literal = 2, expr */ + +/* MatchMappingPattern.location = 0, location */ +/* MatchMappingPattern.parenthesised = 1, bool */ +/* MatchMappingPattern.mappings = 2, pattern_list */ + +/* MatchOrPattern.location = 0, location */ +/* MatchOrPattern.parenthesised = 1, bool */ +/* MatchOrPattern.patterns = 2, pattern_list */ + +/* MatchSequencePattern.location = 0, location */ +/* MatchSequencePattern.parenthesised = 1, bool */ +/* MatchSequencePattern.patterns = 2, pattern_list */ + +/* MatchStarPattern.location = 0, location */ +/* MatchStarPattern.parenthesised = 1, bool */ +/* MatchStarPattern.target = 2, pattern */ + +/* MatchValuePattern.location = 0, location */ +/* MatchValuePattern.parenthesised = 1, bool */ +/* MatchValuePattern.value = 2, expr */ + +/* MatchWildcardPattern.location = 0, location */ +/* MatchWildcardPattern.parenthesised = 1, bool */ + +/* Module.name = 0, str */ +/* Module.hash = 1, str */ +/* Module.body = 2, stmt_list */ +/* Module.kind = 3, str */ + +/* Name.location = 0, location */ +/* Name.parenthesised = 1, bool */ +/* Name.variable = 2, variable */ +/* Name.ctx = 3, expr_context */ +/* Name = ParameterList */ + +/* Nonlocal.location = 0, location */ +/* Nonlocal.names = 1, str_list */ + +/* Num.location = 0, location */ +/* Num.parenthesised = 1, bool */ +/* Num.n = 2, number */ +/* Num.text = 3, number */ + +/* ParamSpec.location = 0, location */ +/* ParamSpec.name = 1, expr */ +/* ParamSpec.default = 2, expr */ + +/* Pass.location = 0, location */ + +/* PlaceHolder.location = 0, location */ +/* PlaceHolder.parenthesised = 1, bool */ +/* PlaceHolder.variable = 2, variable */ +/* PlaceHolder.ctx = 3, expr_context */ + +/* Print.location = 0, location */ +/* Print.dest = 1, expr */ +/* Print.values = 2, expr_list */ +/* Print.nl = 3, bool */ + +/* Raise.location = 0, location */ +/* Raise.exc = 1, expr */ +/* Raise.cause = 2, expr */ +/* Raise.type = 3, expr */ +/* Raise.inst = 4, expr */ +/* Raise.tback = 5, expr */ + +/* Repr.location = 0, location */ +/* Repr.parenthesised = 1, bool */ +/* Repr.value = 2, expr */ + +/* Return.location = 0, location */ +/* Return.value = 1, expr */ + +/* Set.location = 0, location */ +/* Set.parenthesised = 1, bool */ +/* Set.elts = 2, expr_list */ + +/* SetComp.location = 0, location */ +/* SetComp.parenthesised = 1, bool */ +/* SetComp.function = 2, Function */ +/* SetComp.iterable = 3, expr */ + +/* Slice.location = 0, location */ +/* Slice.parenthesised = 1, bool */ +/* Slice.start = 2, expr */ +/* Slice.stop = 3, expr */ +/* Slice.step = 4, expr */ + +/* SpecialOperation.location = 0, location */ +/* SpecialOperation.parenthesised = 1, bool */ +/* SpecialOperation.name = 2, str */ +/* SpecialOperation.arguments = 3, expr_list */ + +/* Starred.location = 0, location */ +/* Starred.parenthesised = 1, bool */ +/* Starred.value = 2, expr */ +/* Starred.ctx = 3, expr_context */ + +/* Str.location = 0, location */ +/* Str.parenthesised = 1, bool */ +/* Str.s = 2, str */ +/* Str.prefix = 3, str */ +/* Str.implicitly_concatenated_parts = 4, StringPart_list */ + +/* StringPart.text = 0, str */ +/* StringPart.location = 1, location */ +/* StringPart = StringPartList */ +/* StringPartList = BytesOrStr */ + +/* Subscript.location = 0, location */ +/* Subscript.parenthesised = 1, bool */ +/* Subscript.value = 2, expr */ +/* Subscript.index = 3, expr */ +/* Subscript.ctx = 4, expr_context */ + +/* TemplateDottedNotation.location = 0, location */ +/* TemplateDottedNotation.parenthesised = 1, bool */ +/* TemplateDottedNotation.value = 2, expr */ +/* TemplateDottedNotation.attr = 3, str */ +/* TemplateDottedNotation.ctx = 4, expr_context */ + +/* TemplateWrite.location = 0, location */ +/* TemplateWrite.value = 1, expr */ + +/* Try.location = 0, location */ +/* Try.body = 1, stmt_list */ +/* Try.orelse = 2, stmt_list */ +/* Try.handlers = 3, stmt_list */ +/* Try.finalbody = 4, stmt_list */ + +/* Tuple.location = 0, location */ +/* Tuple.parenthesised = 1, bool */ +/* Tuple.elts = 2, expr_list */ +/* Tuple.ctx = 3, expr_context */ +/* Tuple = ParameterList */ + +/* TypeAlias.location = 0, location */ +/* TypeAlias.name = 1, expr */ +/* TypeAlias.type_parameters = 2, type_parameter_list */ +/* TypeAlias.value = 3, expr */ + +/* TypeVar.location = 0, location */ +/* TypeVar.name = 1, expr */ +/* TypeVar.bound = 2, expr */ +/* TypeVar.default = 3, expr */ + +/* TypeVarTuple.location = 0, location */ +/* TypeVarTuple.name = 1, expr */ +/* TypeVarTuple.default = 2, expr */ + +/* UnaryExpr.location = 0, location */ +/* UnaryExpr.parenthesised = 1, bool */ +/* UnaryExpr.op = 2, unaryop */ +/* UnaryExpr.operand = 3, expr */ + +/* While.location = 0, location */ +/* While.test = 1, expr */ +/* While.body = 2, stmt_list */ +/* While.orelse = 3, stmt_list */ + +/* With.location = 0, location */ +/* With.context_expr = 1, expr */ +/* With.optional_vars = 2, expr */ +/* With.body = 3, stmt_list */ +/* With.is_async = 4, bool */ + +/* Yield.location = 0, location */ +/* Yield.parenthesised = 1, bool */ +/* Yield.value = 2, expr */ + +/* YieldFrom.location = 0, location */ +/* YieldFrom.parenthesised = 1, bool */ +/* YieldFrom.value = 2, expr */ + +/* Alias.value = 0, expr */ +/* Alias.asname = 1, expr */ +/* Alias = AliasList */ +/* AliasList = Import */ + +/* Arguments.kw_defaults = 0, expr_list */ +/* Arguments.defaults = 1, expr_list */ +/* Arguments.annotations = 2, expr_list */ +/* Arguments.varargannotation = 3, expr */ +/* Arguments.kwargannotation = 4, expr */ +/* Arguments.kw_annotations = 5, expr_list */ +/* Arguments = ArgumentsParent */ +/* boolean = BoolParent */ +/* Boolop = BoolExpr */ +/* string = Bytes */ +/* Cmpop = CmpopList */ +/* CmpopList = Compare */ + +/* Comprehension.location = 0, location */ +/* Comprehension.iter = 1, expr */ +/* Comprehension.target = 2, expr */ +/* Comprehension.ifs = 3, expr_list */ +/* Comprehension = ComprehensionList */ +/* ComprehensionList = ListComp */ +/* DictItem = DictItemList */ +/* DictItemList = DictItemListParent */ + +/* Expr.location = 0, location */ +/* Expr.parenthesised = 1, bool */ +/* Expr = ExprParent */ +/* ExprContext = ExprContextParent */ +/* ExprList = ExprListParent */ +/* int = ImportExpr */ + +/* Keyword.location = 0, location */ +/* Keyword.value = 1, expr */ +/* Keyword.arg = 2, str */ +/* Location = LocationParent */ +/* string = Num */ +/* Operator = BinaryExpr */ +/* ParameterList = Function */ + +/* Pattern.location = 0, location */ +/* Pattern.parenthesised = 1, bool */ +/* Pattern = PatternParent */ +/* PatternList = PatternListParent */ + +/* Stmt.location = 0, location */ +/* Stmt = StmtList */ +/* StmtList = StmtListParent */ +/* string = StrParent */ +/* StringList = StrListParent */ + +/* TypeParameter.location = 0, location */ +/* TypeParameter = TypeParameterList */ +/* TypeParameterList = TypeParameterListParent */ +/* Unaryop = UnaryExpr */ +/* Variable = VariableParent */ +py_Classes(unique int id : @py_Class, + unique int parent : @py_ClassExpr ref); + +py_Functions(unique int id : @py_Function, + unique int parent : @py_Function_parent ref); + +py_Modules(unique int id : @py_Module); + +py_StringParts(unique int id : @py_StringPart, + int parent : @py_StringPart_list ref, + int idx : int ref); + +py_StringPart_lists(unique int id : @py_StringPart_list, + unique int parent : @py_Bytes_or_Str ref); + +py_aliases(unique int id : @py_alias, + int parent : @py_alias_list ref, + int idx : int ref); + +py_alias_lists(unique int id : @py_alias_list, + unique int parent : @py_Import ref); + +py_arguments(unique int id : @py_arguments, + unique int parent : @py_arguments_parent ref); + +py_bools(int parent : @py_bool_parent ref, + int idx : int ref); + +py_boolops(unique int id : @py_boolop, + int kind: int ref, + unique int parent : @py_BoolExpr ref); + +py_bytes(varchar(1) id : string ref, + int parent : @py_Bytes ref, + int idx : int ref); + +py_cmpops(unique int id : @py_cmpop, + int kind: int ref, + int parent : @py_cmpop_list ref, + int idx : int ref); + +py_cmpop_lists(unique int id : @py_cmpop_list, + unique int parent : @py_Compare ref); + +py_comprehensions(unique int id : @py_comprehension, + int parent : @py_comprehension_list ref, + int idx : int ref); + +py_comprehension_lists(unique int id : @py_comprehension_list, + unique int parent : @py_ListComp ref); + +py_dict_items(unique int id : @py_dict_item, + int kind: int ref, + int parent : @py_dict_item_list ref, + int idx : int ref); + +py_dict_item_lists(unique int id : @py_dict_item_list, + unique int parent : @py_dict_item_list_parent ref); + +py_exprs(unique int id : @py_expr, + int kind: int ref, + int parent : @py_expr_parent ref, + int idx : int ref); + +py_expr_contexts(unique int id : @py_expr_context, + int kind: int ref, + unique int parent : @py_expr_context_parent ref); + +py_expr_lists(unique int id : @py_expr_list, + int parent : @py_expr_list_parent ref, + int idx : int ref); + +py_ints(int id : int ref, + unique int parent : @py_ImportExpr ref); + +py_locations(unique int id : @location ref, + unique int parent : @py_location_parent ref); + +py_numbers(varchar(1) id : string ref, + int parent : @py_Num ref, + int idx : int ref); + +py_operators(unique int id : @py_operator, + int kind: int ref, + unique int parent : @py_BinaryExpr ref); + +py_parameter_lists(unique int id : @py_parameter_list, + unique int parent : @py_Function ref); + +py_patterns(unique int id : @py_pattern, + int kind: int ref, + int parent : @py_pattern_parent ref, + int idx : int ref); + +py_pattern_lists(unique int id : @py_pattern_list, + int parent : @py_pattern_list_parent ref, + int idx : int ref); + +py_stmts(unique int id : @py_stmt, + int kind: int ref, + int parent : @py_stmt_list ref, + int idx : int ref); + +py_stmt_lists(unique int id : @py_stmt_list, + int parent : @py_stmt_list_parent ref, + int idx : int ref); + +py_strs(varchar(1) id : string ref, + int parent : @py_str_parent ref, + int idx : int ref); + +py_str_lists(unique int id : @py_str_list, + unique int parent : @py_str_list_parent ref); + +py_type_parameters(unique int id : @py_type_parameter, + int kind: int ref, + int parent : @py_type_parameter_list ref, + int idx : int ref); + +py_type_parameter_lists(unique int id : @py_type_parameter_list, + unique int parent : @py_type_parameter_list_parent ref); + +py_unaryops(unique int id : @py_unaryop, + int kind: int ref, + unique int parent : @py_UnaryExpr ref); + +py_variables(int id : @py_variable ref, + unique int parent : @py_variable_parent ref); + +case @py_boolop.kind of + 0 = @py_And +| 1 = @py_Or; + +case @py_cmpop.kind of + 0 = @py_Eq +| 1 = @py_Gt +| 2 = @py_GtE +| 3 = @py_In +| 4 = @py_Is +| 5 = @py_IsNot +| 6 = @py_Lt +| 7 = @py_LtE +| 8 = @py_NotEq +| 9 = @py_NotIn; + +case @py_dict_item.kind of + 0 = @py_DictUnpacking +| 1 = @py_KeyValuePair +| 2 = @py_keyword; + +case @py_expr.kind of + 0 = @py_Attribute +| 1 = @py_BinaryExpr +| 2 = @py_BoolExpr +| 3 = @py_Bytes +| 4 = @py_Call +| 5 = @py_ClassExpr +| 6 = @py_Compare +| 7 = @py_Dict +| 8 = @py_DictComp +| 9 = @py_Ellipsis +| 10 = @py_FunctionExpr +| 11 = @py_GeneratorExp +| 12 = @py_IfExp +| 13 = @py_ImportExpr +| 14 = @py_ImportMember +| 15 = @py_Lambda +| 16 = @py_List +| 17 = @py_ListComp +| 18 = @py_Guard +| 19 = @py_Name +| 20 = @py_Num +| 21 = @py_Repr +| 22 = @py_Set +| 23 = @py_SetComp +| 24 = @py_Slice +| 25 = @py_Starred +| 26 = @py_Str +| 27 = @py_Subscript +| 28 = @py_Tuple +| 29 = @py_UnaryExpr +| 30 = @py_Yield +| 31 = @py_YieldFrom +| 32 = @py_TemplateDottedNotation +| 33 = @py_Filter +| 34 = @py_PlaceHolder +| 35 = @py_Await +| 36 = @py_Fstring +| 37 = @py_FormattedValue +| 38 = @py_AssignExpr +| 39 = @py_SpecialOperation; + +case @py_expr_context.kind of + 0 = @py_AugLoad +| 1 = @py_AugStore +| 2 = @py_Del +| 3 = @py_Load +| 4 = @py_Param +| 5 = @py_Store; + +case @py_operator.kind of + 0 = @py_Add +| 1 = @py_BitAnd +| 2 = @py_BitOr +| 3 = @py_BitXor +| 4 = @py_Div +| 5 = @py_FloorDiv +| 6 = @py_LShift +| 7 = @py_Mod +| 8 = @py_Mult +| 9 = @py_Pow +| 10 = @py_RShift +| 11 = @py_Sub +| 12 = @py_MatMult; + +case @py_pattern.kind of + 0 = @py_MatchAsPattern +| 1 = @py_MatchOrPattern +| 2 = @py_MatchLiteralPattern +| 3 = @py_MatchCapturePattern +| 4 = @py_MatchWildcardPattern +| 5 = @py_MatchValuePattern +| 6 = @py_MatchSequencePattern +| 7 = @py_MatchStarPattern +| 8 = @py_MatchMappingPattern +| 9 = @py_MatchDoubleStarPattern +| 10 = @py_MatchKeyValuePattern +| 11 = @py_MatchClassPattern +| 12 = @py_MatchKeywordPattern; + +case @py_stmt.kind of + 0 = @py_Assert +| 1 = @py_Assign +| 2 = @py_AugAssign +| 3 = @py_Break +| 4 = @py_Continue +| 5 = @py_Delete +| 6 = @py_ExceptStmt +| 7 = @py_ExceptGroupStmt +| 8 = @py_Exec +| 9 = @py_Expr_stmt +| 10 = @py_For +| 11 = @py_Global +| 12 = @py_If +| 13 = @py_Import +| 14 = @py_ImportStar +| 15 = @py_MatchStmt +| 16 = @py_Case +| 17 = @py_Nonlocal +| 18 = @py_Pass +| 19 = @py_Print +| 20 = @py_Raise +| 21 = @py_Return +| 22 = @py_Try +| 23 = @py_While +| 24 = @py_With +| 25 = @py_TemplateWrite +| 26 = @py_AnnAssign +| 27 = @py_TypeAlias; + +case @py_type_parameter.kind of + 0 = @py_ParamSpec +| 1 = @py_TypeVar +| 2 = @py_TypeVarTuple; + +case @py_unaryop.kind of + 0 = @py_Invert +| 1 = @py_Not +| 2 = @py_UAdd +| 3 = @py_USub; + +@py_Bytes_or_Str = @py_Bytes | @py_Str; + +@py_Function_parent = @py_DictComp | @py_FunctionExpr | @py_GeneratorExp | @py_Lambda | @py_ListComp | @py_SetComp; + +@py_arguments_parent = @py_FunctionExpr | @py_Lambda; + +@py_ast_node = @py_Class | @py_Function | @py_Module | @py_StringPart | @py_comprehension | @py_dict_item | @py_expr | @py_pattern | @py_stmt | @py_type_parameter; + +@py_bool_parent = @py_For | @py_Function | @py_Print | @py_With | @py_expr | @py_pattern; + +@py_dict_item_list_parent = @py_Call | @py_ClassExpr | @py_Dict; + +@py_expr_context_parent = @py_Attribute | @py_List | @py_Name | @py_PlaceHolder | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_Tuple; + +@py_expr_list_parent = @py_Assign | @py_BoolExpr | @py_Call | @py_ClassExpr | @py_Compare | @py_Delete | @py_Fstring | @py_Function | @py_List | @py_Print | @py_Set | @py_SpecialOperation | @py_Tuple | @py_arguments | @py_comprehension; + +@py_expr_or_stmt = @py_expr | @py_stmt; + +@py_expr_parent = @py_AnnAssign | @py_Assert | @py_Assign | @py_AssignExpr | @py_Attribute | @py_AugAssign | @py_Await | @py_BinaryExpr | @py_Call | @py_Case | @py_Compare | @py_DictComp | @py_DictUnpacking | @py_ExceptGroupStmt | @py_ExceptStmt | @py_Exec | @py_Expr_stmt | @py_Filter | @py_For | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_GeneratorExp | @py_Guard | @py_If | @py_IfExp | @py_ImportMember | @py_ImportStar | @py_KeyValuePair | @py_ListComp | @py_MatchAsPattern | @py_MatchCapturePattern | @py_MatchClassPattern | @py_MatchKeywordPattern | @py_MatchLiteralPattern | @py_MatchStmt | @py_MatchValuePattern | @py_ParamSpec | @py_Print | @py_Raise | @py_Repr | @py_Return | @py_SetComp | @py_Slice | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_TemplateWrite | @py_TypeAlias | @py_TypeVar | @py_TypeVarTuple | @py_UnaryExpr | @py_While | @py_With | @py_Yield | @py_YieldFrom | @py_alias | @py_arguments | @py_comprehension | @py_expr_list | @py_keyword | @py_parameter_list; + +@py_location_parent = @py_DictUnpacking | @py_KeyValuePair | @py_StringPart | @py_comprehension | @py_expr | @py_keyword | @py_pattern | @py_stmt | @py_type_parameter; + +@py_parameter = @py_Name | @py_Tuple; + +@py_pattern_list_parent = @py_MatchClassPattern | @py_MatchMappingPattern | @py_MatchOrPattern | @py_MatchSequencePattern; + +@py_pattern_parent = @py_Case | @py_MatchAsPattern | @py_MatchDoubleStarPattern | @py_MatchKeyValuePattern | @py_MatchKeywordPattern | @py_MatchStarPattern | @py_pattern_list; + +@py_scope = @py_Class | @py_Function | @py_Module; + +@py_stmt_list_parent = @py_Case | @py_Class | @py_ExceptGroupStmt | @py_ExceptStmt | @py_For | @py_Function | @py_If | @py_MatchStmt | @py_Module | @py_Try | @py_While | @py_With; + +@py_str_list_parent = @py_Global | @py_Nonlocal; + +@py_str_parent = @py_Attribute | @py_Class | @py_ClassExpr | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_ImportExpr | @py_ImportMember | @py_Module | @py_SpecialOperation | @py_Str | @py_StringPart | @py_TemplateDottedNotation | @py_keyword | @py_str_list; + +@py_type_parameter_list_parent = @py_ClassExpr | @py_Function | @py_TypeAlias; + +@py_variable_parent = @py_Name | @py_PlaceHolder; + + +/* + * End of auto-generated part + */ + + + +/* Map relative names to absolute names for imports */ +py_absolute_names(int module : @py_Module ref, + varchar(1) relname : string ref, + varchar(1) absname : string ref); + +py_exports(int id : @py_Module ref, + varchar(1) name : string ref); + +/* Successor information */ +py_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_true_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_exception_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_false_successors(int predecessor : @py_flow_node ref, + int successor : @py_flow_node ref); + +py_flow_bb_node(unique int flownode : @py_flow_node, + int realnode : @py_ast_node ref, + int basicblock : @py_flow_node ref, + int index : int ref); + +py_scope_flow(int flow : @py_flow_node ref, + int scope : @py_scope ref, + int kind : int ref); + +py_idoms(unique int node : @py_flow_node ref, + int immediate_dominator : @py_flow_node ref); + +py_ssa_phi(int phi : @py_ssa_var ref, + int arg: @py_ssa_var ref); + +py_ssa_var(unique int id : @py_ssa_var, + int var : @py_variable ref); + +py_ssa_use(int node: @py_flow_node ref, + int var : @py_ssa_var ref); + +py_ssa_defn(unique int id : @py_ssa_var ref, + int node: @py_flow_node ref); + +@py_base_var = @py_variable | @py_ssa_var; + +py_scopes(unique int node : @py_expr_or_stmt ref, + int scope : @py_scope ref); + +py_scope_location(unique int id : @location ref, + unique int scope : @py_scope ref); + +py_flags_versioned(varchar(1) name : string ref, + varchar(1) value : string ref, + varchar(1) version : string ref); + +py_syntax_error_versioned(unique int id : @location ref, + varchar(1) message : string ref, + varchar(1) version : string ref); + +py_comments(unique int id : @py_comment, + varchar(1) text : string ref, + unique int location : @location ref); + +/* Type information support */ + +py_cobjects(unique int obj : @py_cobject); + +py_cobjecttypes(unique int obj : @py_cobject ref, + int typeof : @py_cobject ref); + +py_cobjectnames(unique int obj : @py_cobject ref, + varchar(1) name : string ref); + +/* Kind should be 0 for introspection, > 0 from source, as follows: + 1 from C extension source + */ +py_cobject_sources(int obj : @py_cobject ref, + int kind : int ref); + +py_cmembers_versioned(int object : @py_cobject ref, + varchar(1) name : string ref, + int member : @py_cobject ref, + varchar(1) version : string ref); + +py_citems(int object : @py_cobject ref, + int index : int ref, + int member : @py_cobject ref); + +ext_argtype(int funcid : @py_object ref, + int arg : int ref, + int typeid : @py_object ref); + +ext_rettype(int funcid : @py_object ref, + int typeid : @py_object ref); + +ext_proptype(int propid : @py_object ref, + int typeid : @py_object ref); + +ext_argreturn(int funcid : @py_object ref, + int arg : int ref); + +py_special_objects(unique int obj : @py_cobject ref, + unique varchar(1) name : string ref); + +py_decorated_object(int object : @py_object ref, + int level: int ref); + +@py_object = @py_cobject | @py_flow_node; + +@py_source_element = @py_ast_node | @container; diff --git a/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/upgrade.properties b/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/upgrade.properties new file mode 100644 index 000000000000..7c5cd59e1c43 --- /dev/null +++ b/python/ql/lib/upgrades/728c6d65e61d808ae276013ebc15abc3a97aaef1/upgrade.properties @@ -0,0 +1,2 @@ +description: Add support for type parameter defaults. +compatibility: backwards